/* General reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    background: linear-gradient(to bottom, #4CAF50, #2C6E2D); /* Honey dark green gradient */
    color: #fff;
    line-height: 1.6;
}

/* Header styling */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    background-color: #4CAF50;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.logo a {
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
}
.menu ul {
    display: flex;
    list-style: none;
}
.menu ul li {
    margin-left: 2rem;
}
.menu ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}
.menu ul li a:hover {
    color: #FFD700;
}
.hamburger {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}

/* Hero Section */
#hero {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 6rem 2rem;
    background: linear-gradient(to bottom, #2C6E2D, #1B4D36);
    color: #fff;
}
.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}
.cta-button {
    background-color: #FFD700;
    color: #2C6E2D;
    padding: 0.8rem 1.5rem;
    font-size: 1.2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease;
}
.cta-button:hover {
    background-color: #FFCC00;
}

/* Section Styling */
.content-section {
    padding: 2rem;
    background-color: #2C6E2D;
    color: #FFD700;
    text-align: center;
    margin: 2rem 0;
}
.section-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}
.section-content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Card Styling */
.card {
    background-color: #1B4D36;
    border-radius: 8px;
    padding: 2rem;
    width: 300px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #FFD700;
}
.card p {
    font-size: 1rem;
}
.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.3);
}

/* Footer Styling */
footer {
    background-color: #1B4D36;
    color: #fff;
    padding: 1rem;
    text-align: center;
    margin-top: 2rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .menu ul {
        display: none;
        flex-direction: column;
        background-color: #4CAF50;
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
    }
    .menu ul.active {
        display: flex;
    }
    .hamburger {
        display: block;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content p {
        font-size: 1.1rem;
    }
    .section-content {
        flex-direction: column;
        gap: 2rem;
    }
    .card {
        width: 100%;
        margin-bottom: 1.5rem;
    }
}
.logo img {
    height: 60px; /* Adjust this value as per your requirement */
    width: auto; /* Ensures the image maintains its aspect ratio */
}

