
body {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 20px;
}

.explore-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.explore-intro h1 {
    color: #2e7d32;
    font-size: 2.5rem;
}
  

.explore-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.explore-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.explore-card:hover {
    transform: translateY(-10px);
}

.icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.explore-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background: #4caf50;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
}


.overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: opacity 500ms;
    visibility: hidden;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}


.overlay:target {
    visibility: visible;
    opacity: 1;
}

.popup {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    width: 80%;
    max-width: 500px;
    position: relative;
    text-align: left;
}

.popup h2 {
    color: #2e7d32;
    margin-top: 0;
}

.popup .close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    color: #333;
}

.popup .content {
    max-height: 30%;
    overflow: auto;
    line-height: 1.6;
}

footer{
    text-align: center;
    padding: 60px 20px;
    font-size: 0.9rem;
    color: #bcaaa4;
}