
    /* FAQ Section Styling */
    .faq-section {
        padding: 120px 20px;
        background: linear-gradient(145deg, #f5f7fa 0%, #e8ecf1 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.5s ease;
        position: relative;
        overflow: hidden;
    }
    
    .faq-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 8px;
        background: var(--first-color);
        opacity: 0.8;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        position: relative;
        z-index: 1;
    }
    
    .faq-header {
        text-align: center;
        margin-bottom: 70px;
    }

    .faq-title {
        font-size: 3rem;
        font-weight: 700;
        color: var(--first-color);
        letter-spacing: -0.5px;
        margin-bottom: 20px;
        position: relative;
        display: inline-block;
        transition: all 0.4s ease;
    }
    
    .faq-title::after {
        content: '';
        position: absolute;
        bottom: -12px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: var(--first-color);
        border-radius: 2px;
    }

    .faq-subtitle {
        font-size: 1.25rem;
        color: #555;
        font-weight: 400;
        max-width: 750px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.7;
    }

    .faq-accordion {
        max-width: 900px;
        margin: 0 auto 60px;
    }

    .faq-item {
        margin-bottom: 20px;
        background: #fff;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .faq-item:hover {
        transform: translateY(-4px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }

    .faq-question {
        padding: 25px 30px;
        font-size: 1.2rem;
        font-weight: 600;
        color: #333;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: all 0.3s ease;
    }

    .faq-question:hover {
        color: var(--first-color);
    }

    .faq-answer {
        max-height: 0;
        overflow: hidden;
        background: #fff;
        line-height: 1.8;
        transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
        opacity: 0;
        padding: 0 30px;
    }

    input[type="checkbox"]:checked ~ .faq-answer {
        max-height: 500px;
        opacity: 1;
        padding: 0 30px 25px;
    }
    
    .faq-answer p {
        color: #555;
        font-size: 1.05rem;
        margin: 0;
    }

    .faq-answer a {
        color: var(--first-color);
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        position: relative;
    }

    .faq-answer a:after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--first-color);
        transition: width 0.3s ease;
    }

    .faq-answer a:hover {
        color: var(--first-color-alt);
    }
    
    .faq-answer a:hover:after {
        width: 100%;
    }

    input[type="checkbox"] {
        display: none;
    }

    /* Toggle Animation */
    .faq-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 26px;
        height: 26px;
        position: relative;
        transition: all 0.5s ease;
    }
    
    .toggle-icon {
        position: relative;
        width: 14px;
        height: 14px;
    }
    
    .toggle-icon:before, .toggle-icon:after {
        content: '';
        position: absolute;
        background: var(--first-color);
        transition: all 0.4s ease;
    }
    
    .toggle-icon:before {
        width: 14px;
        height: 2px;
        top: 6px;
        left: 0;
    }
    
    .toggle-icon:after {
        width: 2px;
        height: 14px;
        top: 0;
        left: 6px;
    }

    input[type="checkbox"]:checked ~ .faq-question {
        color: var(--first-color);
    }

    input[type="checkbox"]:checked ~ .faq-question .toggle-icon:after {
        transform: rotate(90deg);
        opacity: 0;
    }
    
    /* Contact Section */
    .faq-contact {
        text-align: center;
        background: #fff;
        padding: 40px;
        border-radius: 12px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
        max-width: 700px;
        margin: 0 auto;
        border: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .faq-contact h3 {
        font-size: 1.6rem;
        color: #333;
        margin-bottom: 15px;
        font-weight: 600;
    }
    
    .faq-contact p {
        color: #555;
        margin-bottom: 25px;
        font-size: 1.05rem;
    }
    
    .contact-btn {
        display: inline-block;
        padding: 14px 32px;
        background: var(--first-color);
        color: white;
        font-weight: 600;
        border-radius: 30px;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(var(--first-color-rgb), 0.25);
    }
    
    .contact-btn:hover {
        background: var(--first-color-alt);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(var(--first-color-rgb), 0.35);
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
        .faq-section {
            padding: 100px 20px;
        }
        
        .faq-title {
            font-size: 2.6rem;
        }

        .faq-subtitle {
            font-size: 1.15rem;
        }
    }

    @media (max-width: 768px) {
        .faq-section {
            padding: 80px 15px;
        }
        
        .faq-header {
            margin-bottom: 50px;
        }

        .faq-title {
            font-size: 2.2rem;
        }
        
        .faq-title::after {
            width: 60px;
            height: 3px;
        }

        .faq-subtitle {
            font-size: 1.05rem;
        }

        .faq-question {
            font-size: 1.1rem;
            padding: 22px 25px;
        }
        
        .faq-answer p {
            font-size: 1rem;
        }

        input[type="checkbox"]:checked ~ .faq-answer {
            padding: 0 25px 22px;
        }
        
        .faq-contact {
            padding: 30px 25px;
        }
        
        .faq-contact h3 {
            font-size: 1.4rem;
        }
    }

    @media (max-width: 480px) {
        .faq-section {
            padding: 60px 15px;
        }
        
        .faq-header {
            margin-bottom: 40px;
        }

        .faq-title {
            font-size: 1.9rem;
        }
        
        .faq-title::after {
            width: 50px;
            bottom: -10px;
        }

        .faq-subtitle {
            font-size: 0.95rem;
        }

        .faq-question {
            font-size: 1rem;
            padding: 18px 20px;
        }
        
        .faq-answer p {
            font-size: 0.95rem;
        }

        input[type="checkbox"]:checked ~ .faq-answer {
            padding: 0 20px 18px;
        }
        
        .toggle-icon {
            width: 12px;
            height: 12px;
        }
        
        .toggle-icon:before {
            width: 12px;
            top: 5px;
        }
        
        .toggle-icon:after {
            height: 12px;
            left: 5px;
        }
        
        .faq-contact {
            padding: 25px 20px;
        }
        
        .faq-contact h3 {
            font-size: 1.3rem;
        }
        
        .faq-contact p {
            font-size: 0.95rem;
            margin-bottom: 20px;
        }
        
        .contact-btn {
            padding: 12px 28px;
            font-size: 0.95rem;
        }
    }
