/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f7f7f7;
    
}

.header {
    background-color: #ffffff00;/*#009A46;*/
    color: #555555;
    text-align: center;
    padding: 20px 0;
    margin-bottom: 20px;
}

.header h1 {
    font-size: 2.5em;
    line-height: 1.2;
}

article {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

/* Section Styling */
section {
    margin-bottom: 40px;
}

section h2 {
    font-size: 2em;
    color: #333;
    margin-bottom: 15px;
    border-left: 5px solid #009A46;
    padding-left: 10px;
}

section p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.1em;
}

/* Unordered List Styling */
ul {
    list-style: disc;
    margin-left: 20px;
    padding-left: 10px;
}

ul li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

ol {
    list-style: decimal;
    margin-left: 20px;
    padding-left: 10px;
}

ol li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

/* Image Styling */
figure {
    margin: 20px 0;
    text-align: center;
}

figure img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

figure figcaption {
    font-style: italic;
    font-size: 0.9em;
    color: #666;
    margin-top: 8px;
}

/* Anchor Link Styling */
a {
    color: #009A46;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

a:hover {
    color: #006030;
}

/* Footer Styling */
footer {
    margin-top: 40px;
    text-align: center;
    font-size: 0.9em;
    color: #666;
    padding: 10px 0;
    border-top: 1px solid #ddd;
}

footer a {
    color: #009A46;
}

footer a:hover {
    color: #006030;
}

/* Button Styling */
button {
    background-color: #009A46;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #007938;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2em;
    }

    article {
        padding: 10px;
    }

    section h2 {
        font-size: 1.8em;
    }

    section p {
        font-size: 1em;
    }
}
