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

body {
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    max-width: 900px;
    width: 100%;
}

.header {
    text-align: center;
    margin-bottom: 50px;
    animation: fadeInDown 0.8s ease;
}

.logo {
    display: inline-block;
    margin-bottom: 30px;
}

.logo-img {
    max-width: 280px;
    width: 100%;
    height: auto;
}

.main-title {
    color: #2c3e50;
    font-size: 26px;
    font-weight: 400;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.location-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8e8e8;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
    animation: fadeInUp 0.8s ease;
}

.location-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(125, 211, 219, 0.3);
    border-color: #7dd3db;
}

.location-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.location-card:hover .location-image {
    transform: scale(1.05);
}

.location-info {
    padding: 25px;
}

.location-name {
    font-size: 26px;
    font-weight: 700;
    color: #e31e24;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.location-icon {
    font-size: 22px;
}

.location-details {
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
    font-size: 14px;
}

.address-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
    font-size: 13px;
}

.address-text {
    color: #666;
    margin-bottom: 8px;
    font-size: 14px;
}

.address-link {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.address-link:hover {
    color: #e31e24;
    text-decoration: underline;
}

.location-btn {
    display: inline-block;
    background: #e31e24;
    color: white;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 12px;
    transition: all 0.3s ease;
    border: none;
    font-size: 14px;
}

.location-card:hover .location-btn {
    background: #c41a1f;
    transform: translateX(4px);
}

.footer {
    text-align: center;
    color: #95a5a6;
    margin-top: 30px;
    animation: fadeIn 1s ease;
}

.footer p {
    font-size: 13px;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.location-card:nth-child(2) {
    animation-delay: 0.2s;
}

@media (max-width: 768px) {
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .logo h1 {
        font-size: 36px;
    }

    .logo .subtitle {
        font-size: 16px;
    }

    .main-title {
        font-size: 24px;
    }

    .location-name {
        font-size: 26px;
    }

    .logo-img {
        max-width: 220px;
    }
    
    .main-title {
        font-size: 22px;
    }
}

.image-placeholder {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #7dd3db 0%, #5fb9c0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    font-weight: 600;
}
