@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f7f9; 
    color: #333; 
    line-height: 1.6;
    margin: 0;
    padding: 20px;
}

header {
    background-color: #1ec95f;
    color: rgb(120, 77, 77);
    text-align: center;
    padding: 2.5rem 0;
    margin-bottom: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

header h1 {
    font-size: 2.5rem;
    margin: 0;
}

main {
    max-width: 900px;
    margin: auto;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

section {
    margin-bottom: 30px;
    border-left: 5px solid #93c62e;
    padding-left: 20px;
}

section h2 {
    color: #242a32;
    margin-top: 0;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 10px;
}

div h3 {
    color: #555;
    font-weight: 600;
}

img {
    max-width: 250px;
    height: auto;
    border-radius: 50%;
    border: 5px solid #33c65f;
    display: block;
    margin: 20px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

ul, ol {
    padding-left: 25px;
}

li {
    margin-bottom: 8px;
}

a {
    color: #29874c;
    text-decoration: none;
    font-weight: 600;
}

a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    font-size: 0.9em;
    color: #777;
}