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

body {
    font-family: Arial, sans-serif;
    color: #333;
}

nav {
    position: sticky;
    top: 0;
    display: flex;
    justify-content: space-around;
    padding: 1.5em 2em;
    background-color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid #ddd;
    z-index: 100;
}

.nav-links a {
    font-size: 1.1em;
    font-weight: bold;
    color: #666;
    padding: 0.5em 1em;
    border-radius: 25px;
    text-decoration: none;
}

.nav-links a:hover {
    color: #e91e63;
    background-color: #ffeef7;
}

.banner {
    background-color: #ffeef7;
    padding: 4em 2em;
}

.banner-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2em;
    max-width: 1200px;
    margin: 0 auto;
}

.banner-text h1 {
    font-size: 3.5em;
    color: #2c2c2c;
    margin-bottom: 0.5em;
}

.banner-text p {
    font-size: 1.3em;
    color: #666;
    margin-bottom: 2em;
}

#banner-btn {
    background-color: #e91e63;
    color: white;
    border: none;
    border-radius: 30px;
    padding: 1em 2.5em;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
}

#banner-btn:hover {
    background-color: #c2185b;
}

.banner-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
}

.features {
    padding: 5em 2em;
    background-color: #fafafa;
}

.features h2 {
    text-align: center;
    margin-bottom: 1em;
    font-size: 3em;
    color: #2c2c2c;
}

.card-container {
    display: flex;
    justify-content: space-around;
    padding: 2em;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background-color: white;
    padding: 2.5em 2em;
    margin: 1em;
    border-radius: 20px;
    text-align: center;
    width: 30%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.card i {
    font-size: 3em;
    color: #e91e63;
    margin-bottom: 1em;
}

.card h3 {
    font-size: 1.5em;
    color: #2c2c2c;
    margin-bottom: 1em;
}

.card p {
    color: #666;
}
footer {
    background-color: #2c2c2c;
    color: white;
    padding: 3em 2em;
}

footer a {
    text-decoration: none;
    color: inherit;
    background: none;
}

footer a:hover{
    text-shadow: #fff;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 2em auto;
}

footer i {
    margin-right: 0.5em;
    color: #e91e63;
}

footer p {
    text-align: center;
    color: #ccc;
    margin-top: 2em;
}

footer p i {
    color: #e91e63;
}

.social-media {
    line-height: 2;
}

@media screen and (max-width: 768px) {
    nav {
        padding: 1em;
    }

    .nav-links a {
        font-size: 1em;
        padding: 0.4em 0.8em;
    }

    .banner {
        padding: 2em 1em;
    }

    .banner-text {
        flex-direction: column;
        text-align: center;
        padding: 1em;
    }

    .banner-text h1 {
        font-size: 2.5em;
    }

    .banner-text p {
        font-size: 1.1em;
    }

    .banner-image img {
        height: 200px;
    }

    .features h2 {
        font-size: 2.5em;
    }

    .card-container {
        flex-direction: column;
        align-items: center;
        padding: 1em;
    }

    .card {
        width: 90%;
        margin-bottom: 1.5em;
        padding: 2em 1.5em;
    }

    .contact-container {
        flex-direction: column;
        gap: 2em;
    }

    footer {
        padding: 2em 1em;
    }

}