/* ========== Agreement Page Styles ========== */

.agreement-page {
    padding: var(--spacing-xxl) 0;
    background: var(--light-secondary);
}

.agreement-header {
    text-align: center;
    margin-bottom: var(--spacing-xxl);
    padding-bottom: var(--spacing-lg);
    border-bottom: 2px solid var(--border-color);
}

.agreement-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.agreement-header .agreement-date {
    color: var(--text-secondary);
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.agreement-content {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--spacing-xl);
    background: var(--light-bg);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    line-height: 1.8;
    color: var(--text-primary);
}

.agreement-content p {
    margin-bottom: var(--spacing-md);
}

.agreement-section {
    margin-bottom: var(--spacing-xl);
}

.agreement-section:last-child {
    margin-bottom: 0;
}

.agreement-section h2 {
    font-size: clamp(1.5rem, 3vw, 1.75rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    margin-top: var(--spacing-lg);
    padding-bottom: var(--spacing-sm);
    border-bottom: 1px solid var(--border-color);
}

.agreement-section h2:first-child {
    margin-top: 0;
}

.agreement-section h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
}

.agreement-section ul {
    margin: var(--spacing-md) 0;
    padding-left: var(--spacing-lg);
}

.agreement-section ul li {
    margin-bottom: var(--spacing-sm);
    line-height: 1.8;
}

.agreement-section ul li:last-child {
    margin-bottom: 0;
}

