* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
.topnav {
    overflow: hidden;
    background-color: #ff6f91;
    padding: 10px 20px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.topnav a {
    float: left;
    display: block;
    color: #fff;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 18px;
    font-family: 'Pacifico', cursive;
}

.topnav a:hover {
    background-color: #ff99ac;
    color: white;
}

.topnav a.split {
    float: right;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    padding: 50px;
    background-color: #ffe6e6;
    border-radius: 20px;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    margin: 20px;
}

.contact-left {
    flex: 1;
    padding-right: 50px;
}

.contact-left-title h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ff6f91;
    font-family: 'Pacifico', cursive;
}

.contact-left hr {
    width: 60px;
    border: 2px solid #ff6f91;
    margin-bottom: 20px;
}

.contact-inputs {
    width: 100%;
    padding: 15px;
    margin: 15px 0;
    border: 1px solid #ff99ac;
    border-radius: 10px;
    font-size: 16px;
    background-color: #fff;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: border-color 0.3s ease;
}

.contact-inputs:focus {
    border-color: #ff6f91;
    outline: none;
}

button[type="submit"] {
    padding: 15px 30px;
    background-color: #ff6f91;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Pacifico', cursive;
}

button[type="submit"]:hover {
    background-color: #ff99ac;
}

button[type="submit"] img {
    margin-left: 10px;
    width: 16px;
}
.contact-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-right img {
    max-width: 80%;
    height: auto;
}

footer {
    background-color: #ff6f91;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 50px;
    font-size: 16px;
    font-family: 'Pacifico', cursive;
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-left {
        padding-right: 0;
    }

    .contact-right {
        margin-top: 30px;
    }
}
::-webkit-scrollbar{
    width: 10px;

}
::-webkit-scrollbar-track{
    background: #70813a;
}
::-webkit-scrollbar-thumb{
    background: linear-gradient(#b5639a, #a09dd2);
    border-radius: 10px;

}
