*{
    margin: 0px;
    padding: 0px;
    color: rgb(5, 33, 23);
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f7f4;
    color: #2e4d36;
    line-height: 1.6;
   padding-left: 25px;
   padding-right: 25px;
}


header {
    background-color: #2e8b57;
    color: white;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

header h1 {
    margin: 0;
    font-size: 2.5em;
}


nav {
    background-color: #3c6e47;
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}


section {
    padding: 40px 20px;
    max-width: 1000px;
    margin: auto;
}

section h2 {
    color: #2e8b57;
}


button {
    background-color: #4CAF50;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #45a049;
}


img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}


footer {
    background-color: #2e8b57;
    color: white;
    text-align: center;
    padding: 15px 0;
    margin-top: 40px;
}


@media (max-width: 768px) {
    nav {
        flex-direction: column;
    }

    nav a {
        margin: 10px 0;
    }
}
h2 {
    color: #2e7d32; 
    font-weight: 700;
    font-size: 2rem;
    border-bottom: 2px solid #a5d6a7;
    padding-bottom: 6px;
    margin-bottom: 20px;
}


h3 {
    color: #388e3c;
    font-weight: 600;
    font-size: 1.5rem;
    margin-top: 25px;
    margin-bottom: 15px;
}


h4 {
    color: #4caf50;
    font-weight: 500;
    font-size: 1.25rem;
    margin-bottom: 12px;
}
strong {
    color: #1b5e20; 
    font-weight: 700;
    background-color: #e8f5e9; 
    padding: 2px 6px;
    border-radius: 4px;
}
ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    color: #2e4d36;
    list-style-type: decimal;
}


li {
    margin-bottom: 8px;
    line-height: 1.6;
    color: #1b5e20;
}


ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    color: #2e4d36;
    list-style-type: disc;
}