* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: #1C3167;
    border-bottom: 3px solid #2a4a7f;
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

.company-name h1 {
    color: #d0d9e4;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0;
}

.tagline {
    color: #a8bcd9;
    font-size: 0.9rem;
    font-style: italic;
    margin: 0;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #85a3c7;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #a8bcd9;
}

.hero {
    background: linear-gradient(rgba(28, 49, 103, 0.8), rgba(28, 49, 103, 0.8)), url('stock1.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
    padding: 6rem 2rem;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: bold;
    max-width: 720px;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background: white;
    color: #1C3167;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    opacity: 0.8;
}

section {
    padding: 5rem 0;
}


.products {
    background: #fafbfc;
    border-top: 1px solid #e8eef7;
}

.products h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 3rem;
    color: #1C3167;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.product-card {
    background: white;
    padding: 2.5rem;
    border: none;
    border-left: 4px solid #1C3167;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: box-shadow 0.2s ease, border-left-color 0.2s ease;
}

.product-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    border-left-color: #2a4a7f;
}

.product-card h3 {
    font-size: 1.4rem;
    color: #1C3167;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.product-card p {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.6;
}

.product-card ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.product-card li {
    padding: 0.5rem 0;
    color: #555;
    position: relative;
    padding-left: 1rem;
    border-left: 2px solid #e8eef7;
    margin-bottom: 0.25rem;
}

.product-card li:hover {
    border-left-color: #1C3167;
    background: #f8fafb;
}

.about {
    background: #1a2b4f;
    color: white;
}

.about h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #85a3c7;
}

.employee-callout {
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 193, 7, 0.15));
    border: 2px solid rgba(255, 215, 0, 0.4);
    padding: 1.5rem 2rem;
    margin: 0 auto 3rem auto;
    max-width: 700px;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.1);
}

.employee-callout p {
    color: #ffd700;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.about-text-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-image {
    text-align: center;
}

.enterprise-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 3px solid #2a4a7f;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.image-caption {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #85a3c7;
    font-style: italic;
    line-height: 1.4;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
    background: #1C3167;
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid #2a4a7f;
}

.stat h3 {
    font-size: 2.3rem;
    color: white;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #85a3c7;
    font-weight: bold;
}

.careers {
    background: white;
}

.careers h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: #1C3167;
}

.careers-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #555;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.job-listings {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.job-card {
    background: #f8f8f8;
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid #2a4a7f;
    transition: border-color 0.2s ease;
}

.job-card:hover {
    border-color: #1C3167;
}

.job-card h3 {
    color: #1C3167;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    text-align: center;
}

.job-details p {
    margin-bottom: 0.8rem;
    color: #333;
}

.job-details ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.job-details li {
    margin-bottom: 0.5rem;
    color: #555;
}

.apply-button {
    background: #2a4a7f;
    color: white;
    border: 2px solid #1C3167;
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s ease;
    width: 100%;
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.apply-button:hover {
    background: #1C3167;
}

.careers-footer {
    text-align: center;
    background: #1a2b4f;
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid #1C3167;
}

.humans-notice {
    font-size: 1.3rem;
    color: #ff4444;
    margin-bottom: 1rem;
}

.disclaimer {
    color: #85a3c7;
    font-size: 0.9rem;
    line-height: 1.6;
    font-style: italic;
}

footer {
    background: #1C3167;
    color: #85a3c7;
    text-align: center;
    padding: 2rem 0;
    font-size: 0.9rem;
    border-top: 2px solid #1a2b4f;
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }

    .hero {
        background-attachment: scroll;
    }

    .about-text-with-image {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .job-listings {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .company-name h1 {
        font-size: 1.4rem;
    }
}