/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Schibsted Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #ffffff;
    color: #000024;
    line-height: 1.6;
    overflow-x: hidden;
    padding-left: 100px; /* space for fixed left rail */
}

.left-rail {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    background: #F7F7F7;
    border-right: 1px solid rgba(0, 0, 36, 0.08);
    z-index: 10000;
}

.left-rail-size-120 {
    width: 120px;
}

.left-rail-size-130 {
    width: 130px;
}   

.left-rail-size-140 {
    width: 140px;
}   

.left-rail-size-150 {
    width: 150px;
}   

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 200px;
}

.logo {
    height: 24px;
}

.logo-svg {
    width: 100%;
    height: 100%;
}

.icon-svg {
    width: 20px;
    height: 20px;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: #000024;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
}

.nav-link:hover {
    text-decoration: underline;
}
.nav-button {
    background-color: #000024;
    color: #ffffff;
    height: 32px;
    padding: 0px 16px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-button:hover {
    background-color: #000024;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    color: #ffffff;
}

.hero {
    display: flex;
    padding: 50px 200px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    align-self: stretch;
}

.hero-headline {
    font-feature-settings: 'liga' off, 'clig' off;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 36px; /* 150% */
    letter-spacing: -1px;
}

.hero-cta {
    display: flex;
    padding: 0 28px;
    flex-direction: column;
    align-items: flex-start;
}

.cta-button {
    display: flex;
    width: 120px;
    height: 32px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    background: #C7C7FF;
    text-decoration: none;
    color: #000024;
    font-feature-settings: 'liga' off, 'clig' off;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; /* 171.429% */
}

.cta-button:hover {
    background: #C7C7FF;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    color: #000024;
}

/* Products & Services Section */
.products-services {
    padding: 60px 200px 80px;
}

.products-services-inner {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
}

.section-label {
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px; /* 200% */
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #000024;
    margin-bottom: 20px;
}

.products-group {
    display: flex;
    flex-direction: column;
}

.products-group:first-child {
    flex: 0 1 268px;
}

.products-group:last-child {
    flex: 1;
    min-width: 0;
}

.cards-row {
    display: flex;
    gap: 0px;
    flex-wrap: wrap;
}

.card {
    flex: 1;
    min-width: 240px;
    max-width: 240px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 36, 0.08);
    border-radius: 5px;
    margin-left: 28px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.card-icon {
    color: #000024;
}

.card-icon svg {
    display: block;
}

.card-title-main {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: -1px;
    color: #000024;
}

.card-title-sub {
    font-size: 14px;
    font-weight: 400;
    color: #000024;
    opacity: 0.8;
}

.card-description {
    font-size: 14px;
    font-weight: 400;
    color: #000024;
    opacity: 0.7;
    line-height: 1.5;
    flex-grow: 1;
}

.card-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    padding: 0 16px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    color: #000024;
    margin-top: 4px;
}

.card-cta-fill {
    background: #FFECC7;
    color:#000024;
    width: 100%;
}

.card-cta-fill:hover {
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.card-cta-outline {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 36, 0.2);
    width: 100%;
}

.card-cta-outline:hover {
    border-color: #000024;
    transition: border-color 0.3s ease;
}

.footer-copyright {
    padding: 40px 200px 60px;
}

/* Responsive Layout */
@media (max-width: 840px) {
    body {
        padding-left: 0;
    }

    .left-rail {
        display: none;
    }
}

@media (max-width: 1350px) {
    .products-services-inner {
        flex-direction: column;
        gap: 48px;
    }

    .products-group:first-child {
        flex: 1;
    }

    .products-group:last-child {
        flex: 1;
    }

    .products-services {
        padding: 60px 100px 80px;
    }

    .header {
        padding: 20px 100px;
    }

    .hero {
        padding: 50px 100px;
    }

    .footer-copyright {
        padding: 40px 100px 60px;
    }
}

