/* lifeofcanary.css */
.umiq-wrapper * {
    box-sizing: border-box;
}

/* Main Wrapper */
.umiq-wrapper {
    background-color: #ffffff;
    color: #333;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

/* Inner Container - Responsive Width */
.umiq-container {
    width: 100%;
    max-width: 1200px;
    /* Limits width on big screens */
    margin: 0 auto;
    padding: 60px 0px 20px 0px;
}

/* Typography */
h1.umiq-main-title {
    font-size: 38px;
    font-weight: 700;
    color: #ef9b11 !important;
    font-family: "Georgia", "Times New Roman", serif;
    margin: 0 0 30px 0;
    font-weight: 700;
    line-height: 1.2;
}


h3.umiq-sub-title {
    font-family: "Montserrat", sans-serif;
    color: #212529 !important;
    font-size: 20px;
    font-weight: 500;
    margin: 35px 0 10px;
}

p.umiq-description {
    font-family: "Montserrat", sans-serif;
    font-size: 15.5px;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0.2px;
    color: #636363;
    margin-bottom: 12px;

    /* smooth rendering */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    /* Modern justify styling */
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
}

/* Footer Separator */
.umiq-footer-separator {
    margin-top: 20px;
    text-align: center;
}

hr.umiq-bottom-line {
    border: none;
    height: 1px;
    background-color: #9ea89e;
    margin: 60px 0 20px 0;
    width: 100%;
}


/* --- RESPONSIVE MEDIA QUERIES --- */

/* Tablet Devices (max-width: 992px) */
@media screen and (max-width: 992px) {
    h1.umiq-main-title {
        font-size: 30px;
        /* Slightly smaller title */
        margin-bottom: 25px;
    }

    p.umiq-description {
        max-width: 100%;
        /* Use full width on tablets */
    }
}

/* Mobile Devices (max-width: 600px) */
@media (max-width: 768px) {
    .umiq-wrapper {
        padding: 10px 0;
    }


    .umiq-container {
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 10px;
        padding-bottom: 30px;
    }

    h1.umiq-main-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    h3.umiq-sub-title {
        font-size: 18px;
    }

    /* h3.umiq-sub-title {
        font-size: 28px;
    } */

    p.umiq-description {
        font-size: 14px;
        margin-bottom: 30px;
    }

    hr.umiq-bottom-line {
        margin: 40px 0 0px 0;
    }
}

/* 1. Container Setup */
.sport-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 50px 0;
}

.sport-container {
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
}

/* 2. Header Title */
.sport-header-title {
    font-family: "PT Sans", sans-serif;
    font-size: 38px;
    color: #ef9b11 !important;
    margin: 0 0 30px 0;
    font-weight: 700;
    line-height: 1.2;
    /* Lighter weight for modern look */
}

/* 3. MODERN SEARCH BAR REDESIGN */
.sport-search-bar {
    background-color: #fff5e5;
    /* Soft border and subtle shadow for depth */
    border: 1px solid #e5e5e5;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    border-radius: 12px;
    /* Modern rounded corners */
    padding: 18px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    transition: all 0.3s ease;
}

/* Hover and Focus States for Search Bar */
.sport-search-bar:hover {
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
    /* Slight lift effect */
}

/* When user clicks inside (we use a focus-within trick) */
.sport-search-bar:focus-within {
    border-color: #00a99d;
    /* Glows with Teal brand color */
    box-shadow: 0 4px 15px rgba(0, 169, 157, 0.15);
}

.sport-search-input {
    border: none;
    background: transparent;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #333;
    width: 100%;
    outline: none;
}

.sport-search-input::placeholder {
    color: #999;
    font-style: italic;
    opacity: 0.8;
}

.sport-search-icons {
    display: flex;
    align-items: center;
    gap: 20px;
    /* More breathing room */
}

.sport-icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    transition: transform 0.2s;
}

.sport-icon-btn:hover {
    transform: scale(1.1);
    /* Icons pop slightly on hover */
}

.sport-icon-btn i {
    font-size: 20px;
    color: #333;
    transition: color 0.3s;
}

/* Make the search icon standard brand color on hover */
.sport-icon-btn:hover i.fa-magnifying-glass {
    color: #00a99d;
}

/* Make the minus icon red on hover */
.sport-icon-btn:hover i.fa-circle-minus {
    color: #dc3545;
}

