/* Header styles */
.site-header {
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 0.5em 0 0.5em 0;
    margin-bottom: 0.5em;
}
.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}
.company-name {
    flex: 1;
    text-align: center;
    font-size: 2em;
    font-weight: 700;
    color: #14452F;
    font-size: 2.8em;
    font-family: 'Montserrat', Arial, sans-serif;
}
.logo {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 80px;
    width: auto;
}
}
@media (max-width: 700px) {
    .header-content {
        flex-direction: column;
        align-items: center;
    }
    .logo {
        position: static;
        margin-top: 0.5em;
        transform: none;
        height: 60px;
    }
}
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f8f8f8;
    color: #222;
}
nav {
    background: #14452F;
    padding: 1em 0;
}
nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}
nav ul li {
    margin: 0 1.5em;
}
nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    padding: 0.5em 1em;
    border-radius: 4px;
    transition: background 0.2s;
}
nav ul li a.active {
    background: #fff8dc;
    color: #222;
}
section {
    max-width: 900px;
    margin: 2em auto;
    background: #fff;
    padding: 2em;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.product-list {
    display: flex;
    gap: 2em;
    flex-wrap: wrap;
}
.product {
    background: #f0f4fa;
    border-radius: 8px;
    padding: 1em;
    width: 220px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.07);
    text-align: center;
}
.product img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 0.5em;
}
.product h3 {
    margin: 0.5em 0 0.2em 0;
    font-size: 1.1em;
}
footer {
    text-align: center;
    padding: 1em 0;
    background: #14452F;
    color: #fff;
    margin-top: 2em;
        border-radius: 0 0 8px 8px;
        position: fixed;
        left: 0;
        bottom: 0;
        width: 100%;
        z-index: 100;
}
body {
    min-height: 100vh;
    position: relative;
    padding-bottom: 70px; /* Height of footer */
}
}
@media (max-width: 700px) {
    .product-list {
        flex-direction: column;
        align-items: center;
    }
    section {
        padding: 1em;
    }
    .product {
        width: 90%;
    }
}
