* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: #F1E9DA;
    /* Light Beige background */
    color: #2E294E;
    /* Dark Purple text */
    line-height: 1.6;
}

header {
    background: #541388;
    /* Purple */
    padding: 1rem;
    border-bottom: 1px solid #D90368;
    /* Magenta border */
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
}

.logo {
    font-size: 2rem;
    /* Increased size for better prominence */
    font-weight: bold;
    color: #fff;
}

nav {
    display: none;
    /* Hidden by default for mobile */
}

nav a {
    margin-left: 1rem;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 1rem;
}

.hero {
    display: block;
    padding: 3rem 1rem;
    background: #D90368;
    /* Magenta for Hero Section */
    text-align: center;
    border-radius: 0 0 20px 20px;
}

.hero-text {
    max-width: 100%;
    color: #fff;
}

.hero-text h1 {
    font-size: 3rem;
    /* Increased size for headline */
    font-weight: bold;
    margin-bottom: 1rem;
}

.hero-text p {
    font-size: 1.2rem;
    /* Slightly larger text for readability */
    margin-bottom: 2rem;
}

.hero-img img {
    width: 100%;
    border-radius: 12px;
    margin-top: 1rem;
}

.cta-button {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.8rem 1.6rem;
    background: #FFD400;
    /* Yellow */
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
}

.features {
    padding: 3rem 1rem;
    background: #F1E9DA;
    /* Light Beige Background */
    text-align: center;
}

.features h2 {
    font-size: 2.5rem;
    /* Larger heading */
    font-weight: 600;
    color: #541388;
    /* Purple color for contrast */
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.feature-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.contact {
    padding: 2rem;
    background: #FFD400;
    /* Yellow Background */
    text-align: center;
    border-radius: 20px;
}

.contact h2 {
    font-size: 2.2rem;
    /* Larger text for heading */
    font-weight: 600;
    color: #541388;
    /* Purple */
}

.contact a {
    display: inline-block;
    margin-top: 1rem;
    padding: 1rem 2rem;
    background: #541388;
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 5px;
}

footer {
    padding: 1rem;
    text-align: center;
    background: #2E294E;
    /* Dark Purple */
}

footer p {
    color: #fff;
}

@media (min-width: 768px) {
    nav {
        display: block;
    }

    .feature-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 2rem;
    }

    .hero-text {
        max-width: 50%;
    }

    .hero-img img {
        max-width: 350px;
    }
}

@media (min-width: 1024px) {
    .hero {
        padding: 3rem;
    }

    .feature-grid {
        gap: 2rem;
    }
}