/* assets/css/terms.css */
/* Professional Styles for Terms of Service Page */

/* 1. Page Layout & Header
-------------------------------------------------- */
.terms-page-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    animation: fadeIn 0.5s ease-in-out;
}

.terms-header {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 2rem 2.5rem;
    margin-bottom: 2.5rem;
}

.terms-header h1 {
    font-family: var(--font-secondary);
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.terms-header p {
    font-size: 1.1rem;
    color: #dbeafe;
    opacity: 0.9;
    margin: 0;
}

.terms-content {
    padding: 0 2.5rem 2.5rem 2.5rem;
}

/* 2. Policy Container & Content
-------------------------------------------------- */
.policy-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #fff;
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.03), 0 2px 4px -1px rgba(0,0,0,0.02);
}

.effective-date {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.policy-section {
    margin-bottom: 2rem;
}

.policy-title {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.policy-section p, .policy-section li {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}

.policy-section ul {
    padding-left: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.policy-section a {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
}

.policy-section a:hover {
    text-decoration: underline;
}

/* 3. Responsive Design
-------------------------------------------------- */
@media (max-width: 768px) {
    .terms-content {
        padding: 0 1rem 1rem 1rem;
    }
    .policy-container {
        padding: 2rem;
    }
}
