body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f8ff; /* AliceBlue */
    color: #333;
    line-height: 1.6;
}

header {
    background: linear-gradient(135deg, #74b9ff, #a29bfe);
    color: white;
    padding: 3rem 1.5rem;
    text-align: center;
    border-bottom-left-radius: 50% 20%;
    border-bottom-right-radius: 50% 20%;
}

header h1 {
    margin: 0;
    font-size: 3.5rem;
    font-weight: 700;
}

.subtitle {
    font-size: 1.2rem;
    margin-top: 0.5rem;
    font-weight: 400;
}

main {
    padding: 2rem 1rem;
}

.info-banner {
    background-color: #e0f7fa; /* Light cyan */
    border: 1px solid #00cec9; /* Teal */
    padding: 1rem;
    border-radius: 15px;
    text-align: center;
    margin: 1.5rem auto;
    max-width: 800px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.info-banner p {
    margin: 0;
    font-size: 1.1rem;
}

.info-banner a {
    color: #007bff;
    font-weight: 600;
    text-decoration: none;
}

.info-banner a:hover {
    text-decoration: underline;
}

section {
    background-color: white;
    margin: 1.5rem auto;
    padding: 2rem;
    border-radius: 20px;
    max-width: 800px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

h2 {
    color: #fd79a8; /* Pink */
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

footer {
    background-color: #34495e;
    color: white;
    padding: 2rem 1rem;
    margin-top: 2rem;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.creche-info {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    text-align: left;
    padding: 1.5rem;
    background-color: #4a627a;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.creche-info:hover {
    transform: translateY(-5px);
}


.creche-info h3 {
    color: #fd79a8;
    font-size: 1.3rem;
    margin-top: 0;
    margin-bottom: 1rem;
    border-bottom: 2px solid #fd79a8;
    padding-bottom: 0.5rem;
}

.creche-info p {
    margin: 0.5rem 0;
    line-height: 1.5;
    font-size: 0.9rem;
}

.creche-info a {
    color: #74b9ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.creche-info a:hover {
    color: #a29bfe;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.5rem;
    }
    .subtitle {
        font-size: 1rem;
    }
    section, .info-banner {
        padding: 1.5rem;
    }
    h2 {
        font-size: 1.8rem;
    }
    footer {
        flex-direction: column;
        align-items: center;
    }
}
