/* General Body and Font Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffeef2; /* Light pink background */
    color: #333;
}

/* Header Styles */
header {
    background-color: #ff99aa; /* A soft, warm pink */
    color: white;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

header .logo h1 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 600;
}

header nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 2rem;
}

header nav a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

header nav a:hover {
    color: #ffdeeb; /* Lighter pink on hover */
}

/* Main Content Styles */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Hero Section */
.hero-section {
    background-color: #ffc0cb; /* A classic pink */
    color: white;
    text-align: center;
    padding: 4rem 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.hero-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.cta-button {
    background-color: #e66465; /* A deeper, rosy pink */
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #d15657;
}

/* Features Section */
.features-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.feature {
    background-color: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.feature img {
    border-radius: 50%;
    margin-bottom: 1rem;
}

.feature h3 {
    color: #ff69b4; /* Hot pink */
    margin-bottom: 0.5rem;
}

/* Footer Styles */
footer {
    background-color: #ff99aa; /* Same as header for consistency */
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 2rem;
}

.footer-links a, .social-media a {
    color: white;
    text-decoration: none;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.footer-links a:hover, .social-media a:hover {
    color: #ffdeeb;
}

footer p {
    margin-top: 1rem;
    font-size: 0.9rem;
}