/* Terms of Service Styles */
.terms-container {
    max-width: 1000px;
    margin: 6em auto;
    padding: 2rem;
}

.terms-header {
    text-align: center;
    margin-bottom: 3rem;
}

.terms-header h1 {
    color: var(--c-fx-gold);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.last-updated {
    color: var(--c-fg-text-secondary);
    font-style: italic;
}

.terms-content {
    background: var(--c-bg-panel);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: 0 4px 12px var(--c-shadow-medium);
}

.terms-section {
    margin-bottom: 2.5rem;
    animation: fadeIn 0.5s ease-out;
}

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

.terms-section h2 {
    color: var(--c-fx-gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--c-border);
    padding-bottom: 0.5rem;
}

.terms-section h3 {
    color: var(--c-fx-sky);
    font-size: 1.2rem;
    margin: 1.5rem 0 0.75rem;
}

.terms-section p {
    color: var(--c-fg-text);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.terms-section ul {
    list-style-type: none;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.terms-section ul li {
    color: var(--c-fg-text);
    margin-bottom: 0.5rem;
    position: relative;
}

.terms-section ul li::before {
    content: '•';
    color: var(--c-fx-gold);
    position: absolute;
    left: -1.5rem;
    top: 0;
}

.terms-section strong {
    color: var(--c-fx-gold);
    font-weight: var(--fw-semibold);
}

.contact-info {
    background: var(--c-bg-panel-secondary);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: var(--c-fx-sky);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--c-fx-gold);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .terms-container {
        padding: 1rem;
    }

    .terms-header h1 {
        font-size: 2rem;
    }

    .terms-content {
        padding: 1.5rem;
    }

    .terms-section h2 {
        font-size: 1.3rem;
    }

    .terms-section h3 {
        font-size: 1.1rem;
    }
}
