/* How it works section */
.how-it-works {
    padding: 5rem 2rem;
    background-color: #f8fafc;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.25rem;
    color: #1a1a1a;
    margin-bottom: 3rem;
}

.steps {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.step {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
}

.step-number {
    background-color: #2563eb;
    color: white;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.step img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin: 1rem 0;
}

.step h3 {
    font-size: 1.25rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.step p {
    color: #4b5563;
    margin-bottom: 1rem;
}

.step-details {
    list-style: none;
    margin-top: 1rem;
}

.step-details li {
    color: #4b5563;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.step-details li::before {
    content: "✓";
    color: #2563eb;
    position: absolute;
    left: 0;
}

@media (max-width: 768px) {
    .steps {
        grid-template-columns: 1fr;
    }
}