body {
    font-family: 'Georgia', serif;
    background-color: #4A5F2D;
    color: #FFFFFF;
    margin: 0;
    padding: 0;
}

header {
    background-image: url('header.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    text-align: center;
    height: 850px;
}

header h1 {
    font-size: 3em;
    text-shadow: 2px 2px 5px #000;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
}

main {
    max-width: 800px;
    margin: 20px auto;
    background-color: #4A5F2D;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

h1 {
    font-size: 2em;
    margin: 0;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

li {
    margin: 15px 0;
    padding: 15px;
    background-color: #4A5F2D;
    border-left: 6px solid #425124;
    border-radius: 6px;
    transition: transform 0.2s;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

li:hover {
    transform: scale(1.05);
}

li img {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    border-radius: 50%;
    border: 2px solid #425124;
    flex-shrink: 0;
}

a {
    text-decoration: none;
    color: #FFFFFF;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

section {
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    max-width: 1600px;
    margin: 40px auto;
    gap: 30px;
}

.aside-left {
    flex: 1;
    max-width: 35%;
    text-align: center;
    background-color: #6A7B4F;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.aside-left p {
    line-height: 1.6;
}

.middle-section {
    flex: 3;
    max-width: 85%;
    background-color: #6A7B4F;
    padding: 10px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    margin: 0 20px;
}

.middle-section p {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9em;
    color: #ccc;
}

.aside-right {
    flex: 1;
    text-align: center;
    background-color: #6A7B4F;
    padding: 20px 20px 20px 5px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.aside-right ol {
    padding-left: 20px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    section {
        display: flex;
        justify-content: space-evenly;
        align-items: flex-start;
        max-width: 1600px;
        margin: 40px auto;
        gap: 30px;
        flex-wrap: wrap;
    }

    aside,
    section > div {
        background-color: #6A7B4F;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        text-align: center;
    }

    aside ol {
        padding-left: 20px;
    }

    header {
        height: 300px;
    }

    header h1 {
        font-size: 2em;
        padding: 20px;
    }

    section {
        flex-direction: column;
        gap: 20px;
        padding: 0 10px;
    }

    aside,
    section > div {
        max-width: 100% !important;
        margin: 0 auto;
    }

    li {
        flex-direction: column;
        align-items: flex-start;
    }

    li img {
        margin-bottom: 10px;
        margin-right: 0;
    }

    .middle-section {
        margin: 0;
    }
}
