.sell-options-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    padding: 20px;
    box-sizing: border-box;
}

.sell-options-header {
    text-align: center;
    margin-bottom: 40px;
}

.sell-options-header h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.header-accent-line {
    width: 50px;
    height: 4px;
    margin: 0 auto 16px auto;
    border-radius: 2px;
}

.sell-options-header p {
    font-size: 16px;
    margin: 0;
}

.sell-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    justify-items: center;
    align-items: stretch;
    gap: 30px;
}

.sell-card {
    background: #ffffff;
    border: 1px solid #eef0f4;
    border-radius: 16px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    box-sizing: border-box;
    width: 100%;
}

.sell-card-icon-container {
    margin-bottom: 24px;
}

.sell-card-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(var(--card-theme-color), 0.1) !important;
}

/* Fallbacks & conversions for icons bg color */
.sell-card:nth-child(1) .sell-card-icon-circle {
    background-color: rgba(29, 82, 223, 0.08);
}
.sell-card:nth-child(2) .sell-card-icon-circle {
    background-color: rgba(0, 135, 68, 0.08);
}

.sell-card-icon-circle i,\n.sell-card-icon-circle svg {
    font-size: 32px;
    color: var(--card-theme-color);
    fill: var(--card-theme-color);
    width: 32px;
    height: 32px;
}

.sell-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #0b132b;
    margin: 0 0 10px 0;
}

.card-accent-line {
    width: 30px;
    height: 3px;
    background-color: var(--card-theme-color);
    margin-bottom: 30px;
    border-radius: 2px;
}

.sell-card-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
    width: 100%;
}

.sell-card-bullets li {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f3f5f8;
    font-size: 15px;
    color: #495057;
}

.sell-card-bullets li:last-child {
    border-bottom: none;
}

.bullet-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(var(--card-theme-color), 0.1);
    color: var(--card-theme-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
    margin-right: 12px;
    flex-shrink: 0;
}

.sell-card:nth-child(1) .bullet-check {
    background-color: rgba(29, 82, 223, 0.08);
}
.sell-card:nth-child(2) .bullet-check {
    background-color: rgba(0, 135, 68, 0.08);
}

.bullet-text {
    flex-grow: 1;
}

.sell-card-button {
    width: 100%;
    padding: 15px 24px;
    border-radius: 8px;
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, transform 0.1s ease;
    margin-top: auto;
}

.sell-card-button:hover {
    filter: brightness(0.95);
}

.btn-arrow {
    margin-left: 8px;
    transition: transform 0.2s ease;
}

.sell-card-button:hover .btn-arrow {
    transform: translateX(4px);
}

/* Tablet Device Responsive styling */
@media (max-width: 991px) {
    .sell-options-header h2 {
        font-size: 28px;
    }
    .sell-cards-grid {
        gap: 20px;
    }
    .sell-card {
        padding: 30px 20px;
    }
}

/* Mobile Devices Styling: Force exactly 2 columns on mobile devices */
@media (max-width: 767px) {
    .sell-options-header h2 {
        font-size: 22px;
    }
    .sell-options-header p {
        font-size: 14px;
    }
    .sell-cards-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        justify-items: center !important;
    }
    .sell-card {
        padding: 20px 12px !important;
        border-radius: 12px !important;
    }
    .sell-card-icon-circle {
        width: 60px;
        height: 60px;
    }
    .sell-card-icon-circle i,
    .sell-card-icon-circle svg {
        font-size: 24px;
        width: 24px;
        height: 24px;
    }
    .sell-card h3 {
        font-size: 16px;
        text-align: center;
    }
    .card-accent-line {
        margin-bottom: 15px;
    }
    .sell-card-bullets li {
        font-size: 11px;
        padding: 8px 0;
    }
    .bullet-check {
        width: 18px;
        height: 18px;
        font-size: 9px;
        margin-right: 6px;
    }
    .sell-card-button {
        padding: 12px 10px;
        font-size: 13px;
        border-radius: 6px;
    }
}