:root {
    --navy: #0b0e1e;
    --yellow: #FCE733;
    --blue: #0066ff;
    --cyan: #00d4ff;
    --white: #ffffff;
    --border: 2px solid #0b0e1e;
    --font-main: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--white);
    color: var(--navy);
    font-family: var(--font-main);
    line-height: 1.5;
    overflow-y: auto;
}

.app-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 20px;
}

/* Layout Blocks */
.top-bar,
.main-content,
.hiring-module,
.bottom-bar {
    border: var(--border);
}

/* Top Bar */
.top-bar {
    padding: 20px;
    background: var(--yellow);
    display: flex;
    justify-content: center;
}

.main-logo {
    height: 60px;
    width: auto;
    /* Make logo white for navy background */
}

/* Hero Section - Bold Blue */
.hero-text {
    padding: 60px 40px;
    background: var(--blue);
    color: var(--white);
    border-bottom: var(--border);
}

h1 {
    font-size: clamp(1.5rem, 6vw, 6rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    text-align: center;
    /* Removed white-space: nowrap to allow word wrap */
    animation: slideUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-text p {
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    animation: fadeIn 1.2s ease-out forwards;
    text-align: center;
}

/* Service Grid - Alternating Colors */
.service-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    animation: slideUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.2s backwards;
}

.service-item {
    padding: 40px 20px;
    border-right: var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 14px;
    text-transform: uppercase;
    text-align: center;
    background: var(--white);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-item:nth-child(even) {
    background: #f8f9fa;
}

.service-item:hover {
    background: var(--cyan);
    color: var(--navy);
    transform: translateY(-5px);
}

.service-item:last-child {
    border-right: none;
}

/* Hiring Module - Solid Navy */
.hiring-module {
    background: var(--navy);
    color: var(--white);
    display: flex;
    flex-direction: column;
    animation: slideUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.4s backwards;
}

.module-header {
    padding: 10px 20px;
    background: var(--cyan);
    color: var(--navy);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.hiring-content {
    padding: 60px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hiring-content h2 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 0.9;
}

.hiring-content p {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--cyan);
}

.email-link {
    font-size: clamp(1.5rem, 4vw, 3.5rem);
    font-weight: 900;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.email-link:hover {
    color: var(--cyan);
    transform: scale(1.05);
}

/* Bottom Bar */
.bottom-bar {
    padding: 20px;
    background: var(--navy);
    color: var(--white);
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

/* Animations */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.top-bar {
    animation: fadeIn 1s ease-out;
}

@media (max-width: 768px) {
    .app-container {
        padding: 10px;
        gap: 10px;
    }

    .hero-text {
        padding: 40px 20px;
    }

    h1 {
        font-size: 2.2rem;
        white-space: normal;
        line-height: 1.1;
        overflow: visible;
    }

    .service-list {
        grid-template-columns: 1fr;
    }

    .service-item {
        border-right: none;
        border-bottom: var(--border);
        padding: 30px 20px;
    }

    .service-item:last-child {
        border-bottom: none;
    }

    .hiring-content {
        grid-template-columns: 1fr;
        padding: 40px 20px;
        gap: 30px;
    }

    .hiring-content h2 {
        font-size: 2.5rem;
    }

    .email-link {
        font-size: 1.3rem;
    }

    .bottom-bar {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}