/* Contact Form Section Styles */
.contact-form-section {
    background-color: #f9f9f9;
    padding: 60px 0;
    margin-top: 40px;
}

.contact-form-content {
    padding: 20px;
}

.contact-form-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.contact-form label {
    font-weight: 500;
    margin-bottom: 5px;
}

.contact-form .form-control {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 15px;
}

.contact-form textarea.form-control {
    min-height: 120px;
}

.contact-form button[type="submit"] {
    background-color: #333;
    color: white;
    font-weight: 600;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form button[type="submit"]:hover {
    background-color: #000;
    transform: translateY(-2px);
}

.contact-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.contact-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
