
.contact-section {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    padding: 50px 20px;
    background-color: #f7f7f7;
    padding-top: 14%;
}



.contact-info {
    width: 40%;
}

.contact-info h1 {
    font-size: 36px;
    color: #333;
}

.contact-info p {
    margin: 15px 0;
    font-size: 18px;
    line-height: 1.6;
}

.contact-info a {
    color: #800080;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #9932CC;
}

.contact-form {
    width: 40%;
    padding-top: 11%;
}

@media (max-width: 800px) {
    .contact-form{
        padding-top: 15%;
    }
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    font-size: 14px;
    margin-bottom: 5px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

.form-group textarea {
    resize: vertical;
    height: 100px;
}

.send-button {
    padding: 15px;
    border: none;
    border-radius: 5px;
    background-color: #800080;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.send-button:hover {
    background-color: #9932CC;
}

.map-section {
    padding: 0 20px;
}

