/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #ffffff;
}

/* ================= CONTAINER ================= */
.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

/* ================= NAVBAR (FIXED) ================= */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding-top: 10px;
    background: #ffffff;
    border-bottom: 1px solid #eee;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    align-items: center;
    height: 60px;
}

.navbar img {
    height: 40px;
}

/* Prevent overlap */
body {
    padding-top: 100px;
}


.brand a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brand img {
    height: 80px;
    margin-right: 10px;
}

.company-name {
    font-size: 20px;
    font-weight: 600;
    color: #222;
}

/* ================= HERO ================= */
.header-area {
    padding: 60px 0;
    background: linear-gradient(135deg, #e6ecf5, #cfd9e6);
    border-bottom: 1px solid #e0e0e0;
}

.header-area h1 {
    font-size: 42px;
    line-height: 1.3;
    max-width: 900px;
    margin-bottom: 20px;
}

.header-area p {
    font-size: 18px;
    color: #555;
    max-width: 700px;
}

/* ================= SECTIONS ================= */
.section-block {
    padding: 10px 0;
}

/* alternating background */
.section-block:nth-of-type(even) {
    background: #f8fafc;
}

/* ================= TYPOGRAPHY ================= */
h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

h3 {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 10px;
}

p {
    margin-bottom: 15px;
    color: #555;
}

/* underline accent */
h2::after {
    content: "";
    display: block;
    width: 300px;
    height: 3px;
    background: #007bff;
    margin-top: 10px;
}

/* ================= GRID ================= */
.row {
    display: flex;
    flex-wrap: wrap;
    gap: 0px;
    align-items: center;
}

.col-6 {
    flex: 0 0 46%;
}

.col-6 img {
    max-width: 300px;
    width: 100%;
}

.image-col {
    display: flex;
    align-items: center;
    justify-content: center;
}


.sds-image {
    width: 95%;
    max-height: 450px;
    object-fit: contain;
}

/* mobile */
@media (max-width: 768px) {
    .col-6 {
        flex: 1 1 100%;
    }

    .header-area h1 {
        font-size: 30px;
    }
}

/* ================= IMAGES ================= */
img {
    max-width: 100%;
    height: auto;
}

/* ================= CARDS ================= */
.feature-box {
    background: #ffffff;
    padding: 20px;
    border-radius: 6px;
    border: 1px solid #eee;
    transition: 0.2s;
}

.feature-box:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* ================= LINKS ================= */
a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* ================= FOOTER ================= */
.footer {
    padding: 30px 0;
    text-align: center;
    background: #222;
    color: #fff;
    font-size: 14px;
}