@media (max-width: 768px) {
    body {
        padding-left: 0;
    }

    .products-services {
        padding: 40px 24px 60px;
    }

    .header {
        padding: 20px 24px;
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .nav {
        flex-wrap: wrap;
        gap: 16px;
    }

    .hero {
        padding: 40px 24px;
    }

    .hero-headline {
        font-size: 20px;
        line-height: 28px;
    }

    .cards-row {
        flex-direction: column;
        gap: 20px;
    }

    .card {
        max-width: 100%;
        margin-left: 0;
    }

    .footer-copyright {
        padding: 40px 24px 60px;
    }
}

/* Footer link */
.footer-link {
    color: #000024;
    opacity: 0.7;
    text-decoration: none;
}

.footer-link:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Privacy Policy Page */
.policy-page {
    padding: 40px 200px 80px;
}

.policy-content {
    max-width: 720px;
}

.policy-header {
    margin-bottom: 48px;
}

.policy-title {
    font-size: 32px;
    font-weight: 500;
    letter-spacing: -1px;
    line-height: 1.2;
    color: #000024;
    margin: 12px 0 8px;
}

.policy-meta {
    font-size: 14px;
    color: #000024;
    opacity: 0.5;
}

.policy-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(0, 0, 36, 0.08);
}

.policy-section:last-child {
    border-bottom: none;
}

.policy-h2 {
    font-size: 16px;
    font-weight: 600;
    color: #000024;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.policy-h3 {
    font-size: 14px;
    font-weight: 600;
    color: #000024;
    margin: 20px 0 8px;
}

.policy-section p {
    font-size: 14px;
    font-weight: 400;
    color: #000024;
    opacity: 0.7;
    line-height: 1.7;
    margin-bottom: 12px;
}

.policy-section p:last-child {
    margin-bottom: 0;
}

.policy-list {
    font-size: 14px;
    font-weight: 400;
    color: #000024;
    opacity: 0.7;
    line-height: 1.7;
    padding-left: 20px;
    margin-bottom: 12px;
}

.policy-list li {
    margin-bottom: 6px;
}

.policy-link {
    color: #000024;
    opacity: 1;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.policy-link:hover {
    opacity: 0.6;
}

.policy-infobox {
    background: #F7F7F7;
    border: 1px solid rgba(0, 0, 36, 0.08);
    border-radius: 5px;
    padding: 16px 20px;
    margin: 12px 0;
}

.policy-infobox p {
    margin-bottom: 0 !important;
}

.policy-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    margin: 12px 0 16px;
}

.policy-table th {
    text-align: left;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #000024;
    padding: 10px 12px;
    border-bottom: 1px solid rgba(0, 0, 36, 0.12);
    background: #F7F7F7;
}

.policy-table th:first-child {
    border-radius: 5px 0 0 0;
}

.policy-table th:last-child {
    border-radius: 0 5px 0 0;
}

.policy-table td {
    padding: 10px 12px;
    font-size: 13px;
    color: #000024;
    opacity: 0.7;
    border-bottom: 1px solid rgba(0, 0, 36, 0.06);
    vertical-align: top;
    line-height: 1.5;
}

.policy-table tr:last-child td {
    border-bottom: none;
}

.policy-table code {
    font-family: 'SFMono-Regular', 'Consolas', monospace;
    font-size: 12px;
    background: rgba(0, 0, 36, 0.05);
    padding: 2px 5px;
    border-radius: 3px;
    white-space: nowrap;
}

@media (max-width: 1350px) {
    .policy-page {
        padding: 40px 100px 80px;
    }
}

@media (max-width: 768px) {
    .policy-page {
        padding: 32px 24px 60px;
    }

    .policy-title {
        font-size: 24px;
    }

    .policy-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 36, 0.08);
    z-index: 99999;
    padding: 16px 200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-text {
    font-size: 14px;
    font-weight: 400;
    color: #000024;
    opacity: 0.7;
    line-height: 1.5;
    flex: 1;
    min-width: 200px;
}

.cookie-link {
    color: #000024;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-actions {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-shrink: 0;
}

.cookie-btn {
    height: 32px;
    padding: 0 16px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    border: none;
}

.cookie-btn-fill {
    background: #C7C7FF;
    color: #000024;
}

.cookie-btn-fill:hover {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.cookie-btn-outline {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 36, 0.2);
    color: #000024;
}

.cookie-btn-outline:hover {
    border-color: #000024;
    transition: border-color 0.3s ease;
}

@media (max-width: 768px) {
    .cookie-banner {
        padding: 16px 24px;
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-actions {
        width: 100%;
        justify-content: flex-end;
    }
}