.how-to-buy-section {
    background: linear-gradient(180deg, #FFD700 0%, #FFC700 100%);
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
}

.how-to-buy-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 50px;
}

.how-to-buy-title {
    font-family: var(--font-main);
    font-size: 6rem;
    text-align: center;
    color: #ffffff;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 3px 3px 0px #000;
    -webkit-text-stroke: 2px black;
}

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

.step-card {
    background-color: #FFFFFF;
    border: 5px solid var(--border-color);
    border-radius: 20px;
    padding: 20px 50px;
    max-width: 900px;
    width: 100%;
    box-shadow: 5px 5px 0px var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.step-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.step-content {
    flex: 1;
}

.step-title {
    font-family: var(--font-main);
    font-size: 2rem;
    color: #000000;
    margin: 0 0 10px 0;
    letter-spacing: 1px;
}

.step-description {
    font-family: var(--font-main);
    font-size: 1rem;
    color: #6B7280;
    line-height: 1.6;
    margin: 0;
}

/* Special styling for the middle card with Solana icon */
/*.step-card.solana-step {
    background: #FFFFFF;
}

.step-card.solana-step .step-title {
    font-size: clamp(28px, 5vw, 48px);
    margin-bottom: 15px;
}*/

.step-card.solana-step .step-icon {
    width: 120px;
    height: 120px;
}

/* Responsive Design */
@media (max-width: 1000px) {
    .how-to-buy-section {
        padding: 60px 15px;
    }

    .how-to-buy-title {
        margin-bottom: 40px;
        font-size: 4.5rem;
    }

    .step-card {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
        gap: 15px;
    }

    .step-icon {
        width: 60px;
        height: 60px;
    }

    .step-card.solana-step .step-icon {
        width: 100px;
        height: 100px;
    }

    .steps-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .step-card {
        padding: 20px 15px;
    }

    .step-description {
        font-size: 14px;
    }
}