/* =====================================================
   SELL MY VAN – SEO PAGE STYLES
   File: sell-my-van.css
   ===================================================== */

/* ---------- PAGE WRAPPER ---------- */
.page-sell-van {
    background: #f8f9fb;
}

/* ---------- MAIN SEO CONTENT ---------- */
.seo-sell-van-london {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px 60px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* ---------- HEADINGS ---------- */
.seo-sell-van-london h1 {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 18px;
    color: #0b1f33;
}

.seo-sell-van-london h2 {
    font-size: 1.9rem;
    font-weight: 700;
    margin: 48px 0 16px;
    color: #0b1f33;
    border-left: 5px solid #005dff;
    padding-left: 14px;
}

.seo-sell-van-london h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin: 30px 0 10px;
    color: #102a43;
}

/* ---------- PARAGRAPHS ---------- */
.seo-sell-van-london p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 18px;
}

/* ---------- LINKS ---------- */
.seo-sell-van-london a {
    color: #005dff;
    text-decoration: none;
    font-weight: 600;
}

.seo-sell-van-london a:hover {
    text-decoration: underline;
}

/* ---------- LISTS ---------- */
.seo-list {
    margin: 20px 0 30px 20px;
    padding: 0;
}

.seo-list li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: #333;
    list-style: disc;
}

/* ---------- STEP LIST ---------- */
.seo-steps {
    margin: 24px 0 32px;
    padding-left: 20px;
}

.seo-steps li {
    margin-bottom: 18px;
    line-height: 1.7;
}

.seo-steps strong {
    display: block;
    font-size: 1.05rem;
    color: #0b1f33;
}

/* ---------- BOROUGH BLOCKS ---------- */
.seo-sell-van-london h3 a {
    color: #0b1f33;
}

.seo-sell-van-london h3 a:hover {
    color: #005dff;
}

/* ---------- FAQ SECTION ---------- */
.faq {
    max-width: 1100px;
    margin: 60px auto 0;
    padding: 0 20px 40px;
}

.faq h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.faq details {
    background: #ffffff;
    border-radius: 10px;
    margin-bottom: 14px;
    padding: 14px 18px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    border: 1px solid #e6e9ee;
}

.faq summary {
    font-weight: 700;
    cursor: pointer;
    color: #0b1f33;
    list-style: none;
}

.faq summary::-webkit-details-marker {
    display: none;
}

.faq details[open] summary {
    margin-bottom: 10px;
}

.faq details p {
    font-size: 1rem;
    color: #444;
    line-height: 1.7;
}

/* ---------- CTA SECTION ---------- */
.cta-center {
    text-align: center;
    margin: 50px 0;
}

.cta-btn.large {
    display: inline-block;
    background: linear-gradient(135deg, #005dff, #0482ff);
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 800;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 12px 25px rgba(0,93,255,0.25);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.cta-btn.large:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 35px rgba(0,93,255,0.35);
}

/* ---------- MOBILE OPTIMISATION ---------- */
@media (max-width: 768px) {

    .seo-sell-van-london {
        padding: 28px 16px 40px;
    }

    .seo-sell-van-london h1 {
        font-size: 2rem;
    }

    .seo-sell-van-london h2 {
        font-size: 1.6rem;
    }

    .seo-sell-van-london h3 {
        font-size: 1.2rem;
    }

    .cta-btn.large {
        width: 100%;
        padding: 16px;
    }

}
/* =========================================
   2-COLUMN BOROUGH LIST
   ========================================= */

.seo-list {
    column-count: 2;
    column-gap: 40px;
}

/* prevent items splitting between columns */
.seo-list li {
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    margin-bottom: 10px;
}

/* Mobile: back to 1 column */
@media (max-width: 768px) {
    .seo-list {
        column-count: 1;
    }
}