/* 4. The Grid */
.sport-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    /* Increased gap for cleaner look */
}

/* 5. The Sport Card */
.sport-card {
    position: relative;
    height: 260px;
    overflow: hidden;
    cursor: pointer;
    border-radius: 8px;
    /* Slightly more rounded */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Background Image */
.sport-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sport-card:hover .sport-card-img {
    transform: scale(1.1);
}

/* Dark Overlay */
.sport-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    transition: background 0.3s;
}

.sport-card:hover .sport-overlay {
    background: rgba(0, 0, 0, 0.4);
}

/* Text Content */
.sport-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    z-index: 2;
}

.sport-title {
    color: #ffffff !important;
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    /* Slightly larger */
    margin-bottom: 12px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    letter-spacing: 0.5px;
}

/* The Teal Underline */
.sport-underline {
    display: block;
    width: 50px;
    height: 3px;
    background-color: #f6a71b;
    margin: 0 auto;
    border-radius: 2px;
    transition: width 0.3s ease;
}

/* Interactive underline effect */
.sport-card:hover .sport-underline {
    width: 80px;
    /* Expands on hover */
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .sport-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .sport-grid {
        grid-template-columns: 1fr;
    }

    .sport-header-title {
        font-size: 26px;
    }

    .sport-card {
        height: 220px;
    }

    .sport-search-bar {
        padding: 15px 20px;
        /* Compact padding on mobile */
    }

    .sport-search-input {
        font-size: 16px;
    }
}

/* Modal Customization */
.sport-modal-img {
    width: 60%;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
}











/* --- Scoped Styles (Prefix: felsted-) --- */

.felsted-section-wrapper * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.felsted-section-wrapper {
    background-color: #ffffff;
    padding: 60px 20px 20px;
    display: flex;
    justify-content: center;
    width: 100%;
}

/* Main Container 1200px */
.felsted-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    /* Stack Heading on top of content */
}

/* 1. Heading - Sits above the columns */
h2.felsted-heading {
    font-family: "Georgia", "Times New Roman", serif;
    font-size: 48px;
    color: #ef9b11 !important;
    margin: 0 0 30px 0;
    font-weight: 700;
    line-height: 1.2;
}

/* 2. Content Row - Contains Text and Image side-by-side */
.felsted-content-row {
    display: flex;
    align-items: flex-start;
    /* CRITICAL: Aligns top of text with top of image */
    gap: 30px;
}

/* Left Column: Text */
.felsted-text-column {
    flex: 1;
    /* Takes available space */
    padding-right: 20px;
}

p.felsted-paragraph {
    /* font-family: "PT Sans", sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px; */

    font-family: "Montserrat", sans-serif;
    font-size: 15.5px;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0.2px;
    color: #636363;
    margin-bottom: 14px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    /* Modern justify styling */
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
}

a.felsted-link {
    color: #222;
    font-weight: 700;
    text-decoration: underline;
    cursor: pointer;
}

a.felsted-link:hover {
    color: #000;
}

/* Right Column: Image */
.felsted-image-column {
    flex: 0 0 500px;
    /* Fixed width for image column to match visual ratio */
    width: 500px;
}

img.felsted-main-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    /* Slight rounding like standard photos */
    object-fit: cover;
}

/* --- Responsive Design --- */

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
    .felsted-image-column {
        flex: 0 0 400px;
        /* Shrink image column slightly */
        width: 400px;
    }

    .felsted-content-row {
        gap: 40px;
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    .felsted-section-wrapper{
        padding: 20px 20px 20px;
    }
    .felsted-content-row {
        flex-direction: column;
        /* Stack them */
    }

    .felsted-image-column {
        flex: 1 1 100%;
        width: 100%;
        margin-top: 0px;
        margin-bottom: 30px;
    }
    p.felsted-paragraph{
        font-size: 14px;
    }

    .felsted-text-column {
        padding-right: 0;
    }

    h2.felsted-heading {
        margin-bottom: 0px;
        font-size: 36px;
    }
}








/* --- Scoped Styles (Prefix: felsted-) --- */

/* Reset for this section */
.felsted-quote-section * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    z-index: 1;
}

.felsted-quote-section {
    position: relative;
    width: 100%;

    /* TEST 2: Use an online image first. If this works, your local path is wrong. */
    background-image: url('../images/bg/sport-quote-bg.webp');

    /* Once the online image works, swap back to your local path and remove the slash: */
    /* background-image: url('assets/images/bg/sport-bg.jpg'); */

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    padding: 120px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
}

