/* Base Styles */
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #000000;
  margin: 0;
  padding: 0;
}

h2,h3{
    color: #0b2e4f !important;
}

.importance-image {
  display: block;
  margin: 0 auto;     /* Center the image */
  max-width: 100%;    /* Responsive */
  height: auto;       /* Maintain proportion */
}


.outings-hero {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
}

.outings-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.outings-hero-content {
    z-index: 2;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
}

.outings-hero-title {
    font-weight: 700;
    color: #000;
}


/* ===================== Outings Section ===================== */
.outings-intro {
    background-color: #f7f7f7; /* light gray background */
    padding: 80px 20px;        /* vertical and horizontal padding */
}

.outings-intro h2 {
    font-size: 2.5rem;         /* heading size */
    font-weight: 700;          /* bold heading */
    color: #222;               /* dark text color */
    text-shadow: 1px 1px 3px rgba(0,0,0,0.1); /* subtle shadow */
}

.outings-intro p {
    font-size: 1.2rem;         /* paragraph font size */
    line-height: 1.8;          /* spacing between lines */
    color: #555;               /* medium gray for easy reading */
    max-width: 900px;          /* limit width for better readability */
    margin: 0 auto 20px auto;  /* center paragraphs with spacing below */
}

@media (max-width: 768px) {
    .outings-intro h2 {
        font-size: 2rem;
    }
    .outings-intro p {
        font-size: 1rem;
    }
}


/* ===================== Private Outing Transport ===================== */
.private-outings {
    background-color: #fdfdfd;
    padding: 80px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-top: 40px;
}

.private-outings h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    text-align: center;
    margin-bottom: 30px;
}

.private-outings h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #222;        /* Same color as h2 */
    text-align: center; /* Align center like h2 */
    margin-top: 40px;
    margin-bottom: 20px;
}

.private-outings p {
    font-size: 1.2rem;
    color: #000;        /* Updated */
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 20px auto;
    text-align: justify;
}

.private-outings ul {
    list-style-type: disc;
    padding-left: 40px;
    max-width: 850px;
    margin: 0 auto 20px auto;
}

.private-outings ul li {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #000;        /* Updated */
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .private-outings h2 {
        font-size: 2rem;
    }
    .private-outings h3 {
        font-size: 1.6rem;
    }
    .private-outings p,
    .private-outings ul li {
        font-size: 1rem;
    }
}


/* ===================== Your Outing, Your Way ===================== */
.outing-way {
    background-color: #f9f9f9;
    padding: 80px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-top: 40px;
}

.outing-way h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    text-align: center;
    margin-bottom: 40px;
}

/* ==== LEFT-SIDE BOX STYLE ==== */
.outing-box {
    background: #fff;
    border-left: 6px solid #007bff;
    padding: 25px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    max-width: 900px;
    margin: 40px auto;
}

/* h3 inside box */
.outing-box h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 20px;
    text-align: left;
}

/* List inside box */
.outing-box ul {
    list-style-type: disc;
    padding-left: 30px;
    margin: 0;
}

.outing-box ul li {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.outing-box ul li strong {
    color: #222;
}

/* Paragraph inside box */
.outing-box p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #555;
    margin: 0;
    text-align: left;
}

/* Responsive */
@media (max-width: 768px) {
    .outing-way h2 {
        font-size: 2rem;
    }
    .outing-box h3 {
        font-size: 1.6rem;
    }
    .outing-box ul li,
    .outing-box p {
        font-size: 1rem;
    }
}



/* ===================== Real Houston Rider Stories ===================== */
.rider-stories {
    background-color: #f2f6f8;
    padding: 80px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-top: 40px;
}

.rider-stories h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    text-align: center;
    margin-bottom: 50px;
}

.rider-stories .story {
    max-width: 900px;
    margin: 0 auto 40px auto;
    background-color: #fff;
    padding: 30px 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.rider-stories .story p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.rider-stories .story span {
    display: block;
    font-size: 1rem;
    color: #888;
    font-style: italic;
    text-align: right;
}

@media (max-width: 768px) {
    .rider-stories h2 {
        font-size: 2rem;
    }
    .rider-stories .story p {
        font-size: 1rem;
    }
    .rider-stories .story span {
        font-size: 0.95rem;
    }
}


/* ===================== Trust Section ===================== */
.trust-section {
    background-color: #f9f9f9;
    padding: 80px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-top: 40px;
}

.trust-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    text-align: center;
    margin-bottom: 40px;
}

.trust-section .trust-list {
    max-width: 800px;
    margin: 0 auto;
    padding-left: 20px;
    list-style: disc inside;
}

.trust-section .trust-list li {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .trust-section h2 {
        font-size: 2rem;
    }
    .trust-section .trust-list li {
        font-size: 1rem;
    }
}



.faqs-section {
    background-color: #f8f9fa;
}

.faqs-section h2 {
    font-size: 2.5rem;
    color: #222;
}

.accordion-button {
    font-weight: 600;
    color: #333;
}

.accordion-button:not(.collapsed) {
    color: #333;
    background-color: #e7f1ff;
}

.accordion-body {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}


.extra-features h2 {
    font-size: 2rem;
    color: #222;
}

.extra-features .list-group-item {
    font-size: 1.1rem;
    color: #555;
    padding-left: 15px;
}

.liberty-section h2 {
    font-size: 2rem;
    color: #0d6efd;
}

.liberty-section p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.7;
}

.btn-primary {
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
}
