/* Dedicated styles for Services section */

/* Push the process section lower and isolate spacing here */
#servicess.process-section.Flip-Cards,
.process-section.Flip-Cards {
    margin-top: 0;
    margin-bottom: var(--section-gap-after);
}

/* Process section titles */
#servicess.process-section.Flip-Cards h3.services-main-title,
.process-section .process-section-title {
    color: #92d348 !important;
}

.process-section .flip-card-title {
    color: #92d348 !important;
}

/* Optional: fine-tune inner spacing without affecting global styles */
#services .services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    align-items: stretch;
}

@media (max-width: 1200px) {
    #services .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    #services .services-grid {
        grid-template-columns: 1fr;
    }
}

#services .service-card {
    padding: 1.5rem 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

#services .service-desc {
    font-size: 0.95rem;
    color: #183049;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    text-align: left;
    width: 100%;
    flex-grow: 1;
}

#services .service-features {
    margin-top: 0.75rem;
    gap: 0.5rem;
}

#services .service-features .value-text {
    font-size: 0.9rem;
    line-height: 1.4;
}

#services .services-subtitle {
    max-width: 720px;
    margin: 0 auto 2rem;
    text-align: center;
    color: #183049;
    line-height: 1.6;
}

#services .service-cta {
    margin-top: auto;
}

/* Style h3 elements in service cards */
#services .service-card h3 {
    color: #4aa921 !important;
    font-size: 1.1rem !important;
    margin-bottom: 0.75rem !important;
    font-weight: bold !important;
    line-height: 1.25 !important;
}

/* Style h3 elements in flip cards front */
.flip-card-front h3.title,
.flip-card-front .flip-card-title {
    color: #92d348 !important;
    font-size: 20.8px !important;
}

.flip-card-desc {
    text-align: center !important;
    margin: 0.75rem auto 0 !important;
    color: #ffffff !important;
}


