/* Contact Hero */
.contact-hero {
    background: var(--dark);
    color: white;
    padding: 100px 0 60px;
    text-align: center;
}

.contact-hero h1 { font-size: 2.5rem; margin-bottom: 10px; }

/* Info Cards */
.contact-wrapper { margin-top: -40px; }
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.info-card:hover { transform: translateY(-5px); }

.info-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.info-card h3 { margin-bottom: 10px; color: var(--dark); }

.info-card p {
    color: #666; line-height: 1.6;
    word-wrap: break-word;       /* Forces the text to wrap to the next line */
    overflow-wrap: break-word;   /* Modern version of word-wrap */
    font-size: 0.9rem;           /* Slightly reducing size helps fit long emails */
}

/* Map */
.map-container {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.map-container h3 { margin-bottom: 20px; text-align: center; }

/* Discrete Footer */
.simple-footer {
    padding: 40px 0;
    background: #f9f9f9;
    text-align: center;
    font-size: 0.9rem;
    color: #999;
}

.policy-link {
    color: #bbb;
    text-decoration: none;
    margin-top: 10px;
    display: inline-block;
}

.policy-link:hover { color: var(--primary); }