/* ========================================
   INFO SECTIONS (About, How it Works, etc.)
   ======================================== */

.info-section {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
    border-radius: 16px;
    padding: 2rem;
    margin: 3rem auto;
    max-width: 900px;
    color: #fff;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    text-align: center;
}

.info-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #18a0fb;
    letter-spacing: 1px;
}

.info-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #2a2626;
    max-width: 800px;
    margin: 0 auto;
}

.info-section:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.steps-section {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
    border-radius: 16px;
    padding: 2rem;
    margin: 3rem auto;
    max-width: 900px;
    color: #fff;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.steps-section h2 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    color: #18a0fb;
    margin-bottom: 2rem;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-number {
    flex-shrink: 0;
    background-color: #18a0fb;
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #2a2626;
}
