@import url('https://fonts.googleapis.com/css2?family=Audiowide&display=swap');

body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
}

.section-title {
    font-family: "Audiowide", system-ui;
    font-size: 3rem;
    font-weight: bold;
    color: #003366;
    margin-bottom: 1rem;
}

.treatment-pointers {
    font-family: "Audiowide", system-ui;
    list-style: none;
    padding: 0;
    font-size: 1.5rem;
    color: #333;
}

.treatment-pointers li {
    margin-bottom: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease-in-out;
    position: relative;
}

.treatment-pointers li:hover,
.treatment-pointers li.active {
    color: #005bb5;
    text-decoration: underline;
}

.treatment-pointers li.active::after {
    content: '';
    display: block;
    width: 50px;
    margin-top: 5px;
    border-bottom: 3px solid #005bb5;
    position: absolute;
    left: 0;
}

.subsection-title {
    font-family: "Audiowide", system-ui;
    font-size: 2.5rem;
    font-weight: bold;
    color: #003366;
    margin-top: 2rem;
}

.section-description {
    font-size: 1.25rem;
    color: #333;
    margin-top: 1rem;
    line-height: 1.8;
    text-align: justify;
}

.img-fluid {
    max-width: 80%;
    height: auto;
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: block;
    margin: 0 auto;
}

.img-fluid.visible {
    opacity: 1;
}

/* Professional FAQ Section Styling */
.faq-section {
    margin-top: 30px;
    border-top: 2px solid #005bb5;
    padding-top: 20px;
}

.faq-section h3 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #003366;
    text-transform: uppercase;
    text-align: center;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
}

.faq-item h4 {
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    color: #005bb5;
    position: relative;
    padding-right: 25px;
    transition: color 0.3s ease-in-out;
}

.faq-item h4::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 24px;
    line-height: 20px;
    color: #005bb5;
    transition: transform 0.3s ease-in-out;
}

.faq-item.active h4::after {
    transform: rotate(45deg);
    content: '-';
}

.faq-item p {
    font-size: 16px;
    color: #333;
    margin-top: 10px;
    display: none;
    line-height: 1.6;
    padding-left: 20px;
    border-left: 2px solid #005bb5;
}

.faq-item.active p {
    display: block;
}
