.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.container p {
    text-align: center;
    margin-bottom: 40px;
    color: #555;
    font-size: 18px;
}

.contact-card, .contact-form, .map-container, .hours-container {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.contact-card h2, .contact-form h3, .hours-container h3, .map-container h3 {
    margin-bottom: 20px;
    color: #333;
    text-align: center;
    font-size: 24px;
}

.contact-card:hover, .contact-form:hover, .map-container:hover, .hours-container:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.contact-info {
    list-style-type: none;
    padding: 0;
    text-align: center;
}

.contact-info li {
    margin-bottom: 10px;
    font-size: 18px;
    color: #333;
}

.contact-info li i {
    margin-right: 8px;
    color: #007bff;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    max-width: 500px;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.contact-form input:focus, .contact-form textarea:focus {
    border-color: #007bff;
    outline: none;
}

.contact-form button {
    padding: 12px 25px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-form button:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: 0;
    border-radius: 8px;
}

.social-media {
    text-align: center;
    margin-top: 20px;
}

.social-media a {
    margin: 0 10px;
    color: #007bff;
    font-size: 20px;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-media a:hover {
    color: #0056b3;
    transform: scale(1.1);
}

.hours-container ul {
    list-style-type: none;
    padding: 0;
    text-align: center;
    font-size: 18px;
}

@media (max-width: 768px) {
    .contact-form input, .contact-form textarea {
        max-width: 100%;
    }
}
