.page-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    text-align: center;
    padding: 80px 20px;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.page-content {
    min-height: 60vh;
}

.content-section {
    padding: 60px 20px;
}

.content-section h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 20px;
}

.content-section p {
    line-height: 1.8;
    color: var(--light-text);
    margin-bottom: 15px;
}

.step-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.step-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-card h3 {
    color: var(--dark-text);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.step-card p {
    color: var(--light-text);
    line-height: 1.7;
}

.info-box {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    margin: 30px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 6px solid var(--primary-color);
}

.info-box h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.info-box h3 {
    color: var(--dark-text);
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 12px;
}

.info-box p {
    line-height: 1.8;
    color: var(--light-text);
    margin-bottom: 15px;
}

.info-box ul {
    margin: 15px 0;
    padding-left: 20px;
}

.info-box li {
    line-height: 1.8;
    color: var(--light-text);
    margin-bottom: 10px;
}

.info-box strong {
    color: var(--dark-text);
}

.cta-section {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #FFF8E7, #FFE4B5);
    border-radius: 16px;
    margin: 40px 0;
}

.cta-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 30px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.contact-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-card h3 {
    color: var(--dark-text);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.contact-card p {
    color: var(--light-text);
    margin-bottom: 15px;
}

.contact-card a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-card a:hover {
    text-decoration: underline;
}

.contact-info {
    color: var(--primary-color);
    font-weight: 600;
    line-height: 1.8;
    pointer-events: none;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.team-member {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.member-avatar {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.team-member h3 {
    color: var(--dark-text);
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.team-member .role {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.team-member p {
    color: var(--light-text);
    font-size: 0.95rem;
}

.faq-item {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.faq-item p {
    color: var(--light-text);
    line-height: 1.7;
}

.legal-content {
    background: var(--white);
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    line-height: 1.8;
}

.legal-content h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-top: 35px;
    margin-bottom: 15px;
}

.legal-content h3 {
    color: var(--dark-text);
    font-size: 1.4rem;
    margin-top: 25px;
    margin-bottom: 12px;
}

.legal-content p {
    margin-bottom: 15px;
}

.legal-content ul, .legal-content ol {
    margin: 15px 0 15px 25px;
}

.legal-content li {
    margin-bottom: 10px;
    color: var(--light-text);
}

.legal-content strong {
    color: var(--dark-text);
}

.last-updated {
    color: var(--light-text);
    font-style: italic;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2.2rem;
    }

    .page-hero p {
        font-size: 1.1rem;
    }

    .legal-content {
        padding: 30px 20px;
    }

    .step-grid, .contact-grid, .team-grid {
        grid-template-columns: 1fr;
    }
}