
        /* --- General Styles & CSS Reset --- */
        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

        :root {
            --tp-green: #34e0a1;
            --tp-dark-green: #004f32;
            --tp-text: #333;
            --tp-text-light: #555;
            --tp-border: #e0e0e0;
            --tp-bg: #f2f2f2;
            --promo-pink: #ffdceb;
            --brand-bg: #f8f9fa;
            --brand-text: #212529;
            --brand-link: #007bff;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
            background-color: #fff;
            color: var(--tp-text);
            line-height: 1.6;
        }

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

        a {
            text-decoration: none;
            color: var(--tp-dark-green);
        }
        
        button {
            cursor: pointer;
            border: none;
            font-family: inherit;
        }

        /* --- Brand CM8 Banner (Sticky) --- */
        .brand-banner {
            background-color: var(--brand-bg);
            padding: 12px 20px;
            border-bottom: 1px solid #dee2e6;
            text-align: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            width: 100%;
            font-size: 14px;
        }
        .brand-banner h3 {
            font-size: 16px;
            color: var(--brand-text);
            margin: 0 0 5px 0;
            font-weight: 600;
        }
        .brand-banner p {
            margin: 0 0 8px 0;
            color: #495057;
        }
        .brand-banner a {
            color: var(--brand-link);
            font-weight: 600;
        }

        /* --- Header --- */
        .main-header {
            padding: 15px 0;
            border-bottom: 1px solid var(--tp-border);
            background: #fff;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo-image {
            width: 150px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
        }   
        .logo {
            font-size: 28px;
            font-weight: 700;
            color: var(--tp-dark-green);
        }
        .logo i {
            color: var(--tp-green);
        }
        .main-nav {
            display: flex;
            gap: 25px;
            font-weight: 500;
        }
        .main-nav a {
            color: var(--tp-text);
            padding-bottom: 5px;
            border-bottom: 2px solid transparent;
        }
        .main-nav a:hover, .main-nav a.active {
            color: var(--tp-dark-green);
            border-bottom: 2px solid var(--tp-dark-green);
        }
        .header-actions {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        .header-actions .search-box {
            position: relative;
        }
        .header-actions .search-box i {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--tp-text-light);
        }
        .header-actions .search-box input {
            border-radius: 50px;
            border: 1px solid var(--tp-border);
            padding: 10px 15px 10px 40px;
            width: 250px;
        }
        .btn-signin {
            background-color: var(--tp-dark-green);
            color: #fff;
            padding: 10px 20px;
            border-radius: 50px;
            font-weight: 600;
        }
        
        /* --- Promo Banners --- */
        .dog-friendly-promo {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 20px;
            background-color: #f7f7f7;
            border-radius: 8px;
            margin: 20px 0;
        }
        .dog-friendly-promo img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
        }
        .dog-friendly-promo-text h3 {
            font-size: 1.2rem;
            margin-bottom: 5px;
        }
        .dog-friendly-promo a {
            display: inline-block;
            margin-top: 10px;
            padding: 8px 16px;
            border: 1px solid var(--tp-dark-green);
            border-radius: 20px;
            color: var(--tp-dark-green);
            font-weight: 600;
        }

        /* --- Main Content --- */
        .breadcrumbs {
            font-size: 0.9rem;
            color: var(--tp-text-light);
            margin: 20px 0;
        }
        .breadcrumbs a {
             color: var(--tp-text-light);
        }
        .main-title {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 30px;
        }

        .main-layout {
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 40px;
        }

        /* --- Left Sidebar (Filters) --- */
        .filters {
            border-right: 1px solid var(--tp-border);
            padding-right: 30px;
        }
        .filter-group {
            padding-bottom: 20px;
            margin-bottom: 20px;
            border-bottom: 1px solid var(--tp-border);
        }
        .filter-group h3 {
            font-size: 1.1rem;
            margin-bottom: 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .filter-group ul {
            list-style: none;
        }
        .filter-group li {
            margin-bottom: 10px;
        }
        .filter-group label {
            display: flex;
            align-items: center;
            cursor: pointer;
        }
        .filter-group input[type="checkbox"] {
            margin-right: 10px;
            width: 18px;
            height: 18px;
        }
        .filter-toggle {
            color: var(--tp-dark-green);
            font-weight: 600;
            cursor: pointer;
        }
        .hidden-filter {
            display: none;
        }
        .rating-filter {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .rating-filter .stars {
            color: var(--tp-green);
        }
        .all-things-link {
            font-weight: 600;
            margin-bottom: 20px;
            display: inline-block;
        }

        /* --- Right Column (Listings) --- */
        .results-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            font-size: 0.9rem;
        }
        .sort-control {
            border: 1px solid var(--tp-border);
            padding: 8px 12px;
            border-radius: 20px;
        }
        
        .listing-card {
            display: flex;
            gap: 20px;
            padding-bottom: 30px;
            margin-bottom: 30px;
            border-bottom: 1px solid var(--tp-border);
        }
        .listing-image-container {
            position: relative;
            width: 300px;
            height: 200px;
            flex-shrink: 0;
        }
        .listing-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 8px;
        }
        .listing-image-placeholder {
            width: 100%;
            height: 100%;
            background-color: var(--tp-bg);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ccc;
            font-size: 3rem;
        }
        .heart-icon {
            position: absolute;
            top: 15px;
            right: 15px;
            color: white;
            background-color: rgba(0,0,0,0.3);
            border-radius: 50%;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }
        .image-dots {
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 5px;
        }
        .image-dots span {
            width: 6px;
            height: 6px;
            background-color: rgba(255,255,255,0.7);
            border-radius: 50%;
        }
        .image-dots span.active {
            background-color: white;
        }
        .listing-details {
            display: flex;
            flex-direction: column;
        }
        .listing-title {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 5px;
        }
        .listing-rating {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
            margin-bottom: 10px;
        }
        .listing-rating .stars {
            color: var(--tp-green);
        }
        .listing-category {
            color: var(--tp-text-light);
            font-size: 0.9rem;
            margin-bottom: 15px;
        }
        .listing-review {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-top: auto;
            font-size: 0.9rem;
        }
        .reviewer-avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            object-fit: cover;
        }
        .listing-review-text {
            color: var(--tp-text-light);
        }
        .listing-review-text strong {
            font-weight: 600;
            color: var(--tp-text);
        }
        .btn-see-tours {
            background-color: var(--tp-green);
            color: var(--tp-dark-green);
            font-weight: 700;
            padding: 10px 20px;
            border-radius: 20px;
            margin-top: 10px;
            align-self: flex-start;
        }

        /* --- Traveler Reviews Section --- */
        .traveler-reviews {
            margin: 40px 0;
        }
        .traveler-reviews h2 {
            font-size: 1.5rem;
            margin-bottom: 20px;
        }
        .review-cards-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        .review-card {
            border: 1px solid var(--tp-border);
            border-radius: 8px;
            padding: 20px;
            display: flex;
            flex-direction: column;
        }
        .review-card-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
        }
        .review-card-header img {
            width: 48px;
            height: 48px;
            border-radius: 50%;
        }
        .review-card-header h4 {
            font-size: 1rem;
            font-weight: 600;
        }
        .review-card .stars {
            color: var(--tp-green);
            margin-bottom: 10px;
        }
        .review-card h5 {
            font-size: 1.1rem;
            margin-bottom: 10px;
        }
        .review-card p {
            font-size: 0.9rem;
            color: var(--tp-text-light);
            flex-grow: 1;
        }
        .review-card a {
            font-weight: 600;
            color: var(--tp-dark-green);
            margin-top: 10px;
        }
        .review-of-link {
            font-size: 0.8rem;
            color: var(--tp-text-light);
            margin-top: 15px;
        }

        /* --- Award Adventure Promo --- */
        .adventure-promo {
            background-color: var(--promo-pink);
            border-radius: 8px;
            padding: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 40px 0;
        }
        .adventure-promo-content {
            flex-grow: 1;
        }
        .adventure-promo h3 {
            font-size: 1.8rem;
            font-weight: 700;
            color: #333;
        }
        .adventure-promo p {
            font-size: 1.1rem;
            color: #555;
        }
        .adventure-promo img {
            width: 120px;
            height: 120px;
            object-fit: cover;
            border-radius: 8px;
            margin-right: 30px;
        }
        .btn-see-list {
            background-color: var(--tp-dark-green);
            color: #fff;
            padding: 12px 25px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1rem;
        }
        
        /* --- Footer --- */
        .main-footer {
            background-color: var(--tp-bg);
            padding: 40px 0 20px 0;
            margin-top: 50px;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            padding-bottom: 30px;
            border-bottom: 1px solid var(--tp-border);
        }
        .footer-column h4 {
            margin-bottom: 15px;
            font-size: 1rem;
            font-weight: 600;
        }
        .footer-column ul {
            list-style: none;
        }
        .footer-column li {
            margin-bottom: 8px;
        }
        .footer-column a {
            color: var(--tp-text-light);
            font-size: 0.9rem;
        }
        .footer-bottom {
            padding-top: 20px;
            font-size: 0.8rem;
            color: var(--tp-text-light);
        }
        .footer-bottom-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }
        .footer-logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--tp-dark-green);
        }
        .footer-legal-links a {
             margin-left: 15px;
             color: var(--tp-text-light);
             font-weight: 600;
        }

        /* --- Limited Time Offer Pop-up --- */
        .offer-popup {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
            padding: 25px;
            width: 350px;
            z-index: 1001;
            transition: opacity 0.3s, transform 0.3s;
        }
        .offer-popup.hidden {
            opacity: 0;
            transform: translateY(20px);
            pointer-events: none;
        }
        .offer-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 15px;
        }
        .offer-header h4 {
            font-size: 1.1rem;
            font-weight: 700;
        }
        .offer-dismiss {
            font-size: 1.5rem;
            color: #aaa;
            cursor: pointer;
            background: none;
            border: none;
            line-height: 1;
        }
        .offer-content {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        .offer-icon {
            font-size: 3rem;
            color: #fff;
            background-color: #f7a800;
            padding: 10px;
            border-radius: 8px;
        }
        .offer-text p {
            font-size: 1rem;
        }
        .offer-footer {
            margin-top: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .offer-footer a {
            font-size: 0.8rem;
            color: var(--tp-text-light);
            text-decoration: underline;
        }
        .btn-dismiss {
            background-color: var(--tp-dark-green);
            color: white;
            padding: 10px 25px;
            border-radius: 20px;
            font-weight: 600;
        }
    