* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    background-color: #f4f7f2;
    color: #1f2d24;
}

header {
    background-color: #1f5c3b;
    color: white;
    padding: 20px;
    text-align: center;
}

header h1 {
    margin-bottom: 15px;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

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

.hero {
    background-color: #dfead8;
    text-align: center;
    padding: 70px 20px;
}

.hero h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.hero p {
    max-width: 700px;
    margin: 0 auto 20px;
}

button {
    background-color: #2f7d4f;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
}

button:hover,
button:focus {
    background-color: #245f3d;
}

section {
    padding: 40px 20px;
}

section h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #1f5c3b;
}

.about-preview p {
    max-width: 800px;
    margin: auto;
    text-align: center;
}

.service-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.service-card {
    background-color: white;
    padding: 25px;
    width: 280px;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
}

.service-card h3 {
    color: #1f5c3b;
    margin-bottom: 10px;
}

footer {
    background-color: #1f5c3b;
    color: white;
    text-align: center;
    padding: 20px;
}

/* Mobile design */
@media (max-width: 600px) {
    .hero h2 {
        font-size: 1.5rem;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
    }

    .service-card {
        width: 100%;
    }
}
table {
    width: 80%;
    margin: 20px auto;
    border-collapse: collapse;
    background-color: white;
}

th,
td {
    border: 1px solid #c8d6c1;
    padding: 12px;
    text-align: left;
}

th {
    background-color: #1f5c3b;
    color: white;
}
form {
    max-width: 600px;
    margin: 20px auto;
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
}

form label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
    color: #1f5c3b;
}

form input,
form textarea,
form select {
    width: 100%;
    padding: 10px;
    margin-top: 6px;
    border: 1px solid #9fb8a8;
    border-radius: 5px;
    font-size: 1rem;
}

form button {
    margin-top: 20px;
}
.gallery-image {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}
#productImageBox {
    text-align: center;
    margin: 25px auto;
}

.product-image {
    width: 350px;
    max-width: 90%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}