/* Resources Page Hero */
.page-hero-resources {
    padding: 140px 40px 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    text-align: center;
}

.page-hero-resources .page-hero-container {
    max-width: 900px;
    margin: 0 auto;
}

.page-hero-resources h1 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: var(--global-palette1);
    line-height: 1.2;
    margin-bottom: 24px;
}

.page-hero-resources .hero-subtitle {
    font-size: 20px;
    line-height: 1.7;
    color: #475569;
    max-width: 750px;
    margin: 0 auto;
}

/* FAQs Section */
.resources-faqs {
    padding: 80px 40px 100px;
    background: #ffffff;
}

.faqs-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 60px;
}

.faq-category:last-child {
    margin-bottom: 0;
}

.category-title {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    color: var(--global-palette1);
    margin-bottom: 30px;
    padding-bottom: 16px;
    border-bottom: 3px solid var(--global-palette3);
}

.faq-item {
    margin-bottom: 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--global-palette3);
}

.faq-item.active {
    border-color: var(--global-palette3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    padding: 24px 60px 24px 28px;
    background: #ffffff;
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: var(--global-palette1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    position: relative;
    font-family: 'Inter', sans-serif;
}

.faq-question:hover {
    color: var(--global-palette3);
}

.faq-icon {
    position: absolute;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: var(--global-palette3);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: translateY(-50%) rotate(45deg);
    background: var(--global-palette1);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: #f8f9fa;
}

.faq-item.active .faq-answer {
    max-height: 2000px;
}

.faq-answer > * {
    padding: 0 28px;
}

.faq-answer > *:first-child {
    padding-top: 24px;
}

.faq-answer > *:last-child {
    padding-bottom: 28px;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 16px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul,
.faq-answer ol {
    margin: 16px 0;
    padding-left: 20px;
}

.faq-answer li {
    font-size: 16px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 10px;
}

.faq-answer strong {
    color: var(--global-palette1);
    font-weight: 600;
}

.faq-answer em {
    color: var(--global-palette3);
}

.faq-answer a {
    color: var(--global-palette3);
    text-decoration: underline;
    font-weight: 600;
}

.faq-answer a:hover {
    color: var(--global-palette1);
}

/* Resources CTA */
.resources-cta {
    padding: 80px 40px;
    background: linear-gradient(135deg, var(--global-palette1) 0%, var(--global-palette2) 100%);
}

.resources-cta-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.resources-cta h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.resources-cta p {
    font-size: 19px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 35px;
}

.resources-cta .btn-primary-large {
    background: var(--global-palette3);
}

.resources-cta .btn-primary-large:hover {
    background: #b8964e;
}

@media (max-width: 768px) {
    .page-hero-resources {
        padding: 120px 20px 60px;
    }
    
    .resources-faqs {
        padding: 60px 20px;
    }
    
    .faq-question {
        font-size: 16px;
        padding: 20px 50px 20px 20px;
    }
    
    .faq-icon {
        right: 20px;
        width: 28px;
        height: 28px;
        font-size: 20px;
    }
    
    .faq-answer > * {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .resources-cta {
        padding: 60px 20px;
    }
}