.main-content {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 40px;
    font-weight: bold;
    font-family: 'Pangolin';
    color: #4E342E;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.section-description {
    text-align: center;
    color: #4E342E;
    font-family: 'Nunito';
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 80px;
}

.explore-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
    margin-bottom: 120px;
}

.explore-card {
    background: #f9a825;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(78, 52, 46, 0.1);
    text-decoration: none;
    display: block;
    position: relative;
}

.card-image {
    height: 280px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: all 0.5s ease;
    z-index: 2;
}

.zoo {
    background: url('../images/zoo.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.waterpark {
    background: url('../images/splash.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.aviary {
    background: url('../images/aviary.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.museum {
    background: url('../images/museum.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.aquarium {
    background: url('../images/aquarium.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.cinemazoo {
    background: url('../images/zoo.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.resort {
    background: url('../images/resort.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.card-content {
    padding: 35px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.card-title {
    font-size: 24px;
    font-weight: bold;
    font-family: 'Pangolin';
    color: #4E342E;
    margin-bottom: 20px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.explore-card:hover .card-title {
    color: #2E7D32;
}

.card-description {
    color: #4E342E;
    font-family: 'Nunito', sans-serif;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 0;
    text-decoration: none;
}

.map {
    background: #4E342E;
    padding: 40px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.map-container {
    max-width: 900px;
    margin: 0 auto 50px auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.map-title {
    font-size: 40px;
    font-weight: 700;
    font-family: 'Pangolin', cursive;
    color: #f9a825;
    margin-bottom: 25px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(78, 52, 46, 0.2);
}

.map-address {
    font-size: 20px;
    font-family: 'Nunito', sans-serif;
    color: #f9a825;
    margin-bottom: 0;
    line-height: 1.6;
}