/* @import "./globals.css"; */

.main .container {
    display: flex;
    gap: 40px;
    flex-direction: column;
}

@media screen and (min-width: 1250px) {
    .main .container {
        flex-direction: row;
        gap: 40px;
        max-width: min(1400px, calc(100vw - 60px));
        margin-left: auto;
        margin-right: auto;
        box-sizing: border-box;
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: visible;
        overflow: visible;
    }
}

.header {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.header .header-top {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
}

.header .header-top .header-logo {
    height: 40px;
}

.header .container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}


.main {
    margin-top: 20px;
}

.main .main-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
    overflow-x: visible;
    overflow: visible;
}

@media screen and (min-width: 1250px) {
    .main .main-content {
        width: 73%;
        flex-shrink: 0;
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: visible;
        overflow: visible;
        box-sizing: border-box;
    }
}

.main .main-content .text-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.main .main-content .text-content h1,
.main .main-content .text-content h2,
.main .main-content .text-content h3,
.main .main-content .text-content h4,
.main .main-content .text-content h5,
.main .main-content .text-content h6 {
    color: #111;
    font-style: normal;
}

.main .main-content .text-content .group-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.main .main-content .text-content .group-list .text-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.main .main-content .text-content p {
    color: #111;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.main .main-content .text-content.advertiser {
    padding: 0;
    background: transparent;
    max-width: 100%;
}

.main .main-content .text-content.advertiser p {
    color: #6b7280;
    font-size: 0.85rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
}

.main .main-content .text-content.advertiser p span {
    text-decoration: underline;
}

.main .main-content .site-list {}

