.how-it-works-d41947fa {
    background-color: #F4FAF7;
    padding: 80px 48px;
    width: 100%;
}

.how-it-works-d41947fa-container {
    max-width: 1200px;
    margin: 0 auto;
}

.how-it-works-d41947fa-header {
    text-align: center;
    margin-bottom: 64px;
}

.how-it-works-d41947fa-eyebrow {
    color: #1D9E75;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-weight: 600;
}

.how-it-works-d41947fa-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    margin: 0 auto;
    max-width: 800px;
    line-height: 1.2;
}

.how-it-works-d41947fa-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.how-it-works-d41947fa-item {
    background: #fff;
    padding: 32px;
    border-radius: 4px;
    border: 0.5px solid #eaeaea;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.how-it-works-d41947fa-item:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}

.how-it-works-d41947fa-number {
    font-size: 48px;
    font-weight: 500;
    color: #1D9E75;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    line-height: 1;
    font-family: 'Cormorant Garamond', serif;
}

.how-it-works-d41947fa-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #222;
    margin-bottom: 15px;
    margin-top: 0;
}

.how-it-works-d41947fa-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1024px) {
    .how-it-works-d41947fa-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .how-it-works-d41947fa {
        padding: 60px 20px;
    }
    .how-it-works-d41947fa-heading {
        font-size: 36px;
    }
    .how-it-works-d41947fa-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .how-it-works-d41947fa-header {
        margin-bottom: 40px;
    }
}