/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
}

/* Header */
.header {
    background-color: #2a5a44;
    padding: 20px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .logo img {
    width: 150px;
}

.navbar ul {
    list-style: none;
    display: flex;
}

.navbar ul li {
    margin: 0 15px;
}

.navbar ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.navbar ul li a:hover {
    color: #a1d5b2;
}

/* Hero Section */
.hero {
    background-image: url('hero-image.jpg'); /* Hero image path */
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.btn {
    background-color: #a1d5b2;
    color: #2a5a44;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.btn:hover {
    background-color: #7aa184;
}

/* Product Section */
.products {
    padding: 40px 20px;
    text-align: center;
}

.products h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2a5a44;
}

.product-cards {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.card {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 250px;
    text-align: center;
}

.card img {
    width: 100%;
    border-radius: 8px;
    height: 200px;
    object-fit: cover;
}

.card h3 {
    font-size: 1.5rem;
    margin: 10px 0;
}

.card p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
}

.card .btn {
    background-color: #2a5a44;
    color: white;
}

/* Footer Section */
.footer {
    background-color: #2a5a44;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}
