.av-fluid-steps-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* HEADER */
.av-fluid-steps-header {
    text-align: center;
    margin-bottom: 60px;
}

.av-fluid-steps-title {
    font-size: 48px;
    font-weight: 700;
    color: #522398;
    margin-bottom: 20px;
}

/* CONTAINER */
.av-fluid-steps-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* CARD */
.av-fluid-step-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.av-fluid-step-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transform: translateY(-4px);
}

/* GRID */
.av-fluid-step-grid {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 30px;
    align-items: start;
}

/* LEFT NUMBER */
.av-fluid-step-left {
    display: flex;
    align-items: flex-start;
}

.av-fluid-step-number {
    font-size: 72px;
    font-weight: 700;
    color: #522398;
    opacity: 0.2;
    line-height: 1;
}

/* RIGHT CONTENT */
.av-fluid-step-title {
    font-size: 28px;
    font-weight: 600;
    color: #522398;
    margin-bottom: 15px;
}

.av-fluid-step-description {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.7;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .av-fluid-step-grid {
        grid-template-columns: 1fr;
    }

    .av-fluid-step-number {
        font-size: 48px;
        margin-bottom: 10px;
    }
}