/* styles.css */
:root {
    --primary-color: #3498db;
    --secondary-color: #2c3e50;
    --text-color: #333;
    --background-color: #f4f4f4;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

.contact-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.5s ease-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

h1 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

h2 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.office, .email {
    flex-basis: calc(33.333% - 1rem);
    margin-bottom: 1rem;
    padding: 1rem;
    background-color: #f9f9f9;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.office:hover, .email:hover {
    transform: translateY(-5px);
}

.fas {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.maps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.map {
    flex-basis: calc(50% - 1rem);
    margin-bottom: 1rem;
}

iframe {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 5px;
}

@media screen and (max-width: 768px) {
    .contact-container {
        padding: 1rem;
    }

    .office, .email, .map {
        flex-basis: 100%;
    }
}