.working-process-section {
    padding: 80px 0;
}

/* --- SVG Card Layout Styling --- */
.cs_card {
    position: relative;
    color: var(--color-2); /* This colors the fill="currentColor" SVGs */
    padding: 20px 16px; /* Space to let the border SVGs show outside the white background */
    height: 100%;
    /*min-height: 260px;*/
    transition: transform 0.3s ease;
}

.cs_card:hover {
    transform: translateY(-5px);
}

/* The inner white box containing the text */
.cs_card_content {
    position: relative;
    z-index: 5; /* Keeps content above the SVGs */
    background-color: #ffffff;
    border-radius: 35px;
    height: 100%;
    padding: 30px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* --- Absolute Positioning for the Border SVGs --- */
.shape-right {
    position: absolute;
    top: -6px;
    right: 0;
    z-index: 1;
    height: 70%; /* Stretches to fit card height */
    width: auto;
}

.shape-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    width: 70%; /* Stretches to fit card width */
    height: auto;
}

.shape-dotted {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

/* --- Typography --- */
.cs_card_icon {
    margin-bottom: 22px;
    font-size: 60px;
}

.cs_fs_24 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.417em;
    margin-bottom: 12px;
    font-family: var(--font-01);
}

.cs_card_content p {
    font-size: 16px;
    color: #777;
    line-height: 1.62em;
    margin: 0;
    padding: 0 10px;
   font-family: var(--font-02);
}

/* Responsive */
@media (max-width: 991px) {
    .process-title { font-size: 30px; }
    .shape-right, .shape-bottom, .shape-dotted {
        /* Ensures SVGs scale nicely on mobile */
        max-width: 100%; 
        max-height: 100%;
    }
}