/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Trebuchet MS, sans-serif;
    line-height: 1.6;
    background-color: #fdfdfd;
    color: #333;
}


header {
    background-color: #F297B1;
    color: #333;
    text-align: center;
    padding: 0px 0;
}


header h1 {
    font-size: 2.2em;
}

header p {
    font-size: 1.1em;
    color: #444;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    background-color: #EC6F92;
}

nav ul li {
    margin: 0 10px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    padding: 10px 15px;
    display: block;
}

nav ul li a:hover,
nav ul li a.active {
    background-color: #BD5775;
    border-radius: 5px;
}


.hero {
    background: url('images/daycare-hero.jpg') center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
}

.hero-content {
    background: rgba(0, 0, 0, 0.4);
    display: inline-block;
    padding: 20px 30px;
    border-radius: 10px;
}

.hero h2 {
    font-size: 2em;
    margin-bottom: 10px;
}

.hero p {
    margin-bottom: 15px;
}

.logo {
	width: 250px;
	height: auto;
	border-radius: 10px;
	
}

.btn {
    background-color: #ff6666;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
}

.btn:hover {
    background-color: #ff3333;
}


.intro {
    text-align: center;
    padding: 40px 20px;
    background-color: #fff5f5;
}

.intro h2 {
    margin-bottom: 10px;
}

/* Features Section */
.features {
    padding: 50px 20px;
    text-align: center;
}

.feature-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.feature {
    background-color: #ffe5e5;
    border-radius: 10px;
    width: 300px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.feature img {
    width: 100%;
    border-radius: 10px;
}

.feature h3 {
    margin: 10px 0;
}

/* Call-to-Action Section */
.cta {
    background-color: #EC6F92;
;
    color: white;
    text-align: center;
    padding: 40px 20px;
}

.cta h2 {
    margin-bottom: 10px;
}

footer {
    background-color: #F297B1;
    color: #fff;
    text-align: center;
    padding: 15px 0;
    font-size: 0.9em;
}


.left-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    padding: 10px 20px;
}

.header-banner {
    width: 100%;
    height: auto;
    display: block;
}
