/* --- The Impact Card --- */

.impact-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 40px;
    max-width: 450px;
    width: 100%;
    margin: 30px auto;
    text-align: center;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
    /* Soft, expensive shadow */
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.impact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px -10px rgba(0, 0, 0, 0.15);
}

/* --- Top Decoration --- */
/* A subtle color bar at the top */
.impact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    /* Blue to Purple */
}

/* --- Visual Section --- */
.impact-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 25px;
}

.icon-bg {
    width: 100px;
    height: 100px;
    background: #eff6ff;
    /* Very light blue */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.main-icon {
    width: 36px;
    height: 36px;
    color: #3b82f6;
    /* Brand Blue */
}

.badge {
    width: 10px;
    height: 10px;
    background: #ff5300;
    border-radius: 50%;
    box-shadow: 1px 1px 10px #c03800;
}

.status-tag {
    background: #f1f5f9;
    color: #64748b;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* --- Text Content --- */
.impact-content h2 {
    font-size: 24px;
    font-weight: 800;
    color: #1e293b;
    /* Dark Slate */
    margin: 0 0 10px 0;
}

.impact-content p {
    font-size: 15px;
    color: #64748b;
    /* Soft Gray */
    line-height: 1.6;
    margin: 0 0 30px 0;
}

.impact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    /* Solid Blue Gradient */
    color: white;
    font-weight: 700;
    font-size: 16px;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 10px 20px -5px rgba(37, 99, 235, 0.4);
    transition: all 0.2s ease;
}

.impact-btn:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(37, 99, 235, 0.5);
    color: white;
}

.impact-btn i {
    transition: transform 0.2s;
}

.impact-btn:hover i {
    transform: translateX(4px);
}

.sub-text {
    display: block;
    margin-top: 15px;
    font-size: 13px;
    color: #94a3b8;
}

/* --- Mobile Fix --- */
@media (max-width: 480px) {
    
    .impact-card {
        padding: 30px 20px;
        width: 80%;
    }

    .impact-content p {
        font-size: 12px;
    }

    .impact-btn {
        font-size: 14px;
    }
}