/* General Styles */
body {
    font-family: "Roboto", sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #F8FFEE;
}

a {
    text-decoration: none;
    color: #FFFFFF;
}

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

/* Header Styles */
.header {
    background-color: #4A693F;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo img {
    height: 40px;
    width: auto;
}

.hamburger-menu {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 30px;
}

.hamburger-menu img {
    width: 100%;
    height: 100%;
}

.nav {
    display: flex;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li a {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #C87551;
}

/* Hero Section */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 40px;
    background-color: #F8FFEE;
}

.hero-content {
    max-width: 50%;
}

.hero-content h1 {
    color: #4A693F;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-content p {
    color: #333;
    font-size: 20px;
    margin-bottom: 30px;
}

.cta-button {
    padding: 15px 30px;
    background-color: #4A693F;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 18px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #3b5331;
}

.hero-image {
    max-width: 45%;
}

/* Features Section */
.features-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #F8FFEE;
    border-bottom: 1px solid #33333390;
}

.features-section h2 {
    color: #4A693F;
    font-size: 36px;
    margin-bottom: 40px;
}

.features-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.feature-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    padding: 40px 20px;
    text-align: center;
    width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.feature-card h3 {
    color: #4A693F;
    font-size: 24px;
    margin-bottom: 15px;
}

.feature-card p {
    color: #333;
    font-size: 16px;
    line-height: 1.6;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* How It Works Section */
.how-it-works-section {
    padding: 60px 20px;
    background-color: #FFFFFF;
    text-align: center;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.instruction-group {
    margin-bottom: 40px;
}

.instruction-group h3 {
    color: #4A693F;
    font-size: 28px;
    margin-bottom: 20px;
}

.instruction-card {
    display: flex;
    align-items: center;
    border: 1px solid #4A693F;
    border-radius: 5px;
    padding: 15px;
    background-color: #F8FFEE;
    margin-bottom: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.instruction-card img {
    width: 24px;
    height: 24px;
    margin-right: 15px;
}

.instruction-card p {
    margin: 0;
    color: #333;
    font-size: 16px;
}

/* Footer Styles */
.footer {
    background-color: #F0F4F1;
    /* Soft, muted green */
    color: #333333;
    /* Dark gray text color for better readability */
    /* padding: 40px 20px; */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 40px;
    padding-left: 20px;
    padding-right: 20px;
}

.footer hr {
    border: 1px solid #C87551;
    width: 100%;
    margin: 20px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1200px;
}

.contact-info {
    max-width: 400px;
    margin-bottom: 20px;
}

.contact-info h2 {
    margin-bottom: 15px;
    color: #4A693F;
    /* Primary color for headings */
}

.contact-info p {
    margin: 10px 0;
    color: #333333;
    /* Dark gray text color */
}

.contact-info a {
    color: #C87551;
    /* Secondary color for links */
    text-decoration: none;
}

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

.map-container {
    max-width: 400px;
}

.map-container h2 {
    margin-bottom: 15px;
    color: #4A693F;
    /* Primary color for headings */
}

.footer .footer-logo {
    background-color: #F8FFEE;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .hero-image {
        max-width: 100%;
    }

    .nav {
        display: none;
        flex-direction: column;
        background-color: #4A693F;
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }

    .nav.active {
        display: flex;
    }

    .nav-links {
        flex-direction: column;
    }

    .nav-links li {
        padding: 15px 0;
    }

    .hamburger-menu {
        display: block;
        cursor: pointer;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-info,
    .map-container {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .map-container iframe {
        width: 100%;
    }
}