/* 3. The Orange Overlay (The color on top of the image) */
.felsted-quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Orange color with 0.7 opacity */
    background-color: #f6a71b9e;
    z-index: 1;
}

/* Background Graphic (The Cross Shape) */
.felsted-quote-bg-graphic {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    font-size: 400px;
    /* Adjust size as needed */
    color: rgba(255, 255, 255, 0.1);
    /* Very faint white/orange */
    z-index: 1;
    font-weight: 900;
    line-height: 0;
    pointer-events: none;
}

/* Main Content Container */
.felsted-quote-container {
    position: relative;
    z-index: 2;
    /* Place content above the overlay */
    max-width: 800px;
    text-align: center;
}

/* Quote Text Style */
.felsted-quote-text {
    font-size: 32px;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 40px;
    /* Adding quotes with pseudo-elements for better control */
    position: relative;
}

.felsted-quote-text::before {
    content: '“';
}

.felsted-quote-text::after {
    content: '”';
}

/* Author Line Container */
.felsted-quote-author-line {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* The Yellow/Gold Dash */
.felsted-quote-dash {
    display: inline-block;
    width: 50px;
    height: 3px;
    /* Matching the yellow/gold color from the image */
    background-color: #fff;
    margin-right: 20px;
}

/* Author Name Style */
.felsted-quote-author {
    font-size: 20px;
    font-weight: 700;
    /* Matching the yellow/gold color */
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Responsive Design --- */

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
    .felsted-quote-section {
        padding: 100px 20px;
    }

    .felsted-quote-text {
        font-size: 28px;
    }

    .felsted-quote-bg-graphic {
        font-size: 300px;
        left: -50px;
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    .felsted-quote-section {
        padding: 80px 20px;
    }

    .felsted-quote-text {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .felsted-quote-author {
        font-size: 16px;
    }

    .felsted-quote-dash {
        width: 30px;
        margin-right: 15px;
    }

    .felsted-quote-bg-graphic {
        font-size: 200px;
        left: -80px;
        opacity: 0.5;
    }
}




.felsted-news-wrapper {
    width: 100%;
    background-color: #ffffff;
    padding: 40px 20px 80px 20px;
    font-family: 'PT Sans', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.felsted-news-container {
    width: 100%;
    max-width: 1200px;
}

/* --- 1. Top Separator with Logo --- */
.felsted-top-separator {
    position: relative;
    text-align: center;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* The horizontal lines */
.felsted-separator-line {
    flex-grow: 1;
    height: 1px;
    background-color: #d1d1d1;
    /* Light grey line */
}

/* The Logo Container in the middle */
.felsted-separator-logo {
    padding: 0 20px;
    /* Space around logo */
}

.felsted-separator-logo i {
    font-size: 32px;
    color: #1f2a44;
    /* Dark Blue Logo Color */
}

/* --- 2. The Grid --- */
.felsted-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 Equal Columns */
    gap: 30px;
}

/* --- 3. Card Base Styles --- */
.felsted-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    /* Make them equal height */
}

/* Card Image */
.felsted-card-img-wrapper {
    width: 100%;
    height: 250px;
    /* Fixed height for consistency */
    overflow: hidden;
}

.felsted-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Card Content Box */
.felsted-card-content {
    padding: 30px;
    flex-grow: 1;
    /* Fills remaining space */
    display: flex;
    flex-direction: column;
}

/* Headings */
h3.felsted-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

/* Body Text */
p.felsted-card-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
    /* Pushes button to bottom */
}

/* Buttons */
.felsted-btn {
    display: inline-block;
    padding: 12px 20px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
    border: 1px solid;
    text-align: center;
    transition: all 0.3s ease;
    width: 100%;
    /* Full width button like image */
    margin-top: auto;
}

/* --- 4. Specific Card Variations --- */

/* Card 1: Dark Blue */
.felsted-card-blue .felsted-card-content {
    background-color: #e67215;
    /* Dark Navy */
    color: #ffffff;
}

.felsted-card-blue .felsted-btn {
    color: #ffffff;
    border-color: #ffffff;
}

.felsted-card-blue .felsted-btn:hover {
    background-color: #ffffff;
    color: #1f2a44;
}

/* Card 2: Teal */
.felsted-card-teal .felsted-card-content {
    background-color: #ef9b11;
    /* Teal */
    color: #ffffff;
    /* Dark text */
}

/* No button for teal card in design */

/* Card 3: Yellow */
.felsted-card-yellow .felsted-card-content {
    background-color: #fcd856;
    /* Yellow */
    color: #111111;
}

.felsted-card-yellow .felsted-btn {
    color: #111111;
    border-color: #111111;
    background-color: transparent;
}

.felsted-card-yellow .felsted-btn:hover {
    background-color: #111111;
    color: #fcd856;
}

/* --- Responsiveness --- */
@media (max-width: 992px) {
    .felsted-card-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns on tablet */
    }
}

@media (max-width: 768px) {
    .felsted-card-grid {
        grid-template-columns: 1fr;
        /* Stack on mobile */
        gap: 40px;
    }

    .felsted-card-img-wrapper {
        height: 200px;
    }
}










.health-and-well-section {
    width: 100%;
    padding: 20px 20px 80px;
    display: flex;
    justify-content: center;
}

.health-and-well-container {
    width: 100%;
    max-width: 1200px;
}

/* Main Heading */
h1.health-and-well-main-title {
    font-family: 'PT Sans', sans-serif;
    font-size: 48px;
    color: #ef9b11 !important;
    margin-bottom: 60px;
    font-weight: 700;
}

/* --- Row Layout --- */
.health-and-well-row {
    display: flex;
    gap: 50px;
    margin-bottom: 80px;
    align-items: stretch;
    height: 400px;
    /* Fixed height matches image */
}

.health-and-well-row.reverse {
    flex-direction: row-reverse;
}

/* --- Image Column --- */
.health-and-well-img-col {
    flex: 0 0 55%;
    position: relative;
    height: 100%;
}

.health-and-well-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.health-and-well-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.health-and-well-image-wrapper:hover .health-and-well-img {
    transform: scale(1.05);
}

.health-and-well-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    pointer-events: none;
}

