/* .challenge-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem 1.6rem;
    height: 100%;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.35s ease;
    overflow: hidden;
}
.challenge-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.challenge-accent {
    width: 40px;
    height: 4px;
    border-radius: 2px;
    background: linear-gradient(90deg, #3b82f6, #22d3ee);
    margin-bottom: 1rem;
}

.challenge-heading {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.challenge-text {
    color: var(--gray);
    margin: 0;
    line-height: 1.6;
} */

.challenge-card {
    background: linear-gradient(135deg, #ffffff, #f4f6fb);
    border: 1px solid #e0e6ed;
    border-radius: 16px;
    padding: 24px 20px;
    box-shadow: 0 10px 20px rgba(0, 20, 50, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.challenge-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 20, 50, 0.1);
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.icon-container {
    font-size: 2.5rem;
    background-color: #f7f2ee;
    padding: 12px 16px;
    border-radius: 50%;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.02);
}

.challenge-title {
    font-weight: 600;
    margin-bottom: 12px;
}

.challenge-text {
    color: var(--gray);
    line-height: 1.6;
}

.layered-card {
    position: relative;
    background: linear-gradient(145deg, #ffffff, #f5faff);
    border-radius: 18px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    padding-top: 70px !important;
}

.layered-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.icon-badge {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f99d52d7, #ff7b00);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    box-shadow: 0 6px 16px rgba(225, 156, 59, 0.4);
}

.layered-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.layered-card p {
    margin: 0;
    color: var(--gray);
}
