.gc-wrapper-61e359d6 {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
    font-family: inherit;
    color: #fff;
    background: transparent; /* Removed the black background */
}

.gc-line-61e359d6 {
    position: absolute;
    top: 50%;
    /* Start at roughly the inner edge of the left card and end at the inner edge of the right card */
    left: 20%;
    width: 60%; 
    height: 4px;
    transform: translateY(-50%);
    background: linear-gradient(90deg, transparent, #c2f0a1 50%, transparent);
    box-shadow: 0 0 20px #c2f0a1;
    z-index: 1;
}

.gc-cards-61e359d6 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.gc-card-61e359d6 {
    background: rgba(20, 25, 35, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 6px;
    padding: 40px 30px;
    text-align: center;
    flex: 1;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gc-card-61e359d6:hover {
    transform: translateY(-10px);
}

.gc-card-side-61e359d6 {
    border: 1px solid rgba(194, 240, 161, 0.2);
}

.gc-card-center-61e359d6 {
    border: 1px solid #c2f0a1;
    box-shadow: 0 0 30px rgba(194, 240, 161, 0.3) inset;
    transform: scale(1.08);
    background: rgba(30, 40, 50, 0.5);
}

.gc-card-center-61e359d6:hover {
    transform: scale(1.08) translateY(-10px);
}

.gc-card-icon-61e359d6 {
    margin-bottom: 20px;
}
.gc-card-icon-61e359d6 svg {
    width: 40px;
    height: 40px;
    display: block;
    margin: 0 auto;
}

.gc-card-61e359d6 h3 {
    margin: 0 0 15px;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
}

.gc-card-61e359d6 p {
    margin: 0;
    color: #b0b5c0;
    font-size: 15px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .gc-cards-61e359d6 {
        flex-direction: column;
    }
    .gc-line-61e359d6 {
        width: 4px;
        height: 60%;
        left: 50%;
        top: 20%;
        transform: translateX(-50%);
        background: linear-gradient(180deg, transparent, #c2f0a1 50%, transparent);
    }
    .gc-card-center-61e359d6 {
        transform: scale(1);
    }
    .gc-card-center-61e359d6:hover {
        transform: translateY(-10px);
    }
}