:root {
            --primary-color: #1a5632;
            --secondary-color: #e6a756;
            --accent-color: #d35400;
            --light-color: #f8f9fa;
            --dark-color: #333;
        }
        
        body {
            font-family: 'Roboto', sans-serif;
            color: #444;
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, h5 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            color: var(--primary-color);
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--primary-color) !important;
        }
        
        .navbar-brand span {
            color: var(--accent-color);
        }
        
        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1516426122078-c23e76319801?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 120px 0 80px;
            margin-top: 76px;
        }
        
        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            padding: 10px 30px;
            font-weight: 500;
        }
        
        .btn-primary:hover {
            background-color: #134326;
            border-color: #134326;
        }
        
        .btn-secondary {
            background-color: var(--secondary-color);
            border-color: var(--secondary-color);
            color: #333;
            padding: 10px 30px;
            font-weight: 500;
        }
        
        .btn-secondary:hover {
            background-color: #d3943e;
            border-color: #d3943e;
        }
        
        .section-title {
            position: relative;
            margin-bottom: 50px;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background-color: var(--secondary-color);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .trip-card {
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            height: 100%;
        }
        
        .trip-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .trip-card img {
            height: 200px;
            width: 100%;
            object-fit: cover;
        }
        
        .trip-card .card-body {
            padding: 25px;
        }
        
        .trip-price {
            color: var(--accent-color);
            font-weight: 700;
            font-size: 1.5rem;
        }
        
        .highlight-bg {
            background-color: rgba(26, 86, 50, 0.05);
            padding: 80px 0;
        }
        
        footer {
            background-color: var(--primary-color);
            color: white;
            padding: 60px 0 30px;
        }
        
        footer h5 {
            color: white;
            margin-bottom: 25px;
            font-weight: 600;
        }
        
        footer a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        footer a:hover {
            color: var(--secondary-color);
        }
        
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            margin-top: 50px;
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
        }
        
        /* Single Trip Page Styles */
        .trip-hero {
            background-size: cover;
            background-position: center;
            color: white;
            padding: 150px 0 80px;
            margin-top: 76px;
        }
        
        .trip-details {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }
        
        .trip-itinerary {
            border-left: 4px solid var(--secondary-color);
            padding-left: 20px;
        }
        
        .itinerary-item {
            margin-bottom: 30px;
            position: relative;
        }
        
        .itinerary-item:before {
            content: '';
            position: absolute;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background-color: var(--secondary-color);
            left: -28px;
            top: 5px;
        }
        
        .included-item {
            color: var(--primary-color);
            margin-bottom: 8px;
        }
        
        .included-item i {
            color: var(--secondary-color);
            margin-right: 10px;
        }
        
        .booking-form {
            background-color: rgba(26, 86, 50, 0.05);
            padding: 30px;
            border-radius: 10px;
        }
        
        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.25rem rgba(26, 86, 50, 0.25);
        }