.contact-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Arial', sans-serif;
    color: #333;
    background-color: rgba(205, 239, 238, 0.8);
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 40px;
    max-width: 800px;
    margin: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.contact-title {
    margin-top: 0;
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 36px;
    color: #2C3E50;
    margin-bottom: 20px;
}

.contact-description {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
    text-align: center;
}

.contact-description a {
    color: #37ac9a;
    text-decoration: none;
}

.contact-description a:hover {
    text-decoration: underline;
}

.contact-info {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 600px;
}

.contact-info p {
    font-size: 18px;
    margin: 10px 0;
}

.contact-info strong {
    font-weight: bold;
    color: #2C3E50;
}

.contact-info a {
    color: #37ac9a;
}

a {
    text-decoration: none;
}

#map {
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
}