body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f8f7f3; /* off-white */
    color: #333;
}

/* Floating (sticky) header */
header {
    position: sticky;
    top: 0;
    background-color: #ffffff;
    padding: 10px 30px;
    border-bottom: 1px solid #ddd;
    z-index: 1000;
}

/* Center header content */
.header-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* Company name / logo text */
.site-title {
    margin: 0;
    font-size: 1.8rem;
}

.site-title a {
    text-decoration: none;
    color: #333;
}

/* Links underneath the title */
nav {
    margin-top: 8px;
}

nav a {
    margin: 0 10px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

/* Main content container */
.container {
    max-width: 900px;
    margin: 80px auto 40px auto;
    padding: 0 20px;
}

/* Products section styling */
.product {
    margin-top: 20px;
}

.product-image img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 10px 0;
}

.product-description {
    max-width: 700px;
    line-height: 1.5;
}

footer {
    text-align: center;
    padding: 20px 0;
    color: #555;
    font-size: 0.85rem;
}

html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
}

footer {
    margin-top: auto;
}
