body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

footer {
    position: relative;
    background-color: #333;
    color: white;
    padding: 40px 0 20px 0;
    overflow: hidden;
}

.footer-wave {
    position: absolute;
   /* top : 0;
    bottom: 0;*/
    
    left: 0;
    width: 100%;
    height: 100px;
    overflow: hidden;
    z-index: 0;
}

.footer-wave svg {
    width: 100%;
    height: 100px;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateY(100);
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: auto;
    position: relative;
    z-index: 1;
    padding: 0 20px;
    box-sizing: border-box;
}

.footer-left, .footer-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 20px;
}

.footer-left {
    align-items: center;
    text-align: center;
}

.footer-right {
    align-items: center;
    text-align: center;
}

.footer-right h3 {
    margin-bottom: 10px;
}

.social-media {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.social-media a {
    margin: 0 10px;
    text-decoration: none;
    font-size: 24px;
    color: white;
    transition: transform 0.3s ease;
}

.social-media a:hover {
    transform: translateY(-10px);
}

.form-group {
    width: 100%;
    margin-bottom: 10px;
}

.contact-us input,
.contact-us textarea {
    padding: 10px;
    width: 150%;
    border: none;
    border-radius: 50px;
    box-sizing: border-box;
}

.contact-us button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #555;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-us button:hover {
    background-color: #777;
}

#success-message {
    margin-top: 10px;
    text-align: center;
}

@media (max-width: 1440px) {
    .footer-container {
        padding: 0 20px;
    }
}

@media (max-width: 1024px) {
    .footer-container {
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-left, .footer-right {
        width: 100%;
    }
}

@media (max-width: 425px) {
    .footer-container {
        padding: 0 10px;
    }
}

@media (max-width: 320px) {
    .footer-container {
        padding: 0 5px;
    }

    .social-media a {
        font-size: 20px;
    }
}
