    .faq .main-header {
        text-align: center;
        margin-bottom: 0px;
        padding: 20px 0;
        position: relative;
    }

    .faq .main-header::before {
        content: '';
        position: absolute;
        top: 15px;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 1px;
        background: #00bcd4;
    }

    .faq .header-subtitle {
        color: #999;
        font-size: 12px;
        letter-spacing: 3px;
        margin-bottom: 8px;
        text-transform: uppercase;
        margin-top: 15px;
    }

    .faq .header-title {
        color: #333;
        font-size: 28px;
        font-weight: 700;
        margin: 0;
    }

    .faq .header-title .brand {
        color: #00bcd4;
    }

    .faq .content-wrapper {
        display: flex;
        gap: 30px;
        align-items: flex-start;
    }

    .faq .faq-container {
        flex: 1;
        border: 1px solid #00bcd4;
        border-radius: 15px;
        padding: 25px;
        max-height: 650px;
        overflow-y: auto;
    }

    .faq .faq-container::-webkit-scrollbar {
        width: 6px;
    }

    .faq .faq-container::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 3px;
    }

    .faq .faq-container::-webkit-scrollbar-thumb {
        background: #00bcd4;
        border-radius: 3px;
    }

    .faq .faq-container::-webkit-scrollbar-thumb:hover {
        background: #0097a7;
    }

    .faq .image-caption {
        text-align: center;
        margin-top: 10px;
        color: #666;
        font-style: italic;
        font-size: 14px;
    }

    .faq .faq-item {
        margin-bottom: 20px;
        border-bottom: 1px solid #eee;
        padding-bottom: 15px;
        text-align: left;
    }

    .faq .faq-question {
        font-weight: 700;
        color: #333;
        font-size: 16px;
        margin-bottom: 8px;
    }

    .faq .faq-answer {
        color: #666;
        line-height: 1.6;
    }
    
    @media only screen and (max-width: 1140px) {
        .faq .main-header {
            background-color: transparent;
        }
    }

    @media(max-width:768px) {
        .faq .content-wrapper {
            flex-direction: column;
        }
    }