.hero {
    padding: 140px 2rem 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px var(--shadow);
}

.hero-container {
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1.5rem;
}
.hero h1 .highlight {
    background: linear-gradient(135deg, var(--accent) 0%, #B8941F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.7;
}

.faq-section {
    padding: 100px 2rem;
    background: white;
}

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

.faq-item {
    background: white;
    border: 2px solid var(--border);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--secondary);
    box-shadow: 0 10px 40px var(--shadow);
}

.faq-question {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.faq-question h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--accent);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 2rem 2rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.faq-list {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.faq-note {
    margin-top: 1rem;
}

.faq-answer-content a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
}

.faq-answer-content a:hover {
    color: var(--accent);
}

.contact-cta {
    padding: 100px 2rem;
    background: var(--bg-light);
    text-align: center;
}

.contact-cta-container {
    max-width: 700px;
    margin: 0 auto;
}

.contact-cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
}

.contact-cta p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}


@media (max-width: 968px) {
    .hero h1 {
        font-size: 2.5rem;
    }
}