/**
 * Legal Pages Styles (Terms of Service & Privacy Policy)
 *
 * Consistent styling for legal content pages
 */

/* Container */
.terms-page-container,
.privacy-page-container {
    background: linear-gradient(to bottom, #ffffff 0%, #f9f9f9 100%);
    min-height: 80vh;
}

/* Typography */
.terms-page-container article,
.privacy-page-container article {
    font-size: 1rem;
    line-height: 1.75;
    color: #333333;
}

/* Headings */
.terms-page-container h1,
.privacy-page-container h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2EA3F2;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.terms-page-container h2,
.privacy-page-container h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2EA3F2;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

/* Paragraphs */
.terms-page-container p,
.privacy-page-container p {
    margin-bottom: 1rem;
    color: #333333;
}

.terms-page-container p strong,
.privacy-page-container p strong {
    font-weight: 600;
    color: #333333;
}

/* Lists */
.terms-page-container ul,
.privacy-page-container ul {
    list-style-type: disc;
    list-style-position: inside;
    margin-bottom: 1.5rem;
    padding-left: 1rem;
}

.terms-page-container ul li,
.privacy-page-container ul li {
    margin-bottom: 0.75rem;
    color: #333333;
    line-height: 1.6;
}

.terms-page-container ul li strong,
.privacy-page-container ul li strong {
    font-weight: 600;
}

/* Effective date */
.terms-page-container .text-lg,
.privacy-page-container .text-lg {
    font-size: 1.125rem;
    color: #666666;
}

/* Contact info section */
.terms-page-container article > p:last-of-type,
.privacy-page-container article > p:last-of-type {
    line-height: 1.8;
}

/* Links */
.terms-page-container a,
.privacy-page-container a {
    color: #2EA3F2;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.terms-page-container a:hover,
.privacy-page-container a:hover {
    color: #1E87D2;
}

/* Responsive Design */
@media (max-width: 768px) {
    .terms-page-container h1,
    .privacy-page-container h1 {
        font-size: 2rem;
    }

    .terms-page-container h2,
    .privacy-page-container h2 {
        font-size: 1.25rem;
    }

    .terms-page-container,
    .privacy-page-container {
        padding: 1.5rem 0;
    }
}

@media (max-width: 480px) {
    .terms-page-container h1,
    .privacy-page-container h1 {
        font-size: 1.75rem;
    }

    .terms-page-container h2,
    .privacy-page-container h2 {
        font-size: 1.125rem;
    }
}
