/* How To Use Section Styles */

.how-to-section {
    padding: var(--spacing-xl) 0;
}

.step-card {
    width: 100%;
    max-width: 300px;
    margin: 0 auto 2rem;
    padding: 2rem;
    text-align: center;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background-color: var(--turquoise);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--gray-dark);
}

.step-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .how-to-section .flex {
        gap: 2rem;
    }
    
    .step-card {
        margin-bottom: 0;
    }
}

/* Animation for step cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-card:nth-child(1) {
    animation: fadeInUp 0.5s ease forwards;
}

.step-card:nth-child(2) {
    animation: fadeInUp 0.5s 0.2s ease forwards;
    animation-fill-mode: both;
}

.step-card:nth-child(3) {
    animation: fadeInUp 0.5s 0.4s ease forwards;
    animation-fill-mode: both;
}