:root {
    --seaGreen: #063438;
    --electricTeal: #00b3a3;
    --alpineGreen: #6c9c88;
    --frostyBlue: #6ebcdc;
    --pastelGreen: #80d698;
    --barbadonsSunrise: #ffa246;
    --unica: "Unica77LLWeb-Light", "Gill Sans MT", sans-serif;
    --unica-medium: "Unica77LLWeb-Medium", "Gill Sans MT", sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--unica);
    font-size: 16px;
    line-height: 1.6;
    color: var(--seaGreen);
    background: #ffffff;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: scroll;
}

.topContainer {
    min-height: 100%;
    position: relative;

}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    min-height: 800px;
}

/* Hero Section */
.hero {
    position: relative;
    background: var(--seaGreen);
    border-radius: 0;
    border: none;
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: none;
}

    .hero:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--electricTeal);
    }

.hero-inner {
    padding: 32px 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.hero-left {
    flex: 1;
}

.hero-contact {
    text-align: center;
    padding: 16px 8px;
    min-width: 200px;
    background: var(--electricTeal);
    border-radius: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

    .hero-contact h3 {
        font-family: var(--unica-medium);
        font-size: 16px;
        color: var(--seaGreen);
        margin-bottom: 4px;
        font-weight: 600;
    }

    .hero-contact p {
        font-size: 13px;
        color: var(--seaGreen);
        margin: 2px 0;
        line-height: 1.3;
    }

    .hero-contact a {
        color: var(--seaGreen);
        text-decoration: none;
        font-weight: 600;
        transition: opacity 0.2s ease;
        display: block;
    }

        .hero-contact a:hover {
            opacity: 0.7;
        }

.logo {
    filter: brightness(0) invert(1);
    margin-bottom: 16px;
    opacity: 1;
}

h1 {
    font-family: var(--unica-medium);
    font-size: 36px;
    font-weight: 500;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 6px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.5px;
}

.subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 16px;
}

.client-hero {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    box-shadow: none;
}

    .client-hero strong {
        font-family: var(--unica-medium);
        font-size: 20px;
        color: #ffffff;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    }

/* Split Layout */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

/* Content Card */
.glass-card {
    background: #ffffff;
    border-radius: 0;
    border: none;
    border-top: 1px solid rgba(6, 52, 56, 0.1);
    padding: 24px 0;
    box-shadow: none;
    transition: none;
}

    .glass-card:hover {
        transform: none;
        box-shadow: none;
        border-color: rgba(6, 52, 56, 0.1);
    }

    .glass-card h2 {
        font-family: var(--unica-medium);
        font-size: 24px;
        font-weight: 500;
        color: var(--seaGreen);
        margin-bottom: 12px;
        display: block;
        line-height: 1.2;
    }

        .glass-card h2:before {
            content: none;
        }

    .glass-card p {
        color: rgba(6, 52, 56, 0.8);
        line-height: 1.6;
        margin-bottom: 0;
        font-size: 15px;
    }

/* Requirements Grid */
.requirements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.req-card {
    position: relative;
    background: #f8f9fa;
    border-radius: 0;
    padding: 16px 16px 16px 60px;
    border: 1px solid rgba(6, 52, 56, 0.12);
    transition: border-color 0.2s ease;
    overflow: hidden;
}

    .req-card:before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 3px;
    }

    .req-card:nth-child(1):before {
        background: var(--electricTeal);
    }

    .req-card:nth-child(2):before {
        background: var(--electricTeal);
    }

    .req-card:nth-child(3):before {
        background: var(--electricTeal);
    }

    .req-card:nth-child(4):before {
        background: var(--electricTeal);
    }

    .req-card:hover {
        transform: none;
        background: #ffffff;
        border-color: var(--electricTeal);
        box-shadow: none;
    }

.req-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: bold;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.req-card:nth-child(1) .req-icon {
    background: var(--seaGreen);
}

.req-card:nth-child(2) .req-icon {
    background: var(--seaGreen);
}

.req-card:nth-child(3) .req-icon {
    background: var(--seaGreen);
}

.req-card:nth-child(4) .req-icon {
    background: var(--seaGreen);
}

.req-card h3 {
    font-family: var(--unica-medium);
    font-size: 15px;
    font-weight: 500;
    color: var(--seaGreen);
    margin-bottom: 3px;
}

.req-card p {
    font-size: 13px;
    color: rgba(6, 52, 56, 0.65);
    line-height: 1.5;
    margin: 0;
}

/* Notice Card */
.notice-glass {
    background: #fffbf5;
    border-radius: 0;
    border: 1px solid rgba(255, 162, 70, 0.25);
    border-left: 3px solid var(--barbadonsSunrise);
    padding: 18px 20px;
    margin: 24px 0;
    box-shadow: none;
}

    .notice-glass h3 {
        font-family: var(--unica-medium);
        font-size: 16px;
        color: var(--seaGreen);
        margin-bottom: 8px;
        display: block;
    }

        .notice-glass h3:before {
            content: none;
        }

    .notice-glass p {
        color: rgba(6, 52, 56, 0.75);
        margin: 0;
        line-height: 1.6;
        font-size: 14px;
    }

/* CTA Section */
.cta-section {
    background: #f8f9fa;
    border-radius: 0;
    border: 1px solid rgba(6, 52, 56, 0.12);
    padding: 32px;
    text-align: center;
    box-shadow: none;
    position: relative;
    overflow: visible;
    margin: 24px 0 20px;
}

    .cta-section:before {
        content: none;
    }

    .cta-section p {
        position: relative;
        font-size: 15px;
        color: rgba(6, 52, 56, 0.8);
        margin-bottom: 18px;
        z-index: 1;
    }

.btn-super {
    position: relative;
    display: inline-block;
    padding: 14px 40px;
    font-family: var(--unica-medium);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    color: #ffffff;
    background: var(--seaGreen);
    border: 2px solid var(--seaGreen);
    border-radius: 0;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: none;
    z-index: 1;
    overflow: visible;
}

    .btn-super:before {
        content: none;
    }

    .btn-super:hover {
        transform: none;
        background: #ffffff;
        color: var(--seaGreen);
        box-shadow: none;
    }

        .btn-super:hover:before {
            content: none;
        }

    .btn-super:active {
        transform: none;
        opacity: 0.9;
    }

/* Footer */
.footer {
    background: var(--seaGreen);
    color: rgba(255, 255, 255, 0.7);
    padding: 24px 0 20px;
    margin-top: 48px;
    font-size: 13px;
    line-height: 1.6;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-grid {
    display: none;
}

.footer-section h4 {
    font-family: var(--unica-medium);
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 12px;
    font-weight: 500;
}

.footer-section p {
    margin: 4px 0;
    font-size: 13px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

    .footer-section a:hover {
        color: var(--electricTeal);
    }

.footer-legal {
    padding-top: 0;
    margin-top: 0;
    border-top: none;
    font-size: 11px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.6);
}

    .footer-legal p {
        margin-bottom: 16px;
    }

        .footer-legal p:last-child {
            margin-bottom: 0;
        }

.footer-copyright {
    text-align: center;
    padding-top: 16px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .footer {
        padding: 32px 0 16px;
        margin-top: 32px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}


/* Floating particles removed for cleaner white background */

@media (max-width: 768px) {
    .container {
        padding: 12px 16px;
    }

    h1 {
        font-size: 32px;
    }

    .subtitle {
        font-size: 16px;
    }

    .hero-inner {
        padding: 24px 20px;
        flex-direction: column;
        gap: 20px;
    }

    .hero-contact {
        text-align: left;
        padding-top: 16px;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .split-layout {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .requirements-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .req-card {
        padding: 16px 16px 16px 60px;
    }

    .glass-card {
        padding: 20px;
    }

        .glass-card h2 {
            font-size: 20px;
        }

    .cta-section {
        padding: 24px 16px;
    }

    .btn-super {
        display: block;
        width: 100%;
        padding: 18px 32px;
    }

    .client-hero strong {
        font-size: 20px;
    }
}

@media print {
    .hero {
        background: var(--seaGreen);
    }

    .btn-super {
        display: none;
    }
}
