.contact-section {
    background-color: #ecf2fd;
    padding-top: 20px;
    padding-bottom: 20px;
    overflow: hidden;
    margin-top: -130px;
}

.steps-wrapper {
    margin-top: 70px;
    padding-bottom: 60px;
    position: relative;
    z-index: 2;
}

/* Step Cards */
.step-card {
    background: white;
    border-radius: 20px;
    padding: 2rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    height: 100%;
}

.step-icon-wrapper {
    margin-bottom: 1.5rem;
}

/* Icon wrapper */
.step-card .icon-wrap {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 56px;
}

/* Icon inside wrapper */
.step-card .icon-wrap img {
    width: 42px;
    height: 42px;
    stroke: var(--yellow);
    fill: none;
    stroke-width: 1.8;
}

.step-title {
    color: #003451;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.step-description {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.join-team-section .illustration-container {
    display: flex;
    justify-content: flex-end !important;
}

.illustration-container img {
    width: 500px;
}

.join-team-section {
    background: #255ee0;
    border-radius: 20px;
    margin-bottom: 60px;
    padding-right: 0 !important;
}

/* Media Queries */
@media (max-width: 767.98px) {
    .contact-section {
        padding-bottom: 0 !important;
    }

    .step-card {
        padding: 2rem 2rem;
        margin-bottom: 1.5rem;
    }

    .step-title {
        font-size: 1.25rem;
    }

    .illustration-wrapper {
        justify-content: center !important;
        width: unset;
    }

    .join-team-section {
        padding: 20px !important;
        padding-top: 50px !important;
        padding-bottom: 0 !important;
        width: 90%;
    }

    .join-team-section a {
        width: 100%;
    }

    .illustration-container img {
        width: 300px;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .step-card {
        margin-bottom: 2rem;
    }
}
