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

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

/* Utilities */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #8da35c; /* Nature Green */
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.btn:hover {
    background-color: #6e8046;
}

.responsive-img {
    max-width: 100%;
    height: auto;
}

/* Header */
header {
    background: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #8da35c;
    text-transform: uppercase;
    letter-spacing: 2px;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
}

nav ul li a:hover {
    color: #8da35c;
}

/* Hero Section */
.hero {
    background-color: #e8e4dc; /* Flax/Beige tone */
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.hero h2 {
    font-size: 1.5rem;
    color: #8da35c;
    margin-bottom: 20px;
    font-weight: 400;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Sections General */
section {
    padding: 60px 0;
}

.section-light {
    background-color: #fff;
}

.section-dark {
    background-color: #f4f4f4;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #2c3e50;
}

/* About Intro */
.intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.intro-text h3 {
    margin-bottom: 15px;
    color: #2c3e50;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

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

.benefit-card i {
    font-size: 2.5rem;
    color: #8da35c;
    margin-bottom: 20px;
}

.benefit-card h4 {
    margin-bottom: 10px;
    color: #333;
}

/* Packaging */
.packaging-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.pack-item {
    background: #e8e4dc;
    padding: 40px;
    border-radius: 8px;
    width: 300px;
    text-align: center;
    border: 2px solid #dcd6c9;
}

.pack-item h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: #fff;
    padding: 50px 0 20px;
    text-align: center;
}

.contact-info h3 {
    margin-bottom: 20px;
    color: #8da35c;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-info a {
    color: #fff;
    text-decoration: none;
}

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

.copyright {
    margin-top: 40px;
    font-size: 0.9rem;
    color: #aaa;
    border-top: 1px solid #3d5266;
    padding-top: 20px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    header .container {
        flex-direction: column;
    }
    
    nav ul {
        margin-top: 15px;
    }

    <!-- START of IMAGE OVERLAY - Position Text Over an Image -->

    /* Container holding the image and the text */
    .container-overlay-img {
    position: relative;
    text-align: center;
    color: white;
    }

    /* Bottom left text */
    .overlay-img-bottom-left {
    position: absolute;
    bottom: 8px;
    left: 16px;
    }

    /* Top left text */
    .overlay-img-top-left {
    position: absolute;
    top: 8px;
    left: 16px;
    }

    /* Top right text */
    .overlay-img-top-right {
    position: absolute;
    top: 8px;
    right: 16px;
    }

    /* Bottom right text */
    .overlay-img-bottom-right {
    position: absolute;
    bottom: 8px;
    right: 16px;
    }

    /* Centered text */
    .overlay-img-centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    }

    <!-- END of IMAGE OVERLAY - Position Text Over an Image -->


}