/* 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;
}

/* 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;
    }
}
