/* Import Support styles as base */
@import url('/support.css');

/* Terms specific styles */
.terms-content {
    max-width: 800px;
    margin: 0 auto;
}

.terms-section {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 1.5rem;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.terms-section h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.terms-section h3 {
    color: var(--text-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem 0;
}

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

.terms-section ul {
    color: var(--light-text);
    line-height: 1.7;
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.terms-section li {
    margin-bottom: 0.5rem;
}

.terms-section a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.terms-section a:hover {
    text-decoration: underline;
}

.terms-section strong {
    color: var(--text-color);
    font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .terms-section {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .terms-section h2 {
        font-size: 1.3rem;
    }
    
    .terms-section h3 {
        font-size: 1.1rem;
    }
}
