/* Terms of Use Specific Styles */
.terms-container {
    max-width: var(--container-width);
    margin: calc(var(--header-height) + 2rem) auto 2rem;
    padding: 0 1rem;
}

.terms-content {
    max-width: 800px;
    margin: 0 auto;
}

.terms-content h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.last-updated {
    color: #666;
    font-style: italic;
    margin-bottom: 2rem;
}

.terms-section {
    margin-bottom: 2.5rem;
}

.terms-section h2 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.terms-section p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

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

.terms-section ul li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: -1.5rem;
}

.contact-info {
    background-color: var(--background-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-top: 1rem;
}

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

/* Highlight Box for Important Information */
.important-notice {
    background-color: rgba(var(--primary-color-rgb), 0.1);
    border-left: 4px solid var(--primary-color);
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

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

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

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

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

@media (max-width: 480px) {
    .terms-content h1 {
        font-size: 1.8rem;
    }

    .terms-section {
        margin-bottom: 2rem;
    }

    .terms-section ul {
        padding-left: 1.2rem;
    }

    .contact-info {
        padding: 1rem;
    }
}

/* Print Styles */
@media print {
    .header, .footer {
        display: none;
    }

    .terms-container {
        margin: 0;
        padding: 0;
    }

    .terms-section {
        page-break-inside: avoid;
    }
} 