.sell-hero {
    background: linear-gradient(135deg, #0d3b4f 0%, #0a4f3a 50%, #1a5c2e 100%);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    color: #fff;
    margin-bottom: 2rem;
}

.sell-hero h1 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.sell-hero .subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.sell-hero .price-highlight {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 30px;
    margin-top: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.sell-hero .price-highlight span {
    color: #4ade80;
}

.sell-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.sell-info-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-soft);
}

.sell-info-card h3 {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    color: #0a7e5a;
    text-transform: none;
    letter-spacing: 0;
}

.sell-info-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

.sell-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0 2rem;
}

.sell-step {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 1.2rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.sell-step .step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0a7e5a, #4ade80);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.6rem;
}

.sell-step h4 {
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
    color: var(--text-primary);
}

.sell-step p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

.sell-faq .faq-item {
    background: var(--card-bg);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    margin-bottom: 0.8rem;
}

.sell-faq .faq-question {
    padding: 1rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.sell-faq .faq-question:hover {
    background: rgba(10, 126, 90, 0.04);
}

.sell-faq .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
    padding: 0 1.5rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.sell-faq .faq-item.active .faq-answer {
    max-height: 400px;
    padding: 0 1.5rem 1.2rem;
}

.sell-faq .faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.sell-content-section {
    margin-bottom: 2rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-size: 1rem;
}

.sell-content-section h2 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.sell-cta-box {
    text-align: center;
    background: linear-gradient(135deg, #0a7e5a, #0d3b4f);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    margin: 2rem 0;
    color: #fff;
}

.sell-cta-box h2 {
    color: #fff;
    margin-bottom: 0.8rem;
    font-size: 1.5rem;
}

.sell-cta-box p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.sell-cta-box .btn-sell {
    display: inline-block;
    background: #fff;
    color: #0a7e5a;
    padding: 12px 32px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s;
}

.sell-cta-box .btn-sell:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .sell-hero h1 {
        font-size: 1.4rem;
    }

    .sell-steps {
        grid-template-columns: 1fr;
    }
}