.health-and-well-img-overlay {
    position: absolute;
    bottom: 25px;
    left: 25px;
    z-index: 2;
    text-align: left;
}

.health-and-well-overlay-subtitle {
    display: block;
    color: #fcd856;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
}

.health-and-well-overlay-title {
    display: block;
    color: #ffffff;
    font-family: 'PT Sans', sans-serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 1;
}

/* Inset Colored Borders (Thoda ander me line) */
.border-green {
    box-shadow: inset 0 0 0 1px #4caf50;
}

.border-yellow {
    box-shadow: inset 0 0 0 1px #fcd856;
}

.border-red {
    box-shadow: inset 0 0 0 1px #d65a50;
}

/* --- Text Column (FIXED: Divider below text) --- */
.health-and-well-text-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* Aligns content to top */
    gap: 25px;
    /* Adds space between Title, Paragraph, and Divider */
    padding-top: 5px;
}

.health-and-well-text-top {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

h3.health-and-well-content-title {
    font-family: 'PT Sans', sans-serif;
    font-size: 32px;
    color: #ef9b11 !important;
    margin: 0;
    font-weight: 700;
    line-height: 1.2;
}

p.health-and-well-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin: 0;
    font-weight: 400;
}

/* Divider */
.health-and-well-divider {
    display: flex;
    align-items: center;
    width: 100%;
}

.health-and-well-line {
    height: 1px;
    flex-grow: 1;
}

.line-green {
    background-color: #4caf50;
}

.line-yellow {
    background-color: #fcd856;
}

.line-red {
    background-color: #d65a50;
}

.health-and-well-icon {
    padding: 0 15px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-multi {
    color: #d65a50;
}

/* --- Responsive --- */
@media (max-width: 992px) {

    .health-and-well-row,
    .health-and-well-row.reverse {
        flex-direction: column;
        height: auto;
        gap: 40px;
        align-items: center;
    }

    .health-and-well-img-col {
        flex: auto;
        width: 100%;
        height: 300px;
    }

    .health-and-well-text-col {
        width: 100%;
        flex: auto;
        height: auto;
        text-align: center;
        gap: 30px;
        justify-content: flex-start;
    }

    .health-and-well-divider {
        width: 60%;
        margin: 0 auto;
    }
}










/* --- Main Container --- */

.trip-and-tarve-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 0 50px;
    color: #ef9b11 !important;
}

