/* Global settings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

header {
    text-align: center;
    padding: 40px;
    background-color: #f5f5f5;
}

header h1, header p {
    margin-bottom: 20px;
}

header img {
    width: 200px;
    border-radius: 8px;
}

/* Features section */
.features {
    display: flex;
    justify-content: space-around;
    padding: 20px 0;
    background-color: #f0f0f0;
}

.feature-item {
    width: 22%;
    padding: 20px;
    text-align: center;
    color: #fff;
    border-radius: 8px;
}

/* Feature item colors */
.feature-item:nth-child(1) { background-color: #ffd700; }
.feature-item:nth-child(2) { background-color: #ff69b4; }
.feature-item:nth-child(3) { background-color: #ff6347; }
.feature-item:nth-child(4) { background-color: #4682b4; }

/* Kids Loved section */
.loved-section {
    text-align: center;
    padding: 40px;
}

.image-grid {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.image-grid img {
    width: 200px;
    border-radius: 8px;
}

/* Services section */
.services {
    padding: 40px;
    text-align: center;
}

.service-items {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.service-item {
    width: 22%;
    padding: 20px;
    border-radius: 8px;
    color: #fff;
}

/* Service item colors */
.service-item:nth-child(1) { background-color: #ffd700; }
.service-item:nth-child(2) { background-color: #ff69b4; }
.service-item:nth-child(3) { background-color: #4682b4; }
.service-item:nth-child(4) { background-color: #32cd32; }

.service-item img {
    width: 50px;
    margin-bottom: 10px;
}

/* Enroll section */
.enroll {
    padding: 40px;
    text-align: center;
    background-color: #f0f0f0;
}

.enroll h2, .enroll p {
    margin-bottom: 20px;
}

/* Footer */
footer {
    background-color: #ff69b4;
    padding: 20px;
    text-align: center;
    color: #fff;
}

.footer-container {
    display: flex;
    justify-content: space-around;
}