.page-hero {
    background-color: var(--primary-color);
    color: white;
    padding: 140px 0 60px;
    text-align: center;
}

.page-hero h1 {
    color: white;
    font-size: 42px;
    margin-bottom: 12px;
}

.page-hero p {
    font-size: 16px;
    opacity: 0.85;
}

.page-content {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.page-card {
    background-color: var(--bg-white);
    border-radius: 16px;
    padding: 48px;
    box-shadow: var(--shadow-lg);
    max-width: 820px;
    margin: 0 auto;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 32px;
    transition: var(--transition-smooth);
}

.back-link:hover {
    gap: 12px;
}

.terms-section {
    margin-bottom: 36px;
}

.terms-section:last-child {
    margin-bottom: 0;
}

.terms-section h2 {
    font-size: 20px;
    color: var(--dark-color);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary-light);
}

.terms-section p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 12px;
}

.terms-section p:last-child {
    margin-bottom: 0;
}

.terms-updated {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 32px;
    font-style: italic;
}
