/* 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: 0;
    margin: 0;
}

.section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    padding: 40px;
    color: #fff;
    text-align: center;
}

.section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
}

.section p, .section ul {
    font-size: 1.2em;
    line-height: 1.6em;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
}

.section ul {
    list-style: none;
    padding: 0;
}

.section ul li {
    margin-bottom: 10px;
}

.section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.section-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.section-bg {
    background-size: cover;
    background-position: center;
}

.section.bg-classes {
    background-image: url('../Images/Classes.jpg');
}

.section.bg-tutoring {
    background-image: url('../Images/Tutoring.jpg');
}

.section.bg-prekindy {
    background-image: url('../Images/Pre-Kindy.jpg');
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
    transition: background-color 0.3s;
}

@media (max-width: 768px) {
    .section h2 {
        font-size: 2em;
    }

    .section p, .section ul {
        font-size: 1em;
    }
}