body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f9f5f0;
    transition: background 0.3s ease-in-out;
}

.contact {
    text-align: center;
    padding: 40px 20px;
}

.contact-container {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: auto;
}

.contact-info, .contact-form {
    background: rgb(156, 226, 156);
    padding: 30px;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    width: 350px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.contact-info:hover, .contact-form:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.contact-form input, button {
    display: block;
    width: 100%;
    margin-top: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: border-color 0.3s ease-in-out;
}

.contact-form input:focus {
    border-color: #007BFF;
}

.contact-form button {
    background: rgb(247, 115, 115);
    color: white;
    border: none;
    cursor: pointer;
    padding: 10px 20px;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}

.contact-form button:hover {
    background: green;
    color: black;
}

.currency-switcher {
    position: fixed;
    top: 50%;
    right: 20px;
    display: flex;
    flex-direction: column;
}

.currency-switcher button {
    background: black;
    color: white;
    border: none;
    padding: 10px;
    margin: 5px;
    cursor: pointer;
    transition: background 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.currency-switcher button:hover {
    background: #333;
    transform: scale(1.1);
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
}

.whatsapp-button a {
    background: #25d366;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.whatsapp-button a:hover {
    background: #1ebe57;
    transform: scale(1.1);
}

footer {
    background: rgb(73, 190, 73);
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    transition: background 0.3s ease-in-out;
}

.footer-section {
    max-width: 300px;
    text-align: left;
    margin: 30px;
    transition: transform 0.3s ease-in-out;
}

.footer-section:hover {
    transform: translateY(-5px);
}

.footer-section h2 {
    margin-bottom: 10px;
    color: green;
    transition: color 0.3s ease-in-out;
}

.footer-section h2:hover {
    color: rgb(189, 80, 80);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin: 5px 0;
}

.footer-section ul li a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease-in-out;
}

.footer-section ul li a:hover {
    color: rgb(204, 80, 80);
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    text-decoration: none;
    font-size: 20px;
    transition: transform 0.3s ease-in-out;
}

.social-icons a:hover {
    transform: scale(1.2);
}

.address {
    font-style: normal;
    color: #333;
    transition: color 0.3s ease-in-out;
}

.address:hover {
    color: #007BFF;
}

.opening-hours {
    text-align: left;
    max-width: 400px;
    margin: 20px auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.opening-hours:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.opening-hours h2 {
    margin-bottom: 10px;
    padding: 10px;
    background: rgb(147, 243, 147);
    color: white;
    border-radius: 5px;
    text-align: center;
    transition: background 0.3s ease-in-out;
}

.opening-hours h2:hover {
    background: rgb(127, 223, 127);
}

.opening-hours p {
    margin: 10px 0;
    text-align: center;
    padding: 10px;
    background: rgb(230, 227, 227);
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
}

.opening-hours p:hover {
    background: rgb(210, 207, 207);
}

