body {
    font-family: 'Verdana', sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: #8b6806;
    color: #fff;
    text-align: center;
    padding: 1em;
}

nav {
    display: flex;
    justify-content: center;
    margin-bottom: 1em;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

nav li {
    display: inline;
    margin: 0 15px;
}

nav a {
    text-decoration: none;
    color: #fff;
}

.hero-section {
    position: relative;
}

.hero-section img {
    width: 100%;
    height: 600px;
}

.hero-text {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.1);
}

footer {
    background-color: #8b6806;
    color: #fff;
    text-align: center;
    padding: 1em;
    height: 100px;
    margin-top: -5px;
}

/*****************************************
                Features.html
******************************************/

.features-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.feature {
    text-align: center;
    width: 30%; 
    margin: 20px;
    border: 2px solid #8b6806;
    border-radius: 10px;
    padding: 10px;
}

.feature-img {
    width: 100%;
    max-width: 150px;
    height: 50%;
}

@media only screen and (max-width: 768px) {
    .feature {
        width: 100%;
    }

    .feature-img {
        height: auto;
    }
}


/*****************************************
                Buy.html
******************************************/

.buy-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-start;
}

.product {
    text-align: center;
    margin: 20px;
    max-width: 300px;
}

.product-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border: 1px solid #ccc;
    border-radius: 5px;
}



.buy-options {
    margin-top: 10px;
}

label {
    display: block;
    margin-bottom: 5px;
}

input, select {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    box-sizing: border-box;
}

button.buy-button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button.buy-button:hover {
    background-color: #45a049;
}