.service-explore-section {
    padding: 80px 40px;
    background-color: #000000;
    width: 100%;
}

.service-explore-container {
    max-width: 1400px;
    margin: 0 auto;
}

.explore-header {
    text-align: center;
    margin-bottom: 30px;
}

.explore-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    font-family: var(--font-heading);
    line-height: 1.3;
}

.explore-subtitle {
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    opacity: 0.8;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
    font-family: var(--font-body);
}

.explore-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.explore-card {
    background: #eaf6e5;
    /* Match solid light green background from image */
    border: 2px solid #54b248;
    border-radius: 12px;
    padding: 35px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.explore-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(84, 178, 72, 0.2);
}

.explore-icon {
    color: #54b248;
    margin-bottom: 25px;
}

.explore-card-title {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-family: var(--font-heading);
    line-height: 1.3;
}

.explore-card-text {
    font-size: 18px;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.6;
    font-family: var(--font-body);
}

@media (max-width: 1200px) {
    .explore-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-explore-section {
        padding: 50px 20px;
    }

    .explore-grid {
        grid-template-columns: 1fr;
    }

    .explore-title {
        font-size: 28px;
    }

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

    .explore-card-title {
        font-size: 22px;
    }

    .explore-card-text {
        font-size: 16px;
    }

    .explore-icon img {
        width: 75px !important;
        height: 65px !important;
    }
}