.related-title-text {
    font-size: 36px;
    font-weight: 700;
    color: #015cb5;
    line-height: 1.2;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.related-title-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #015cb5, #007bff);
    border-radius: 4px;
}

.related-title-text::before {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: #015cb5;
    border-radius: 4px;
    opacity: 0.3;
}

h1 {
    font-size: 42px;
    line-height: 1.2;
}

h2 {
    font-size: 36px;
    line-height: 1.2;
}

h3 {
    font-size: 28px;
    line-height: 1.2;
}

h4 {
    font-size: 20px;
    line-height: 1.4;
}

h5 {
    font-size: 18px;
    line-height: 1.6;
}

h6 {
    font-size: 16px;
    line-height: 1.8;
}

p {
    font-size: 14px;
    line-height: 2;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

ul li {
    font-size: 14px;
    line-height: 2;
}

ol {
    padding-left: 24px;
    margin: 0;
}

ol li {
    font-size: 14px;
    line-height: 2;
}

@media (max-width: 768px) {
    .related-title-text {
        font-size: 28px;
        line-height: 1.2;
        padding-bottom: 16px;
        margin-top: 16px;
        margin-bottom: 16px;
    }
    
    .related-title-text::after {
        width: 60px;
        height: 3px;
    }
    
    .related-title-text::before {
        width: 30px;
        height: 3px;
        bottom: 6px;
    }
    
    h1 {
        font-size: 36px;
        line-height: 1.2;
    }
    
    h2 {
        font-size: 28px;
        line-height: 1.2;
    }
    
    h3 {
        font-size: 24px;
        line-height: 1.2;
    }
    
    h4 {
        font-size: 18px;
        line-height: 1.6;
    }
    
    h5 {
        font-size: 16px;
        line-height: 1.8;
    }
    
    h6 {
        font-size: 14px;
        line-height: 2;
    }
}

@media (max-width: 480px) {
    .related-title-text {
        font-size: 24px;
        line-height: 1.2;
        padding-bottom: 14px;
        margin-top: 14px;
        margin-bottom: 14px;
    }
    
    .related-title-text::after {
        width: 50px;
        height: 3px;
    }
    
    .related-title-text::before {
        width: 25px;
        height: 3px;
        bottom: 5px;
    }
    
    h1 {
        font-size: 32px;
        line-height: 1.2;
    }
    
    h2 {
        font-size: 24px;
        line-height: 1.2;
    }
    
    h3 {
        font-size: 20px;
        line-height: 1.4;
    }
    
    h4 {
        font-size: 16px;
        line-height: 1.8;
    }
}

.more-info {
    padding: 30px 0;
    text-align: left;
}

.more-info a {
    display: inline-block;
    font-size: 14px;
    line-height: 2;
    color: #015cb5;
    padding: 6px 20px;
    margin: 4px 6px 4px 0;
    background: #f0f4f9;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.more-info a:hover {
    background: #015cb5;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(1, 92, 181, 0.25);
}

.more-info a:active {
    transform: translateY(0px);
}

@media (max-width: 768px) {
    .more-info a {
        font-size: 14px;
        line-height: 2;
        padding: 5px 16px;
        margin: 3px 4px 3px 0;
    }
}

@media (max-width: 480px) {
    .more-info a {
        font-size: 14px;
        line-height: 2;
        padding: 4px 14px;
        margin: 3px 3px 3px 0;
    }
}














