.contact-container {
    display: flex !important;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
    width: 100%;
    align-items: flex-start;
}

.contact-content {
    flex: 1;
    max-width: 50%;
    padding-right: 20px;
}

.contact-content h2 {
    color: #705c9b;
    margin-bottom: 1.5rem;
    margin-top: 0rem;
    font-size: 2em;

}

.contact-content h3 {
    color: #705c9b;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
    font-size: 1.5em;
}

.contact-content p {
    margin-bottom: 0.4rem;
    line-height: 1.6;
}

.contact-content a {
    color: #01689b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-content a:hover {
    color: #705c9b;
}

.contact-form {
    flex: 1;
    max-width: 50%;
    padding-left: 20px;
}

.button-wrapper {
    margin-top: 20px;
    display: flex;
    justify-content: flex-start;
}

.button-wrapper button[type="submit"] {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 200px;
    height: 50px;
    margin-top: 0.8rem;
    border: none;
    padding: 0 30px;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    color: white;
    background-color: #01689b;
    text-align: center;
    transition: background 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
    letter-spacing: 0.5px;
}

.button-wrapper button[type="submit"]:hover {
    background-color: #705A9D;
    color: white;
    text-decoration: none;
}

@media screen and (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        gap: 30px;
        padding: 20px;
    }

    .contact-content,
    .contact-form {
        max-width: 100%;
        padding: 0;
    }

    .contact-content h2 {
        font-size: 1.8em;
    }

    .contact-content h3 {
        font-size: 1.3em;
    }
}