/* Terms Page Specific Styles */

.terms-page {
    background: var(--bg-dark);
    padding: 2rem 0 4rem;
    min-height: calc(100vh - 200px);
}

.terms-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-top: 2rem;
}

.terms-header h1 {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--orange-light), var(--orange-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.terms-subtitle {
    color: var(--text-secondary);
    font-size: 1.25rem;
}

.terms-content {
    max-width: 900px;
    margin: 0 auto;
}

.terms-intro {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--orange-primary);
    margin-bottom: 3rem;
}

.terms-intro p {
    color: var(--text-primary);
    font-size: 1.125rem;
    margin: 0;
}

.terms-section {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
}

.terms-section h2 {
    color: var(--orange-primary);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border-color);
}

.terms-section h3 {
    color: var(--text-primary);
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.terms-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.terms-section ul {
    color: var(--text-secondary);
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.terms-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.terms-section a {
    color: var(--orange-primary);
    text-decoration: none;
}

.terms-section a:hover {
    color: var(--orange-light);
    text-decoration: underline;
}

.terms-highlight {
    background: var(--bg-darker);
    border-left: 4px solid var(--orange-primary);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.terms-highlight h3 {
    color: var(--orange-primary);
    margin-top: 0;
}

.terms-summary {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--orange-primary);
    margin-bottom: 2rem;
}

.terms-summary h2 {
    color: var(--orange-primary);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.summary-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.summary-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.summary-item p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

.terms-footer {
    background: var(--bg-darker);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 2rem;
}

.terms-footer p {
    color: var(--text-secondary);
    margin: 0.5rem 0;
}

.terms-note {
    font-size: 0.875rem;
    font-style: italic;
    color: var(--text-muted);
    margin-top: 1rem !important;
}

.terms-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.nav-links .active {
    color: var(--orange-primary);
    position: relative;
}

.nav-links .active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--orange-primary);
}

/* Responsive */
@media (max-width: 768px) {
    .terms-header h1 {
        font-size: 2rem;
    }

    .terms-section {
        padding: 1.5rem;
    }

    .summary-grid {
        grid-template-columns: 1fr;
    }

    .terms-cta {
        flex-direction: column;
    }

    .terms-cta .btn {
        width: 100%;
    }
}

