/* Contact Us Section */
.contact-us {
    background-color: #f5f5f5;
    padding: 40px 20px;
    border-radius: 10px;
}

.contact-us h2 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    MARGIN-TOP: 5%;
}

.illustration-img {
    max-width: 70%;
    border-radius: 10px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon {
    font-size: 20px;
    color: #555;
    transition: color 0.3s ease-in-out;
}

.social-icon:hover {
    color: #e63946;
}

.form-control, .form-select {
    border-radius: 5px;
    border: 1px solid #ddd;
}

.send-message-btn {
    background-color: #e63946;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    transition: background-color 0.3s ease-in-out;
}

.send-message-btn:hover {
    background-color: #d62828;
}

/* Mobile View Adjustments */
@media (max-width: 768px) {
    .illustration-img {
        max-width: 100%;
    }

    .contact-us h2 {
        font-size: 24px;
        margin-top: 19%;
    }

    

    .send-message-btn {
        font-size: 14px;
        padding: 8px 16px;
    }
}
