/* Contact Block Styling */
.contact-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa; /* Light background */
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-left {
    width: 50%;
    padding-right: 20px;
}

.contact-left h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 10px;
}

.contact-left p {
    font-size: 16px;
    color: #666;
}

.contact-right {
    width: 50%;
    text-align: center;
}

/* Make sure the form fits well */
.contact-right form {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-block {
        flex-direction: column;
        text-align: center;
    }

    .contact-left,
    .contact-right {
        width: 100%;
        padding: 0;
    }
}
