body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1a1a1a;
    /* Dark background, closer to black */
    color: #f0f0f0;
    /* Light text color */
    line-height: 1.6;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
    padding: 20px 0;
}

header {
    background: #222222;
    /* Slightly lighter dark for header */
    color: #fff;
    padding-top: 30px;
    min-height: 70px;
    border-bottom: #444444 3px solid;
    /* Dark gray border */
    text-align: center;
}

header .logo {
    width: 100px;
    /* Adjust size as needed */
    height: auto;
    margin-bottom: 10px;
}

header h1 {
    margin: 0;
    padding: 0;
    font-size: 2.5em;
    color: #ffffff;
    /* White accent color */
}

header p {
    font-size: 1.1em;
}

.hero {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #333333;
    /* Dark gray accent */
    color: #fff;
    padding: 50px 0;
}

.hero h2 {
    font-size: 3em;
    margin-bottom: 20px;
    color: #ffffff;
}

.hero p {
    font-size: 1.3em;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    color: #1a1a1a;
    /* Dark text on button */
    background: #ffffff;
    /* White button */
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #cccccc;
    /* Lighter gray on hover */
}

.products {
    padding: 40px 0;
    text-align: center;
    background-color: #1a1a1a;
}

.products h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #ffffff;
}

.product-single {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-item {
    background: #222222;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    /* Limit width for a single product */
    width: 100%;
}

.product-item img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 15px;
    display: block;
    /* Ensure images stack vertically */
}

.product-item h3 {
    color: #f0f0f0;
    margin-bottom: 10px;
}

.product-item p {
    font-size: 0.95em;
    color: #b0b0b0;
}

.contact {
    padding: 40px 0;
    text-align: center;
    background: #333333;
    color: #fff;
}

.contact h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #ffffff;
}

.contact p {
    font-size: 1.1em;
    margin-bottom: 10px;
}

.contact a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
}

.contact a:hover {
    text-decoration: underline;
}

footer {
    background: #222222;
    color: #b0b0b0;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9em;
}