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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Navigation */
nav {
    background: white;
    padding: 1rem 5%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.menu-toggle {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
}

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

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #2d8659;
    text-decoration: underline;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8f5e9 100%);
    height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    min-height: 500px;
    position: relative;
}

.hero-left{
    padding: 0 5rem;
    display: flex;
    flex-direction: column;
    gap: 25px;

}

.hero-content{
    display: flex;
    justify-content: space-between;
}

.hero-content h1 {
    font-size: 4.5rem;
    color: #1a1a1a;
    line-height: 1.2;

}

.hero-content p {
    font-size: 1.8rem;
    color: #555;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 5px;
    font-size: 1.4rem;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: #2d8659;
    color: white;
}

.btn-primary:hover {
    background: #236b47;
    transform: translateY(-2px);
}

.btn-secondary {
    background: white;
    color: #ff9800;
    border: 2px solid #ff9800;
}

.btn-secondary:hover {
    background: #ff9800;
    color: white;
}

.hero-image {
    position: absolute;
    bottom: 0;
    right: 0;
}

.hero-image img {
    width: 50vw;
    transform: scaleX(-1);
}

/* About Section */
.about {
    padding: 5rem 5%;
    background: white;
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image {
    width: 70%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.about-text p {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.8;
    font-size: 18px;
}

/* Products Section */
.products {
    padding: 5rem 5%;
    background: #f9f9f9;
    margin-bottom: 5rem;
}

.product-description{
    display: none;
    font-size: 18px;
}

.product-card:hover .product-description{
    display: block;
}

.product-card:hover .product-icon{
    display: none;
}

.products h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 3rem));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.product-card {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    width: 250px;
    height: 250px;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.product-card h3 {
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

/* Delivery Section */
.delivery {
    padding: 5rem 5%;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('images/delivery.png');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

.delivery h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.delivery p {
    font-size: 1.6rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Location Section */
.location {
    padding: 5rem 5%;
    background: white;
}

.location h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.location-map {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 3rem;
    height: 400px;
    background: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.info-box {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 10px;
}

.info-box h3 {
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #ddd;
}

.info-item:last-child {
    border-bottom: none;
}

/* Contact Form */
.contact-form {
    padding: 5rem 5%;
    background: #f9f9f9;
}

.contact-form h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.btn-submit {
    width: 100%;
    background: #ff9800;
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
}

.btn-submit:hover {
    background: #f57c00;
}

/* Footer */
footer {
    background: #2d8659;
    color: white;
    text-align: center;
    padding: 2rem 5%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    nav ul {
        display: none;
        flex-direction: column;
        background-color: #fff;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        text-align: center;
        padding: 15px 0;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    nav ul.show {
        display: flex;
    }

    nav a {
        display: block;
        padding: 10px 0;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 3rem 5%;
    }

    .hero-left{
        padding: 0;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-image img{
        display: none;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-image{
        justify-self: center;
        width: 90%;
    }  

    nav ul {
        gap: 1rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .location-map {
        height: 300px;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .menu-toggle {
        display: block;
    }

    nav ul {
        display: none;
        flex-direction: column;
        background-color: #fff;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        text-align: center;
        padding: 15px 0;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    nav ul.show {
        display: flex;
    }

    nav a {
        display: block;
        padding: 10px 0;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        text-align: center;
    }

    .hero-content p{
        font-size: 1.5rem;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
        justify-content: center;
    }

    .btn {
        width: 100%;
        text-align: center;
        font-size: 1rem;
    }

    .products{
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    section h2 {
        font-size: 1.8rem;
    }

    .info-item{
        font-size: 13px;
    }

    .info-box{
        padding: 10px;
    }
}