/* --- Typography and Headings --- */

.trip-and-tarve-main-heading,
.trip-and-tarve-section-heading,
.trip-and-tarve-subsection-heading {
    font-family: "Georgia", "Times New Roman", serif;
    font-weight: 700;
}

.trip-and-tarve-main-heading {
    font-size: 38px;
    margin-top: 20px;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

/* H2 - Learning Beyond the Aviary */
.trip-and-tarve-section-heading {
    font-size: 2rem;
    margin-top: 30px;
    margin-bottom: 20px;
    font-weight: 400;
}

/* H3 - Subheadings */
.trip-and-tarve-subsection-heading {
    font-size: 1.6rem;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 10px;
}

.trip-and-tarve-subsection-heading.trip-and-tarve-recent-heading {
    margin-top: 0;
    /* Aligned with the top of the right column content */
    margin-bottom: 25px;
}

/* Paragraph Text */
.trip-and-tarve-paragraph-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #4b4b4b;
    line-height: 1.75;

    /* Modern justify styling */
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
}


/* --- Breadcrumb/Header --- */

.trip-and-tarve-breadcrumb {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 3px;
    /* Wider letter spacing for a clean look */
    margin-bottom: 10px;
    padding-top: 10px;
    /* Small push down */
}

.trip-and-tarve-breadcrumb .trip-and-tarve-experience {
    color: #000;
    font-weight: 600;
}

.trip-and-tarve-breadcrumb .trip-and-tarve-active {
    color: #f6a71b;
    font-weight: 600;
}

/* --- Separator Element --- */

.trip-and-tarve-separator-icon {
    display: block;
    /* Make it a block element to center the red line */
    text-align: center;
    color: #f6a71b;
    font-size: 1.5rem;
    margin: 30px auto 10px;
    /* Center the icon, add top margin */
    width: 100%;
}

.trip-and-tarve-separator-line {
    border: 0;
    height: 1px;
    background: #ccc;
    margin-bottom: 50px;
    /* Large space below the separator before columns start */
    position: relative;
    max-width: 1200px;
    /* Confine the main line */
    margin-left: 0;
    /* Align main line to the left edge of the content area */
}

.trip-and-tarve-separator-line::before {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    /* Slightly thicker red line */
    background: #f6a71b;
    position: absolute;
    top: -1px;
    left: 0;
}


/* --- Two-Column Layout --- */

.trip-and-tarve-two-column-layout {
    display: flex;
    gap: 100px;
    /* Increased gap for better separation */
}

.trip-and-tarve-left-column {
    flex: 2;
}

.trip-and-tarve-right-column {
    flex: 1;
    padding-top: 20px;
    padding-right: 15px;
}

/* Recent Items Styling (Right Column) */

.trip-and-tarve-recent-item {
    margin-bottom: 30px;
    /* More space between recent links */
}

.trip-and-tarve-recent-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    color: #000;
    line-height: 1.4;
    display: inline-block;
    border-bottom: 3px solid #f6a71b;
    /* Thicker underline */
    padding-bottom: 2px;
}

.trip-and-tarve-recent-title:hover {
    color: #f6a71b;
}

.trip-and-tarve-recent-separator {
    border: 0;
    height: 1px;
    background: #e0e0e0;
    margin: 5px 0 35px 0;
    /* Adjusted vertical position */
}

/* --- Responsiveness (Updated for better mobile experience) --- */

@media (max-width: 900px) {
    .trip-and-tarve-container {
        padding: 0 20px;
    }

    .trip-and-tarve-main-heading {
        font-size: 2.5rem;
        margin-bottom: 30px;
    }

    .trip-and-tarve-two-column-layout {
        flex-direction: column;
        gap: 0;
    }

    .trip-and-tarve-right-column {
        padding-top: 0;
        margin-top: 20px;
        border-top: 1px solid #ccc;
        padding-top: 20px;
        /* Push content down after the border */
    }
}

@media (max-width: 575px) {
    body {
        padding: 20px 10px;
    }

    .trip-and-tarve-main-heading {
        font-size: 2rem;
    }

    .trip-and-tarve-section-heading {
        font-size: 1.5rem;
    }

    .trip-and-tarve-subsection-heading {
        font-size: 1.3rem;
    }
    .trip-and-tarve-paragraph-text{
        font-size: 14px;
    }
}