* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #f4f6f8;
    color: #333;
}

header, footer {
    text-align: center;
    padding: 40px 20px;
    background: #3797ff;
    color: white;
}

header p {
    margin-top: 10px;
}

.locations {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.2s;
    pointer-events: auto;
}

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

.card img {
    padding: 0 8px;
    width: 100%;
    height: 180px;
    object-fit: contain;
}

.card-content {
    padding: 20px;
}

.card-content h2 {
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.card-content p {
    margin-bottom: 10px;
}

.address {
    font-weight: bold;
    color: #003366;
}