
.activities-section {
    background-color: rgba(255, 255, 255, 0.9); /* Light background for the activities section */
    border-radius: 10px; /* Rounded corners */
    padding: 20px; /* Padding for the activities section */
    max-width: 1200px; /* Ensure it does not exceed this width */
    margin: 20px auto; /* Center it horizontally */
}

.activities-section img {
    /* width: 90%; Increase the size by adjusting the percentage */
    height: auto;
    border-radius: 10px;
    display: block;
    margin: 0 auto; /* This centers the image horizontally */
}

.activities-list {
    display: flex;
    justify-content: space-between; /* Ensures space between both lists */
    margin-top: 20px;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.activities-list ul {
    list-style: none;
    padding: 0;
    width: 45%; /* Each list will take up 45% of the container width */
    text-align: left; /* Align the text to the left side */
}

.activities-list ul li {
    margin: 10px 0;
}

.gallery-section {
    background-color: rgba(255, 255, 255, 0.9); /* Light background for the gallery section */
    border-radius: 10px; /* Rounded corners */
    padding: 20px; /* Padding for the gallery section */
    margin-top: 20px; /* Margin above the gallery section */
}

.gallery-section h2 {
    text-align: center; /* Center the title of the gallery section */
}

.gallery-section .row {
    display: flex; /* Use flexbox for responsive layout */
    flex-wrap: wrap; /* Allow items to wrap to the next line */
}

.gallery-section img {
    width: 100%; /* Ensure images are responsive */
    height: auto; /* Maintain aspect ratio */
    border-radius: 5px; /* Rounded corners for images */
}

@media (max-width: 768px) {
    /* Stack the lists vertically on smaller screens */
    .activities-list {
        flex-direction: column;
        align-items: flex-start; /* Align items to the left */
    }

    .activities-list ul {
        width: 100%;
        text-align: center; /* Center the text on smaller screens */
    }

    .gallery-section .row {
        flex-direction: column; /* Stack images vertically on smaller screens */
    }
}
