/* 1. Section & Container */
.blu-how-it-works-section {
    background-color: #ffffff;
    padding-top: 32px;
    padding-bottom: 32px;
}
.blu-how-it-works-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}
.blu-how-it-works-wrapper {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* 2. Heading */
.blu-how-it-works-heading {
    font-size: 30px;
    font-weight: 500;
    color: #111827;
    line-height: 1.2;
    letter-spacing: -0.04em;
    text-align: center;
    margin: 0;
}

/* 3. Steps Grid */
.blu-steps-grid {
    display: grid;
    grid-template-columns: 1fr; /* 1 column on mobile */
    gap: 32px;
    max-width: 1152px; /* Corresponds to max-w-6xl */
    margin: 0 auto;
}

/* 4. Step Card */
.blu-step-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.blu-step-card-header {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* 5. Card Typography */
.blu-step-label {
    font-size: 16px;
    color: #374151; /* gray-700 */
    line-height: 1.4;
    margin: 0;
}
.blu-step-title {
    font-size: 20px;
    font-weight: 500;
    color: #111827; /* gray-900 */
    line-height: 1.4;
    margin: 0;
}
.blu-step-description {
    font-size: 14px;
    color: #4b5563; /* gray-600 */
    line-height: 1.5;
    margin: 0;
}

/* 6. Responsive Breakpoints */
@media (min-width: 640px) { /* sm */
    .blu-how-it-works-heading {
        font-size: 36px;
    }
    .blu-step-label {
        font-size: 18px;
    }
    .blu-step-title {
        font-size: 20px;
    }
    .blu-step-description {
        font-size: 16px;
    }
}

@media (min-width: 768px) { /* md */
    .blu-how-it-works-section {
        padding-top: 64px;
        padding-bottom: 64px;
    }
    .blu-how-it-works-wrapper {
        gap: 48px;
    }
    .blu-how-it-works-heading {
        font-size: 48px;
    }
    .blu-steps-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 columns on desktop */
        gap: 64px;
    }
    .blu-step-card {
        gap: 16px;
    }
    .blu-step-card-header {
        gap: 8px;
    }
    .blu-step-label {
        font-size: 20px;
    }
    .blu-step-title {
        font-size: 24px;
    }
    .blu-step-description {
        font-size: 18px;
    }
}

@media (min-width: 1024px) { /* lg */
    .blu-how-it-works-heading {
        font-size: 60px;
    }
    .blu-steps-grid {
        gap: 80px;
    }
}
p.blu-step-label{
margin-bottom:0px !important;
}
h3.blu-step-title{
margin-top:0px !important}