.contact-section {
    padding: 80px 8%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.contact-card {
    background: #fff;
    padding: 30px;
    border-radius: 22px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.contact-card h2 {
    margin-bottom: 15px;
    font-size: 22px;
}

.contact-card p {
    color: #555;
    margin-bottom: 15px;
}

.contact-card iframe {
    width: 100%;
    height: 250px;
    border: none;
    border-radius: 15px;
}

.contact-item {
    margin-bottom: 15px;
    font-size: 16px;
}

.contact-item span {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.contact-item a {
    color: #000;
    text-decoration: none;
}

.contact-item a:hover {
    color: #25D366;
}
