﻿body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #222;
    background-color: #f5f5f5;
}

/* HERO */
.hero {
    height: 300px;
    background-image: url("../images/cropped-global-4556579_1920.jpg");
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* overlay */
.hero-overlay {
    background: rgba(0, 0, 0, 0.55);
    color: white;
    padding: 15px 30px;
    max-width: 900px;
    border-radius: 6px;
}

/* TITLE */
.hero h1 {
    margin: 0;
    font-size: 52px;
    font-weight: bold;
    letter-spacing: 2px;
}

.tagline {
    font-size: 22px;
    margin-top: 15px;
}

/* NAV */
.nav {
    background: #0f2d3a;
    padding: 12px;
    text-align: center;
}

    .nav a {
        color: white;
        text-decoration: none;
        margin: 0 12px;
        font-weight: 500;
    }

        .nav a:hover {
            text-decoration: underline;
        }

/* CONTENT */
.container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
    background: white;
}

/* SECTION SPACING */
section {
    margin-bottom: 40px;
}

/* FOOTER */
.footer {
    text-align: center;
    padding: 20px;
    font-size: 14px;
    color: #666;
}

/* DATA QUALITY EMPHASIS */
.data-quality h2 {
    color: #0f2d3a;
}

.hero-brand {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.brand-text h1 {
    margin: 0;
    font-size: 60px;
    font-weight: bold;
}

.brand-text p {
    margin-top: 10px;
    font-size: 24px;
}

.hero-center {
    text-align: center;
}

    .hero-center h2 {
        font-size: 56px;
        margin-bottom: 10px;
    }

    .hero-center p {
        font-size: 24px;
    }

.content-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.content-text {
    flex: 1;
}

.content-image img {
    width: 250px;
    height: auto;
}

    .content-text h2 {
        color: #0f2d3a;
        font-size: 24px;
        margin-bottom: 20px;
    }

    .content-text p {
        font-size: 16px;
        line-height: 1.7;
    }

.footer-logo {
    width: 160px;
    height: auto;
    display: block;
    margin: 0 auto 15px auto;
}

.product-image {
    width: 100%;
    max-width: 1000px;
    height: auto;
    display: block;
    margin: 20px auto 40px auto;
    border: 1px solid #ccc;
}

