/* Legal Pages Shared Styles */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.custom-page {
    min-height: 70vh;
}

.custom-page.legal-page {
    padding: 80px 0;
}

.ss-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #000;
}

h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 48px;
    margin-bottom: 16px;
    color: #000;
}

h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 32px;
    margin-bottom: 12px;
    color: #000;
}

p {
    margin-bottom: 24px;
    font-size: 1rem;
    line-height: 1.6;
}

/* Links */
a {
    color: #000;
    text-decoration: underline;
    transition: color 0.3s ease;
}

a:hover {
    color: #4CAF50;
}

/* Strong/Bold text */
strong {
    font-weight: 700;
}

/* Lists */
ol,
ul {
    margin-left: 40px;
    margin-bottom: 24px;
}

ol li,
ul li {
    margin-bottom: 8px;
}

ol[type="i"] {
    list-style-type: lower-roman;
}

ul[type="disc"] {
    list-style-type: disc;
}

/* Sections */
section {
    margin-bottom: 32px;
}

/* Noscript Fallback Styles */
.noscript-fallback {
    margin-top: 2em;
    padding: 1.5em;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.noscript-fallback p {
    margin-bottom: 1em;
}

.noscript-fallback p:last-child {
    margin-bottom: 0;
}

.noscript-region-links {
    margin-top: 1em;
    list-style: none;
    padding: 0;
    margin-left: 0;
}

.noscript-region-links li {
    margin-bottom: 0.5em;
}

.noscript-region-links li:last-child {
    margin-bottom: 0;
}

.noscript-region-links a {
    display: inline-block;
    padding: 0.5em 1em;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.noscript-region-links a:hover {
    background: #0056b3;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .custom-page.legal-page {
        padding: 40px 0;
    }

    .ss-container {
        padding: 0 16px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.25rem;
        margin-top: 32px;
    }

    h3 {
        font-size: 1.1rem;
        margin-top: 24px;
    }

    .noscript-fallback {
        padding: 1em;
    }

    .noscript-region-links a {
        display: block;
        text-align: center;
    }
}
