/* ==============================
   Terms of Use Page Styles
   ============================== */

.terms-main {
    padding: 2rem 0;
    background: #f9fafb;
    min-height: 80vh;
}

.terms-content {
    background: white;
    border-radius: 0.5rem;
    padding: 3rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.terms-content h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 0.5rem;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.terms-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f3f4f6;
}

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

.terms-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
}

.terms-section p {
    color: #374151;
    line-height: 1.7;
    margin-bottom: 1rem;
    text-align: justify;
}

.terms-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.terms-section li {
    color: #374151;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.terms-section strong {
    color: #111827;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .terms-main {
        padding: 1rem 0;
    }
    
    .terms-content {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .terms-content h1 {
        font-size: 2rem;
    }
    
    .terms-section h2 {
        font-size: 1.25rem;
    }
    
    .terms-section ul {
        padding-left: 1.5rem;
    }
}

@media (max-width: 480px) {
    .terms-content {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem;
    }
    
    .terms-content h1 {
        font-size: 1.75rem;
    }
    
    .terms-section h2 {
        font-size: 1.125rem;
    }
}

/* Footer Links */
.footer-links {
    margin-top: 1rem;
    text-align: center;
}

.footer-links a {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #111827;
    text-decoration: underline;
}

.footer-links span {
    color: #6b7280;
    margin: 0 0.5rem;
}
