
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-color: #f9f9f9; 
    color: #333;
}


header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); 
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #4CAF50; 
    transition: background-color 0.3s ease;
}


header .logo-container {
    display: flex;
    align-items: center;
    justify-content: flex-start; 
}


header .logo-container img {
    height: 50px;
    object-fit: contain;
    transition: transform 0.3s ease; 
}


header .logo-container img:hover {
    transform: scale(1.1);
}


nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 1.1rem; 
    text-transform: uppercase;
    transition: color 0.3s ease, transform 0.2s ease; 
}


nav a:hover {
    color: #4CAF50;
    transform: scale(1.05); 
}


.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    background-color: #e0f7e0;
    margin: 0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    flex-wrap: wrap;
}

.hero .text-content {
    max-width: 50%;
    padding-right: 30px;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: #006600;
}

.hero h1 .highlight {
    color: #4CAF50;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #555;
}

.hero button {
    padding: 12px 25px;
    background-color: #4CAF50;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.hero button:hover {
    background-color: #45a049;
    transform: scale(1.05);
}

.hero .hero-image img {
    max-width: 100%;
    border-radius: 8px;
    object-fit: cover; 
    margin-top: 20px;
}

.about {
    background-color: #ffffff;
    padding: 60px 20px;
    text-align: center;
}

.about .container {
    max-width: 800px;
    margin: 0 auto;
}

.about h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.about p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}


.cta {
    background-color: #4CAF50;
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta button {
    padding: 12px 30px;
    background-color: #006600;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta button:hover {
    background-color: #45a049;
    transform: scale(1.05);
}


footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

footer p {
    font-size: 1rem;
}


@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px; 
    }

    nav ul {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        text-align: center; 
    }

    nav a {
        font-size: 1rem; 
    

    .logo-container {
        margin-bottom: 20px; 
    }

    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero .text-content {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .hero .hero-image img {
        max-width: 80%;
        margin-top: 20px;
    }
}
}
