.elementor-1430 .elementor-element.elementor-element-4656722{--display:flex;}/* Start custom CSS for html, class: .elementor-element-fab2446 *//* =============================================
    GLOBAL VARIABLES & RESETS
    ============================================= */
:root {
    --primary-navy: #1A3C6D;
    --primary-turquoise: #40C4C6;
    --accent-beige: #F4E1C1;
    --text-dark: #2C3E50;
    --text-light: #6C757D;
    --bg-light: #F8F9FA;
    --white: #FFFFFF;
    --border-color: #e0e0e0;
    --shadow: 0 5px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =============================================
    HERO SECTION
    ============================================= */
.faq-hero {
    position: relative;
    height: 350px;
    background: linear-gradient(135deg, var(--primary-navy) 0%, #2a5a8f 100%),
                url('https://images.unsplash.com/photo-1515023115689-589c33a21a35?w=1600') center/cover;
    background-blend-mode: multiply;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero-overlay {
    position: relative;
    z-index: 1;
    padding: 20px;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 200px;
    height: 200px;
    background: rgba(64, 196, 198, 0.1);
    border-radius: 50%;
}

.hero-subtitle {
    font-family: 'Pacifico', cursive;
    color: var(--accent-beige);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    color: var(--white);
}

.hero-description {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
}

/* =============================================
    MAIN FAQ SECTION
    ============================================= */
.faq-page-main {
    padding: 40px 0;
    background-color: var(--bg-light);
}

.faq-category-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary-navy);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-turquoise);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-category-title:not(:first-of-type) {
    margin-top: 50px;
}

/* =============================================
    ACCORDION STYLES
    ============================================= */
.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}
.faq-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
}

.faq-question span {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-navy);
    padding-right: 15px;
}

.faq-question i {
    font-size: 1rem;
    color: var(--primary-turquoise);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--text-light);
    padding: 0 25px 25px 25px;
    margin: 0;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    line-height: 1.8;
}

/* Active State */
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-question span {
    color: var(--primary-turquoise);
}

/* =============================================
    RESPONSIVE STYLES
    ============================================= */
@media (max-width: 768px) {
    .faq-hero {
        height: 350px;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-description {
        font-size: 1.1rem;
    }
    
    .faq-page-main {
        padding: 60px 0;
    }
    
    .faq-category-title {
        font-size: 1.5rem;
    }

    .faq-question span {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    .hero-description {
        font-size: 1rem;
    }
    
    .faq-category-title {
        font-size: 1.3rem;
    }

    .faq-question {
        padding: 15px 20px;
    }
    .faq-question span {
        font-size: 0.95rem;
    }
    .faq-answer p {
        padding: 0 20px 20px 20px;
        font-size: 0.9rem;
    }
}/* End custom CSS */