/* Full Section Wrapper */
.st-section-2fd882ad {
    padding: 80px 20px;
    background-color: #f0f7fa;
    width: 100%;
    box-sizing: border-box;
    font-family: 'Montserrat', system-ui, sans-serif;
}

/* Centered Container */
.st-container-2fd882ad {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

/* Header & Intro */
.st-header-2fd882ad {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.st-title-2fd882ad {
    font-size: 32px;
    font-weight: 800;
    color: #005C8A; /* Servicebreed Blue */
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.st-desc-2fd882ad {
    font-size: 16px;
    line-height: 1.6;
    color: #4A4A4A;
    margin: 0;
}

/* Responsive Grid (Equal Height Cards) */
.st-grid-2fd882ad {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

/* Steps Cards styling */
.st-card-2fd882ad {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: 0 8px 30px rgba(0, 92, 138, 0.04);
    border: 1px solid rgba(0, 92, 138, 0.05);
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Start elements at the exact same height */
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
    position: relative;
}

.st-card-2fd882ad:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 92, 138, 0.08);
}

/* Card Header (Badge & Icon) */
.st-card-header-2fd882ad {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 24px;
}

/* Blue badge circle */
.st-step-badge-2fd882ad {
    background-color: #005C8A; /* Servicebreed Blue */
    color: #ffffff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

/* Green line icons */
.st-card-icon-2fd882ad {
    width: 44px;
    height: 44px;
    color: #3CA847; /* Servicebreed Green */
    display: flex;
    align-items: center;
    justify-content: center;
}

.st-card-icon-2fd882ad svg {
    width: 36px;
    height: 36px;
}

/* Text & Headings */
.st-card-title-2fd882ad {
    font-size: 18px;
    font-weight: 700;
    color: #005C8A;
    margin: 0 0 12px 0;
    line-height: 1.4;
    min-height: 50px; /* Aligns description start heights */
    display: flex;
    align-items: flex-start;
}

.st-card-text-2fd882ad {
    font-size: 14px;
    line-height: 1.6;
    color: #555555;
    margin: 0;
}

/* Connecting Line on Desktop Only */
@media (min-width: 1025px) {
    .st-grid-2fd882ad::before {
        content: "";
        position: absolute;
        top: 48px;
        left: 10%;
        right: 10%;
        height: 2px;
        background: repeating-linear-gradient(90deg, #005C8A, #005C8A 6px, transparent 6px, transparent 12px);
        opacity: 0.2;
        z-index: 1;
    }
    .st-card-2fd882ad {
        z-index: 2; /* Ensures cards sit on top of the dashed line */
    }
}

/* Footer Section */
.st-footer-2fd882ad {
    text-align: center;
    margin-top: 20px;
}

/* CTA Button styling */
.st-btn-2fd882ad {
    display: inline-block;
    padding: 16px 36px;
    background-color: #3CA847; /* Servicebreed Green */
    color: #ffffff !important;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none !important;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(60, 168, 71, 0.2);
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.st-btn-2fd882ad:hover {
    background-color: #2e8b37;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(60, 168, 71, 0.3);
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .st-grid-2fd882ad {
        grid-template-columns: repeat(2, 1fr); /* 2x2 on Tablet */
        gap: 24px;
    }
    .st-card-title-2fd882ad {
        min-height: auto; /* Let text flow naturally */
    }
}

@media (max-width: 600px) {
    .st-grid-2fd882ad {
        grid-template-columns: 1fr; /* 1 Column on Mobile */
    }
    .st-section-2fd882ad {
        padding: 50px 16px;
    }
}
