*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

.om-oss-page {
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: white;
    overflow: hidden;
    padding: 4rem 2rem;
}

/* Back arrow */
.back-arrow {
    position: fixed;
    top: 2rem;
    left: 2rem;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background-color: rgba(26, 108, 54, 0.1);
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

.back-arrow:hover {
    background-color: rgba(26, 108, 54, 0.2);
}

/* Main content */
.om-oss-content {
    max-width: 700px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    z-index: 10;
}

.om-oss-content h1 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 3rem;
    color: #1A6C36;
    margin: 0;
    text-align: center;
}

/* Intro paragraphs */
.om-oss-intro {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.om-oss-intro p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1.7;
    color: #322F2F;
    margin: 0;
}

.om-oss-intro .lead {
    color: #4B4545;
}

.om-oss-intro strong {
    color: #1A6C36;
    font-weight: 600;
}

.om-oss-intro em {
    font-style: italic;
    color: #5A8B6D;
}

.om-oss-intro .privacy-note {
    font-size: 1rem;
    color: #666;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(90, 139, 109, 0.2);
}

/* Highlights list */
.om-oss-highlights {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(90, 139, 109, 0.08) 0%, rgba(26, 108, 54, 0.05) 100%);
    padding: 2rem;
    border-radius: 1rem;
}

.om-oss-highlights li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 1.125rem;
    color: #322F2F;
}

.highlight-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    background-color: #5A8B6D;
    color: white;
    border-radius: 50%;
    font-size: 0.875rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* CTA buttons */
.om-oss-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.cta-primary,
.cta-secondary {
    padding: 1rem 2.5rem;
    border-radius: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 1.25rem;
    text-decoration: none;
    text-align: center;
    transition: all 0.2s ease;
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
}

.cta-primary {
    background-color: #5A8B6D;
    color: white;
}

.cta-primary:hover {
    background-color: #4a7a5d;
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.cta-secondary {
    background-color: white;
    color: #5A8B6D;
    border: 2px solid #5A8B6D;
}

.cta-secondary:hover {
    background-color: rgba(90, 139, 109, 0.1);
    transform: translateY(-2px);
}

/* Decorative elements */
.om-oss-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateX(-25%);
    opacity: 0.6;
    pointer-events: none;
}

.om-oss-logo {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    height: 80px;
    width: auto;
}

/* ========================================
   MOBILE STYLES
   ======================================== */

@media (max-width: 768px) {
    .om-oss-page {
        padding: 5rem 1.5rem 8rem;
        justify-content: flex-start;
    }

    .back-arrow {
        top: 1rem;
        left: 1rem;
        width: 2.5rem;
        height: 2.5rem;
    }

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

    .om-oss-intro p {
        font-size: 1.0625rem;
    }

    .om-oss-intro .lead {
        font-size: 1.0625rem;
    }

    .om-oss-highlights {
        padding: 1.5rem;
    }

    .om-oss-highlights li {
        font-size: 1rem;
    }

    .cta-primary,
    .cta-secondary {
        padding: 0.875rem 2rem;
        font-size: 1rem;
        width: 100%;
    }

    .om-oss-decoration {
        opacity: 0.3;
        width: 80%;
        transform: translateX(-40%);
    }

    .om-oss-logo {
        height: 50px;
        bottom: 1.5rem;
        right: 1.5rem;
    }
}