/* ===============================
   GLOBAL FIXES
================================= */

html {
    scroll-behavior: smooth;
}

.travel-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Prevent anchor scroll hidden under fixed header */
.travel-content-section,
.travel-costs-wrapper {
    scroll-margin-top: 120px;
    /* Adjust if header height differs */
}

/* ===============================
   HERO / TOP SECTION
================================= */

.travel-costs-wrapper {
    background: #f5f5f5;
    padding: 80px 0;
}

.intro-line {
    font-size: 16px;
    color: #444;
    margin-bottom: 25px;
    line-height: 1.8;
}

.main-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 40px;
}

/* ===============================
   TOC STYLING
================================= */

.toc-section {
    max-width: 550px;
    margin-bottom: 35px;
}

.toc-box {
    background: #fff;
    border: 1px solid #ddd;
    padding: 25px;
}

.toc-title {
    text-align: center;
    font-weight: 600;
    margin-bottom: 20px;
}

.toc-list {
    list-style: none;
    padding-left: 0;
    counter-reset: item;
}

.toc-list li {
    counter-increment: item;
    margin: 8px 0;
    font-size: 14px;
    line-height: 1.6;
}

.toc-list li::before {
    content: counters(item, ".") " ";
    font-weight: 500;
    margin-right: 6px;
}

.toc-list ol {
    counter-reset: item;
    padding-left: 20px;
    margin-top: 5px;
}

.toc-list a {
    text-decoration: none;
    color: #222;
    transition: 0.2s ease;
}

.toc-list a:hover {
    color: #b8860b;
}

/* ===============================
   CONTENT SECTIONS
================================= */

.travel-content-section {
    padding: 80px 0;
    background: #fff;
}

.section-heading {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.sub-heading {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.highlight-red {
    color: #b22222;
}

.section-text {
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 18px;
    color: #555;
}

/* ===============================
   SOLUTION BOX
================================= */

.solution-box {
    margin-top: 35px;
    padding: 28px;
    background: #f9f9f9;
    border-left: 6px solid #b8860b;
    border-radius: 6px;
}

.solution-list {
    list-style: none;
    padding-left: 0;
}

.solution-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.7;
}

.solution-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 2px;
    color: #b8860b;
    font-weight: bold;
}

/* ===============================
   SECTION SEPARATION
================================= */

.travel-content-section+.travel-content-section {
    border-top: 1px solid #eee;
}

/* ===============================
   TABLET RESPONSIVE
================================= */

@media (max-width: 1024px) {

    .main-title {
        font-size: 36px;
    }

    .section-heading {
        font-size: 28px;
    }

    .sub-heading {
        font-size: 20px;
    }

    .section-text {
        font-size: 16px;
    }
}

/* ===============================
   MOBILE RESPONSIVE
================================= */

@media (max-width: 768px) {

    .travel-costs-wrapper {
        padding: 60px 0;
    }

    .main-title {
        font-size: 26px;
        line-height: 1.4;
    }

    .intro-line {
        font-size: 14px;
    }

    .toc-section {
        max-width: 100%;
    }

    .toc-box {
        padding: 20px;
    }

    .toc-list li {
        font-size: 13px;
    }

    .travel-content-section {
        padding: 60px 0;
    }

    .section-heading {
        font-size: 22px;
    }

    .sub-heading {
        font-size: 18px;
    }

    .section-text {
        font-size: 15px;
    }

    .solution-box {
        padding: 20px;
    }

    .solution-list li {
        font-size: 14px;
    }
}

/* ===============================
   SMALL MOBILE
================================= */

@media (max-width: 480px) {

    .main-title {
        font-size: 22px;
    }

    .section-heading {
        font-size: 20px;
    }

    .solution-box {
        padding: 16px;
    }
}
