.contact-container {
    display: flex;
    min-height: 70vh;
    padding: 2rem;
}

.image-slider {
    flex: 1;
    padding: 1rem;
    position: relative;
    overflow: hidden;
}

.contact-form {
    flex: 1;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.slider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.5s ease;
}

.slider-image:hover {
    transform: scale(1.02);
}

.form-group {
    margin-bottom: 1.5rem;
}

.contact-info {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 3rem;
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

.info-item {
    text-align: center;
    padding: 1rem;
    flex: 1;
    min-width: 200px;
}

.info-item i {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }

    .image-slider,
    .contact-form {
        width: 100%;
    }
}