.formation-card {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 20px;
    padding: 30px;
    max-width: 420px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.formation-icon-wrapper {
    margin-bottom: 24px;
}

.formation-icon-box {
    background: #1e69ff;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(30, 105, 255, 0.3);
}

.formation-title {
    margin: 0 0 12px 0;
    font-size: 24px;
    font-weight: 800;
    color: #111827;
    line-height: 1.2;
}

.formation-desc {
    color: #4b5563;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.formation-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #374151;
    font-size: 14px;
    font-weight: 500;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.levels-section {
    margin-bottom: 24px;
}

.levels-label {
    display: block;
    font-size: 13px;
    color: #9ca3af;
    margin-bottom: 10px;
}

.levels-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.level-badge {
    background: #f3f4f6;
    color: #111827;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
}

.formation-footer {
    border-top: 1px solid #f3f4f6;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.formation-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6b7280;
    font-size: 14px;
    font-weight: 500;
}

.formation-price {
    font-size: 22px;
    font-weight: 800;
    color: #ff4500;
}

/* Modal and common button integration */
.formation-card .event-button {
    margin-top: 0;
}