/* Terms of Use Styles */
.terms-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.terms-content {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.terms-content h2 {
    color: #2c3e50;
    font-family: "brandon-grotesque", sans-serif;
    font-weight: 600;
    margin: 30px 0 20px;
    font-size: 24px;
}

.terms-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.terms-content strong {
    color: #2c3e50;
    font-weight: 600;
    font-family: "brandon-grotesque", sans-serif;
}

.terms-content ul, 
.terms-content ol {
    padding-left: 40px;
    margin: 15px 0;
}

.terms-content ul {
    list-style: disc;
}

.terms-content ol {
    list-style: decimal;
}

.terms-content li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #444;
}

.terms-content a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.terms-content a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.last-modified {
    text-align: center;
    font-size: 1.1em;
    color: #666;
    margin-bottom: 30px;
    font-family: "brandon-grotesque", sans-serif;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .terms-container {
        padding: 20px 15px;
    }
    
    .terms-content {
        padding: 20px;
        font-size: 15px;
    }
    
    .terms-content ul,
    .terms-content ol {
        padding-left: 25px;
    }
}

/* Print styles */
@media print {
    .terms-content {
        box-shadow: none;
        padding: 0;
    }
    
    .terms-content h2 {
        page-break-after: avoid;
    }
    
    .terms-content li {
        page-break-inside: avoid;
    }
}
