.service-benefits-section {
    padding: 30px 40px;
    background-color: #0d0d0d;
}

.service-benefits-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.service-benefits-header {
    margin-bottom: 50px;
}

.service-benefits-title {
    font-size: 42px;
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 25px;
    color: white;
    line-height: 1.25;
}

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

.benefits-box {
    background-color: #f0f7ef;
    /* Light green background from image */
    border: 2px dashed #54b248;
    border-radius: 10px;
    padding: 10px 40px;
    max-width: 1400px;
    margin: 0 auto 50px;
    text-align: left;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.benefits-list-simple {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-item-simple {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1.5px solid rgba(84, 178, 72, 0.15);
}

.benefit-item-simple:last-child {
    border-bottom: none;
}

.check-icon-wrapper {
    flex-shrink: 0;
    margin-top: 4px;
}

.benefit-text-simple {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.5;
    font-family: var(--font-body);
}

.service-benefits-footer {
    font-size: 18px;
    font-family: var(--font-body);
    color: #ffffff;
    max-width: 1050px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 500;
    opacity: 0.9;
}

/* Responsive Styles matching Home Page Standards */
@media (max-width: 1024px) {
    .service-benefits-section {
        padding: 60px 20px;
    }

    .service-benefits-title {
        font-size: 32px;
    }

    .benefits-box {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .service-benefits-section {
        padding: 40px 0;
    }

    .service-benefits-container {
        padding: 0 20px;
    }

    .service-benefits-title {
        font-size: 26px !important;
        line-height: 1.3;
        margin-bottom: 20px;
    }

    .service-benefits-subtitle {
        font-size: 15px !important;
        margin-bottom: 30px;
    }

    .benefits-box {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .benefit-text-simple {
        font-size: 16px;
    }

    .service-benefits-footer {
        font-size: 15px !important;
    }
}