body {
    background-color: #ffffff;
}

.jm-hero-section {
    width: 100%;
    margin: 60px 0 80px;
    text-align: center !important;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.jm-hero-title {
    max-width: 800px;
    font-size: 46px;
    line-height: 1.25;
    font-weight: 800;
    color: #007a70;
    margin-bottom: 20px;
    text-align: center !important;
}

.jm-hero-subtitle {
    font-size: 20px;
    color: #4b5563;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.5;
    text-align: center !important;
}

.jm-hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.jm-btn-blue {
    background-color: #2b84cf;
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.2s;
}

.jm-btn-blue:hover {
    background-color: #1a6ab3;
    color: #ffffff;
}

.jm-btn-teal {
    background-color: #01b2a0;
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.2s;
}

.jm-btn-teal:hover {
    background-color: #019a8b;
    color: #ffffff;
}

.jm-how-section {
    background-color: #f8fafc;
    /* lighter grey */
    padding: 80px 20px;
    text-align: center;
    border-top: 1px solid #eef1f5;
}

.jm-section-label {
    font-size: 13px;
    font-weight: 700;
    color: #949eb0;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 50px;
}

.jm-how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.jm-how-item {
    text-align: center;
}

.jm-icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.jm-icon-circle.jm-col-blue {
    background-color: #ebf5ff;
    color: #2b84cf;
}

.jm-icon-circle.jm-col-teal {
    background-color: #ebfcf9;
    color: #01b2a0;
}

.jm-icon-circle.jm-col-orange {
    background-color: #fff6eb;
    color: #f97316;
}

.jm-how-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

.jm-how-item p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
}

.jm-stats-section {
    background-color: #edf2f7;
    /* darker grey to distinguish from above/below */
    padding: 80px 20px 100px;
    text-align: center;
}

.jm-pill-line {
    width: 250px;
    height: 12px;
    background-color: #01b2a0;
    border-radius: 99px;
    margin: 0 auto 50px;
}

.jm-stats-title {
    font-size: 32px;
    font-weight: 800;
    color: #111827;
    max-width: 800px;
    margin: 0 auto 16px;
    line-height: 1.4;
}

.jm-stats-subtitle {
    font-size: 16px;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.jm-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.jm-stat-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 35px 20px;
    text-align: center;
    border: 1px solid #eef1f5;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.jm-stat-card i {
    font-size: 28px;
    color: #01b2a0;
    margin-bottom: 20px;
}

.jm-stat-card h3 {
    font-size: 28px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 8px;
}

.jm-stat-card p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

.jm-partner-section {
    background-color: #f8fafc;
    /* lighter grey, matching how-to section or white */
    padding: 40px 20px 100px;
    text-align: center;
}

.jm-partner-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px 40px;
    display: inline-flex;
    align-items: center;
    gap: 24px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid #eef1f5;
    border-left: 6px solid #01b2a0;
    max-width: 700px;
    margin: 0 auto;
}

.jm-partner-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: #f0f9ff;
    color: #2b84cf;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.jm-partner-text {
    text-align: left;
}

.jm-partner-text h4 {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 4px 0;
}

.jm-partner-text p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

.jm-partner-text span {
    font-weight: 700;
    color: #111827;
}

.jm-standalone-footer {
    background-color: #ffffff;
    padding: 30px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #e5e7eb;
}

.jm-standalone-footer img {
    height: 28px;
}

.jm-footer-copy {
    color: #9ca3af;
    font-size: 14px;
}

.jm-footer-contact {
    color: #4b5563;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

@media (max-width: 991px) {

    .jm-how-grid,
    .jm-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .jm-hero-section {
        margin: 20px 0 60px;
    }
    
    .jm-hero-title {
        font-size: 32px;
    }

    .jm-how-grid,
    .jm-stats-grid {
        grid-template-columns: 1fr;
    }

    .jm-hero-buttons {
        flex-direction: column;
    }

    .jm-standalone-footer {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}