.main .main-content .site-list .highlight-separator {
    width: 100%;
    padding: 2rem;
    background: #1c4842;
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.main .main-content .site-list .highlight-separator .highlight-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.main .main-content .site-list .highlight-separator .highlight-logo-img { 
    max-height: 100px; 
    max-width: 220px; 
    height: auto; 
    width: auto; 
    display: block;
}

.main .main-content .site-list .highlight-separator .highlight-text {
    display: flex;
    flex-direction: column;
    gap: 2rem; /* Match the gap between logo and text (2rem) when content is centered */
    max-width: 520px;
}

.main .main-content .site-list .highlight-separator .highlight-text h2 {
    color: #FFF;
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px; /* Increased from 26px for better spacing on mobile */
    text-align: center;
    margin: 0;
}

.main .main-content .site-list .highlight-separator .highlight-text p {
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 17px;
    text-align: center;
    margin: 0;
}

@media screen and (min-width: 768px) {
    .main .main-content .site-list .highlight-separator {
        flex-direction: row;
        justify-content: flex-start;
        align-items: center; /* Center items vertically */
        padding: 2rem 3rem;
        gap: 3rem;
    }

    .main .main-content .site-list .highlight-separator .highlight-logo {
        align-items: center; /* Center logo vertically */
        padding-top: 0; /* Remove top padding to allow centering */
    }

    .main .main-content .site-list .highlight-separator .highlight-logo-img { 
        max-height: 140px; 
        max-width: 220px; 
    }

    .main .main-content .site-list .highlight-separator .highlight-text {
        align-items: flex-start;
        flex: 1;
        max-width: none;
    }

    .main .main-content .site-list .highlight-separator .highlight-text h2 {
        text-align: left;
    }

    .main .main-content .site-list .highlight-separator .highlight-text p {
        text-align: left;
    }
}

@media screen and (min-width: 1024px) {
    .main .main-content .site-list .highlight-separator {
        gap: 4rem;
        padding: 2.5rem 4rem;
        align-items: center; /* Center items vertically on desktop */
    }

    .main .main-content .site-list .highlight-separator .highlight-logo {
        align-items: center; /* Center logo vertically on desktop */
    }
}

.main .main-content .site-list .site-item {
    border-radius: 7px;
    border: 1px solid #000;
    padding: 1rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.main .main-content .site-list .site-item .item-title {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media screen and (min-width: 768px) {
    .main .main-content .site-list .site-item {flex-wrap: nowrap;}
    .main .main-content .site-list .site-item .item-title {width: 155px; flex-shrink: 0;}
}

@media screen and (min-width: 992px) {
    .main .main-content .site-list .site-item .item-title {width: 200px; flex-shrink: 0;}
}

.main .main-content .site-list .site-item .item-title .item-badge {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.main .main-content .site-list .site-item .item-title .item-badge .badge-icon {}

.main .main-content .site-list .site-item .item-title .item-badge .badge-icon img {}

.main .main-content .site-list .site-item .item-title .item-badge .badge-text {
    max-width: max-content;
    background-size: contain;
    background-repeat: no-repeat;
    padding: 0 1rem;
    display: flex;
    color: #FFF;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
    background-position: center;
    position: relative;
}

.main .main-content .site-list .site-item .item-title .item-badge .badge-text .badge-title {
    z-index: 2;
}

.main .main-content .site-list .site-item .item-title .item-badge .badge-text .badge-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.main .main-content .site-list .site-item .item-title .title-text {
    display: flex;
    flex-direction: column;
    align-items: start;
    text-decoration: none;
}

.main .main-content .site-list .site-item .item-title .title-text .item-rank {
    color: #000;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
}

.main .main-content .site-list .site-item .item-title .title-text .item-logo {
    max-width: 150px;
    width: 100%;
    object-fit: contain; object-position: left;
    height: auto;
    max-height: 50px;
}

@media screen and (min-width: 768px) {
    .main .main-content .site-list .site-item .item-title .title-text .item-logo {max-height: 70px; max-width: 180px;}
}

.main .main-content .site-list .site-item .item-characteristics {
    width: 135px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-left: auto;
}

@media screen and (min-width: 768px) {
    .main .main-content .site-list .site-item .item-characteristics {flex-shrink: 0;}
}

@media screen and (min-width: 992px) {
    .main .main-content .site-list .site-item .item-characteristics {width: 20%;}
}

.main .main-content .site-list .site-item .item-characteristics .item-rating {
    display: flex;
    border-radius: 4px;
    border: 1px solid rgba(118, 129, 173, 0.20);
    overflow: hidden;

}

.main .main-content .site-list .site-item .item-characteristics .item-rating .rating-number {
    width: 100%;
    display: flex;
    align-items: center;
    background-color: #34997D;
    padding: 0 10px;
    justify-content: center;
    color: #FFF;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
}

.main .main-content .site-list .site-item .item-characteristics .item-rating .rating-level {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5px 10px;
    color: #657E79;
    text-align: center;
    font-size: 8px;
    font-weight: 800;
    line-height: 16.5px;
    text-transform: uppercase;
    width: max-content;
    white-space: nowrap;
}

.main .main-content .site-list .site-item .item-characteristics .item-rating .rating-level .rating-stars {
    display: flex;
}

.item-read-button {
    border-radius: 5px;
    border: 1px solid #0569FF;
    color: #0569FF;
    font-size: 11px;
    font-style: normal;
    font-weight: 500;
    text-decoration: none;
    padding: 7px 14px;
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.item-highlight {
    color: #4FAE55;
    text-align: center;
    font-size: 10px;
    font-style: normal;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 6px;
    border: 2px dashed #4FAE55;
    padding: 10px 5px;
    text-decoration: none;
}

.main .main-content .site-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.main .main-content .site-list .site-item .item-description {
    max-width: 430px;
    flex-grow: 1; min-width: 100%;
}

@media screen and (min-width: 768px) {
    .main .main-content .site-list .site-item .item-description { min-width: 1px;}
}

@media screen and (min-width: 950px) {
    .main .main-content .site-list .site-item .item-description {
        max-width: 600px;
    }
}

.main .main-content .site-list .site-item .item-description ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.main .main-content .site-list .site-item .item-description ul .description-title {
    color: #333;
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}


.main .main-content .site-list .site-item .item-description ul li {
    color: #333;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    display: flex;
    align-items: start;
    gap: 0.5rem;
}

.main .main-content .site-list .site-item .item-description ul li img {
    margin-top: 2px;
}

.item-visit-button {
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
    color: #FFF;
    padding: 0 15px;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    border-radius: 6px;
    background: #34997D;
    text-decoration: none;
}

.item-visit-button:hover { color: #fff;}

.item-visit-button.visit-button-bottom {
    margin-top: 20px;
}

.item-visit-button.visit-button-top {
    display: none;
}

@media screen and (min-width: 768px) {
    .main .main-content .site-list .site-item {
        gap: 1rem;
    }

    .item-visit-button.visit-button-bottom {
        display: none;
    }

    .item-visit-button.visit-button-top {
        display: flex;
    }

    .main .main-content .site-list .site-item .item-title .title-text {
        flex-direction: column;
        align-items: start;
    }

    .main .main-content .site-list .site-item .item-characteristics {
        order: 1;
    }
}

.main-guide .guide-box {
    border: 2px solid #D1E5E1;
}

.main-guide .guide-box .guide-title {
    width: 100%;
    padding: 10px 20px;
    background: #F6F5F3;
    border-bottom: 1px solid #D1E5E1;
}

.main-guide .guide-box .guide-title h2 {
    color: #333;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 21px;
    text-transform: capitalize;
}

.main-guide .guide-box .guide-list {
    padding: 0 25px;
}

.main-guide .guide-box .guide-list .divisor {
    width: 100%;
    height: 1px;
    background: #F3F3F3;

}


.main-guide .guide-box .guide-list .guide-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px 0;
}

.main-guide .guide-box .guide-list .guide-item h3 {
    max-width: 220px;
    color: #333;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
}

.main-guide .guide-box .guide-list .guide-item a {
    color: #657E79;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    text-transform: capitalize;
    text-decoration: none;
}

/* What You Will Learn Component Styles */
.what-you-will-learn {
    width: 100%;
    position: relative;
}

@media screen and (min-width: 1250px) {
    .what-you-will-learn {
        width: 27%;
        max-width: 320px;
        flex-shrink: 1;
        margin-top: 380px;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    
    .what-you-will-learn .learn-box {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
        word-wrap: break-word;
    }
}

@media screen and (max-width: 1249px) {
    .what-you-will-learn {
        display: none;
    }
}

.what-you-will-learn .learn-box {
    border: 2px solid #D1E5E1;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.what-you-will-learn .learn-box .learn-title {
    width: 100%;
    padding: 15px 20px;
    background: #F6F5F3;
    border-bottom: 1px solid #D1E5E1;
    border-radius: 8px 8px 0 0;
}

.what-you-will-learn .learn-box .learn-title h2 {
    color: #333;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    margin: 0;
    text-transform: capitalize;
    font-family: "Montserrat", sans-serif;
}

.what-you-will-learn .learn-box .learn-list {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.what-you-will-learn .learn-box .learn-list .learn-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 0;
}

.what-you-will-learn .learn-box .learn-list .learn-item .learn-checkmark {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #34997D;
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    margin-top: 2px;
}

.what-you-will-learn .learn-box .learn-list .learn-item .learn-text {
    color: #333;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    flex: 1;
    font-family: "Inter", sans-serif;
}

.main-content .article {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.main-content .article .site-list .site-item {
    background: #DCFBF3;
}

.main-content .article .divisor {
    width: 100%;
    height: 2px;
    background-color: #000;
}

.main-content .article h2 {
    color: #1E2125;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
}

.main-content .article h3 {
    color: #1E2125;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
}

.ad-box {
    width: 100%;
    padding: 35px;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 40px;
    border-radius: 8px;
    border: none;
    background: #F5F3F8;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: relative;
}

.ad-box .ad-badge {
    position: absolute;
    right: 1rem;
    top: calc(1rem - 7px);
    display: flex;
    align-items: center;
    gap: 0.25rem;
    text-transform: uppercase;
    color: #333;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
}

.ad-box .ad-image {
    width: 154px;
    height: 154px;
}

.ad-box .ad-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.ad-box .ad-content h6 {
    /* max-width: 240px; */
    color: #4A3C66;
    font-size: 15.75px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    text-align: center;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.ad-box .ad-content h3 {
    max-width: 300px;
    color: #333;
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    text-align: center;
}

.ad-box .ad-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.ad-box .ad-actions .ad-button {
    color: #4A3C66;
    font-size: 15.875px;
    font-weight: 600;
    line-height: 24px;
    width: 200px;
    height: 50px;
    border-radius: 25px;
    background: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: none;
}

.ad-box .ad-actions .ad-button:hover {
    background: #F8F8F8;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.ad-box .ad-actions span {
    color: #333;
    text-align: center;
    font-size: 11.625px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
}

/* Info Icon Popup Widget */
.info-icon-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    margin-left: 4px;
    align-self: center;
}

.info-checkbox {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
}

.info-icon {
    width: 14px;
    height: 14px;
    display: block;
    transition: opacity 0.2s ease;
    position: relative;
    top: 3px;
}

.info-icon-wrapper:hover .info-icon {
    opacity: 0.7;
}

.info-popup {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 6px;
    width: 200px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    z-index: 1000;
    pointer-events: none;
}

.info-popup::after {
    content: '';
    position: absolute;
    bottom: 100%;
    right: 12px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #fff;
    filter: drop-shadow(0 -2px 2px rgba(0, 0, 0, 0.1));
}

.info-checkbox:checked ~ .info-popup {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.info-checkbox:checked ~ .info-popup::after {
    filter: drop-shadow(0 -2px 2px rgba(0, 0, 0, 0.1));
}

.info-popup-close {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 20px;
    height: 20px;
    border: none;
    background: transparent;
    color: #999;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    transition: color 0.2s ease;
}

.info-popup-close:hover {
    color: #333;
}

.info-popup-content {
    padding: 8px 10px;
    font-size: 11px;
    line-height: 1.4;
    color: #333;
    padding-right: 24px; /* Make room for close button */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    text-transform: none;
    font-weight: 400;
}

.info-popup-content p {
    margin: 0;
    padding: 0;
    text-transform: none;
    font-weight: 400;
}

/* Mobile responsive styles for info popup */
@media (max-width: 600px) {
    .info-popup {
        width: 180px;
        right: 0;
    }
    
    .info-popup::after {
        right: 10px;
    }
    
    .info-popup-content {
        padding: 8px 10px;
        padding-right: 24px;
        font-size: 10px;
    }
}

@media (max-width: 400px) {
    .info-popup {
        width: 160px;
        right: 0;
    }
    
    .info-popup-content {
        padding: 6px 8px;
        padding-right: 24px;
        font-size: 10px;
    }
}

@media screen and (min-width: 850px) {
    .ad-box {
        flex-direction: row;
        padding-left: 30px;
        padding-right: 30px;
        gap: 35px;
        align-items: center;
    }

    .ad-box .ad-content {
        align-items: start;
        flex: 1;
        min-width: 0;
        align-self: center;
    }

    .ad-box .ad-content h6 {
        text-align: left;
    }

    .ad-box .ad-content h3 {
        text-align: left;
        max-width: none;
    }

    .ad-box .ad-actions {
        margin-left: auto;
        flex-shrink: 0;
    }
}

/* Header Title with Background Image - Updated Design */
.header .header-title {
    position: relative !important;
    padding: 40px 20px !important;
    background: #fff !important;
    min-height: 200px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    overflow: hidden !important;
}

.header .header-title::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, rgba(240, 248, 255, 0.4) 0%, rgba(230, 240, 250, 0.6) 100%);
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: 0;
}

.header .header-title h1,
.header .header-title h2,
.header .header-title p {
    position: relative !important;
    z-index: 1 !important;
    max-width: 60% !important;
    text-align: left !important;
}

.header .header-title h1 {
    margin-bottom: 12px !important;
}

.header .header-title h2 {
    margin-bottom: 16px !important;
}

@media screen and (min-width: 768px) {
    .header .header-title {
        padding: 50px 40px !important;
        min-height: 250px !important;
    }
    
    .header .header-title::before {
        width: 45%;
        opacity: 0.4;
    }
    
    .header .header-title h1,
    .header .header-title h2 {
        max-width: 60% !important;
    }

    .header .header-title p {
        max-width: 55% !important;
    }
}

@media screen and (max-width: 767px) {
    .header .header-title::before {
        display: none !important;
    }
    
    .header .header-title {
        background: #fff !important;
        padding: 30px 20px !important;
        min-height: auto !important;
    }
    
    .header .header-title h1,
    .header .header-title h2,
    .header .header-title p {
        max-width: 100% !important;
    }
}

/* FAQ Accordion Styles */
.faq-accordion {
    margin-top: 20px;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    padding: 6px 14px;
    text-align: left;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    transition: background-color 0.2s ease, color 0.2s ease;
    position: relative;
}

.faq-question:hover {
    background-color: #f5f5f5;
    color: #000;
}

.faq-question:focus {
    outline: 2px solid #0C413A;
    outline-offset: -2px;
}

.faq-question span:first-child {
    flex: 1;
    padding-right: 15px;
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: #0C413A;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 14px;
}

.faq-question[aria-expanded="true"] + .faq-answer {
    max-height: 2000px;
    padding: 0 14px 10px 14px;
}

.faq-answer p {
    margin: 6px 0;
    line-height: 1.6;
    color: #555;
}

.faq-answer p:first-child {
    margin-top: 0;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    margin: 6px 0;
    padding-left: 16px;
}

.faq-answer ul li {
    margin: 4px 0;
    line-height: 1.6;
    color: #555;
}

@media (max-width: 768px) {
    .faq-question {
        padding: 6px 12px;
        font-size: 15px;
    }
    
    .faq-answer {
        padding: 0 12px;
    }
    
    .faq-question[aria-expanded="true"] + .faq-answer {
        padding: 0 12px 10px 12px;
    }
    
    .faq-icon {
        font-size: 22px;
        width: 22px;
    }
}

/* Logo Text Alignment */
.logo-main {
    text-align: left;
    display: block;
}
