/* Global Styles */
body {
    font-family: 'sans-serif', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
    scroll-behavior: smooth;
    transition: background-color 0.3s, color 0.3s;
}

.container {
    padding: 20px;
    background-color: #cdb4db;
}

.section {
    background: #fff;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
    margin-top: 117px;
    background-color: #ffc8dd;
}

.section h2 {
    margin-top: 0;
}

.section p {
    margin: 10px 0;
    line-height: 1.6;
}

.section ul {
    margin: 10px 0;
    padding-left: 20px;
}

.section ul li {
    margin: 5px 0;
}

.image-container {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.image-container img {
    width: 48%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
    transition: background-color 0.3s;
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 10px;
    }

    .image-container {
        flex-direction: column;
    }

    .image-container img {
        width: 100%;
        margin-bottom: 10px;
    }
}