/* legal.css - Shared styles for privacy and terms pages */

/* Content container */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    line-height: 1.6;
}

/* Title section */
.legal-title {
    text-align: center;
    margin-bottom: 3rem;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 2rem;
}

.legal-title h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

/* Company name */
.company-name {
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-align: center;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #374151;
}

/* Last modified date */
.last-modified {
    color: #6b7280;
    font-size: 0.875rem;
    text-align: center;
    font-style: italic;
    margin-bottom: 3rem;
    padding: 1rem;
    background-color: #f9fafb;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
}

/* Introduction text */
.intro-text {
    margin: 1rem 0 2rem;
    font-style: italic;
    color: #4B5563;
}

/* Section containers */
.legal-section {
    margin-bottom: 3rem;
    padding: 0 0.5rem;
}

/* Headings */
.legal-heading,
.legal-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2.5rem 0 1.5rem;
    color: #111827;
    border-bottom: 2px solid #f3f4f6;
    padding-bottom: 0.5rem;
}

.legal-content h2:first-of-type {
    margin-top: 2rem;
}

/* Text content */
.legal-text,
.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #374151;
    font-weight: 400;
    font-size: 1rem;
}

/* Lists */
.legal-content ul {
    margin: 1rem 0 1.5rem 1.5rem;
    padding-left: 0;
}

.legal-content ul.bullet-list {
    list-style-type: disc;
}

.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #374151;
}

/* Links */
.legal-content a {
    color: #0ea5e9;
    text-decoration: none;
    font-weight: 500;
}

.legal-content a:visited {
    color: #0ea5e9;
}

.legal-content a:hover {
    text-decoration: underline;
    color: #0284c7;
}

/* Text formatting */
.legal-content strong {
    font-weight: 600;
    color: #111827;
}

.legal-content em {
    font-style: italic;
}

/* Contact info */
.contact-info {
    margin-bottom: 1rem;
    line-height: 1.5;
}

/* Footer */
.policy-footer {
    margin-top: 2.5rem;
    color: #6B7280;
    font-size: 0.875rem;
}

/* Callout boxes (for terms) */
.legal-callout {
    background-color: #f0f9ff;
    border-left: 4px solid #0ea5e9;
    padding: 1.5rem 2rem;
    border-radius: 0.5rem;
    margin: 2rem 0;
    font-size: 1rem;
    color: #0c4a6e;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

/* Responsive design */
@media (max-width: 768px) {
    .legal-content {
        padding: 1rem;
    }

    .legal-title h1 {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .legal-heading,
    .legal-content h2 {
        font-size: 1.25rem;
    }

    .intro-text {
        margin: 1rem 0 2rem;
    }
}
