* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

body {
    background-color: #FCEBEB;
}

nav {
    display: flex;
    height: 80px;
    background: #FCEBEB;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    flex-wrap: wrap;
}

nav a {
    background-color: #E95273;
    padding: 1rem 2rem;
    color: white;
    text-decoration: none;
    border-radius: 100px;
    margin-right: 200px; 
    font-weight: bold;
}

.hero-logo {
    margin-top: 10px;
    width: 170px;
    height: 75px;
}

.hero {
    background-color: #FCEBEB;
    padding: 5rem;
    display: flex;
    justify-content: center;
}

.content-container {
    display: flex;
    gap: 2rem;
}

.hero-container {
    position: relative;
    width: 70%;
    max-width: 700px;
}

.slider {
    position: relative;
    width: 100%;
}

.slide {
    display: none;
    padding: 20px;
    text-align: left;
    background-color: white;
    border-radius: 10px;
    margin-bottom: 20px;
    min-height: 300px;
}

.slider-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    height: 15px;
    width: 15px;
    background-color: #0e0303;
    border-radius: 50%;
    cursor: pointer;
}

.active, .dot:hover {
    background-color: #E95273;
}

.form-container {
    width: 300px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

form label {
    font-weight: bold;
    margin-bottom: 5px;
}

form input, form select, form button {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 1px solid #FCEBEB;
}

form button {
    background-color: #E95273;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

form button:hover {
    background-color: #d14565;
}

.footer {
    background: #FCEBEB;
    padding: 2rem;
    text-align: left;
    width: 100%;
    margin-top: 0;
}

.footer-content {
    display: flex;
    justify-content: flex-start;
    gap: 2rem;
}

@media screen and (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    nav {
        flex-direction: column;
        align-items: flex-start;
    }

    nav a {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .colum-left h1 {
        font-size: 2rem;
    }

    .colum-left p {
        font-size: 1rem;
    }

    .hero-image {
        width: 100%;
    }
}

.hidden {
    display: none;
}

#thankYouBanner {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #E95273;
    color: white;
    padding: 20px 40px;
    border-radius: 10px;
    font-size: 1.5rem;
    z-index: 1000;
    animation: fadeOut 4s forwards;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.confetti {
    position: fixed;
    width: 10px;
    height: 10px;
    background-color: #E95273;
    top: -10px;
    animation: fall 4s linear infinite;
}

@keyframes fall {
    0% {
        opacity: 1;
        transform: translateY(0) rotate(0);
    }
    100% {
        opacity: 0;
        transform: translateY(100vh) rotate(360deg);
    }
}
