:root {
    --mv-primary: #239322;
    --mv-secondary: #18243A;
}

.mv-section-2a1e2490 {
    position: relative;
    padding: 80px 20px;
    background-color: #ffffff;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    color: #333;
}

.mv-bg-pattern {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    opacity: 0.03;
    background-image: radial-gradient(var(--mv-secondary) 2px, transparent 2px);
    background-size: 30px 30px;
    z-index: 0;
}

.mv-header-wrapper {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
    animation: fadeIn 1s ease-out;
}

.mv-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--mv-primary);
    background: rgba(35, 147, 34, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.mv-main-heading {
    font-size: 52px;
    font-weight: 700;
    color: var(--mv-secondary);
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.mv-subtitle {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.mv-cards-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.mv-card {
    flex: 1 1 45%;
    min-width: 320px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.mv-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.mv-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    animation: float 6s ease-in-out infinite;
}

.mv-icon-wrapper svg {
    width: 30px;
    height: 30px;
}

.mv-icon-blue {
    background: rgba(24, 36, 58, 0.1);
    color: var(--mv-secondary);
}

.mv-icon-green {
    background: rgba(35, 147, 34, 0.1);
    color: var(--mv-primary);
    animation-delay: -3s;
}

.mv-card-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--mv-secondary);
    margin: 0;
}

.mv-card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.mv-card-desc {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

.mv-features-list {
    margin-bottom: 30px;
}

.mv-feature-item {
    font-size: 16px;
    font-weight: 500;
    color: var(--mv-secondary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.mv-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--mv-primary);
    color: #fff;
    font-size: 12px;
    margin-right: 12px;
}

.mv-card-image {
    margin-top: auto;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.mv-card-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

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

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@media (max-width: 768px) {
    .mv-main-heading { font-size: 36px; }
    .mv-card { padding: 30px; }
    .mv-card-title { font-size: 26px; }
}