
        /* Reuse the same CSS variables and base styles from the main page */
        :root {
            --primary: #1a75bc;
            --secondary: #f39c12;
            --dark: #2c3e50;
            --light: #ecf0f1;
            --accent: #27ae60;
            --dark-blue: #0a2540;
            --bg-color: #f8f9fa;
            --text-color: #333;
            --card-bg: #ffffff;
            --header-bg: #ffffff;
            --footer-bg: #2c3e50;
            --footer-text: #bbb;
            --border-color: #ddd;
            --shadow: 0 5px 15px rgba(0,0,0,0.1);
            --shadow-lg: 0 15px 30px rgba(0,0,0,0.15);
            --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            --transition-slow: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--text-color);
            line-height: 1.6;
            background-color: var(--bg-color);
            overflow-x: hidden;
            padding-top: 0;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* Skip to main content for accessibility */
        .skip-link {
            position: absolute;
            top: -40px;
            left: 0;
            background: var(--primary);
            color: white;
            padding: 8px;
            z-index: 10000;
            text-decoration: none;
            border-radius: 0 0 4px 0;
            transition: var(--transition);
        }

        .skip-link:focus {
            top: 0;
        }

        /* Animation Classes */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .slide-up {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .slide-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Header Styles - Same as main page */
        .topbar {
            background-color: var(--dark);
            color: white;
            padding: 8px 0;
            font-size: 14px;
            position: relative;
            z-index: 1002;
        }

        .topbar a {
            color: white;
            text-decoration: none;
            transition: var(--transition);
        }

        .topbar a:hover {
            color: var(--secondary);
        }

        .topbar-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .topbar-contact {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            align-items: center;
        }

        .topbar-contact span {
            white-space: nowrap;
        }

        .topbar-social {
            font-size: 16px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        /* Navbar */
        .navbar {
            padding: 15px 0;
            transition: var(--transition);
            background-color: var(--primary);
            position: fixed;
            top: 40px;
            left: 0;
            width: 100%;
            z-index: 1001;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .navbar.sticky {
            position: fixed;
            background-color: var(--primary);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 10px 0;
            top: 0;
        }

        .navbar-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .navbar-brand {
            font-weight: 700;
            font-size: 24px;
            color: white;
            text-decoration: none;
            transition: var(--transition);
        }

        .navbar.sticky .navbar-brand {
            color: white;
        }

        .navbar-brand span {
            color: var(--secondary);
        }

        /* Navigation Menu - Same as main page */
        .navbar-nav {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
            position: relative;
        }

        .nav-item {
            position: relative;
        }

        .navbar-nav .nav-link {
            color: white;
            font-weight: 500;
            margin: 0 10px;
            transition: var(--transition);
            text-decoration: none;
            position: relative;
            display: flex;
            align-items: center;
            padding: 10px 15px;
            border-radius: 4px;
        }

        .nav-link.has-dropdown::after {
            content: '\f107';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            margin-left: 5px;
            font-size: 14px;
        }

        .navbar.sticky .navbar-nav .nav-link {
            color: white;
        }

        .navbar-nav .nav-link:hover {
            color: var(--secondary);
            background: rgba(255, 255, 255, 0.1);
        }

        /* Mega Menu Styles - Same as main page */
        .mega-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: white;
            box-shadow: var(--shadow-lg);
            border-radius: 8px;
            min-width: 800px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: var(--transition);
            z-index: 1000;
            padding: 25px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .mega-menu.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        /* Fix for Pilgrimages menu overflow */
        .nav-item:nth-child(4) .mega-menu {
            right: 0;
            left: auto;
            min-width: 700px;
        }

        .mega-menu-column {
            display: flex;
            flex-direction: column;
        }

        .mega-menu-heading {
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 15px;
            color: var(--dark);
            padding-bottom: 8px;
            border-bottom: 2px solid var(--primary);
        }

        .mega-menu-link {
            display: block;
            padding: 8px 0;
            color: var(--dark);
            text-decoration: none;
            transition: var(--transition);
            position: relative;
        }

        .mega-menu-link:hover {
            color: var(--primary);
            padding-left: 8px;
        }

        .mega-menu-link.has-nested::after {
            content: '\f105';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            position: absolute;
            right: 0;
        }

        /* Mobile Navigation - Same as main page */
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            transition: var(--transition);
        }

        .nav-toggle:hover {
            color: var(--secondary);
        }

        .mobile-nav {
            position: fixed;
            top: 0;
            left: -100%;
            width: 300px;
            height: 100vh;
            background-color: white;
            box-shadow: 2px 0 10px rgba(0,0,0,0.1);
            z-index: 1001;
            overflow-y: auto;
            transition: var(--transition);
        }

        .mobile-nav.active {
            left: 0;
        }

        .mobile-nav-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px;
            background-color: var(--primary);
            color: white;
        }

        .mobile-nav-close {
            background: none;
            border: none;
            color: white;
            font-size: 20px;
            cursor: pointer;
            transition: var(--transition);
        }

        .mobile-nav-close:hover {
            color: var(--secondary);
        }

        .mobile-nav-list {
            list-style: none;
            padding: 0;
        }

        .mobile-nav-item {
            border-bottom: 1px solid var(--border-color);
        }

        .mobile-nav-link {
            display: block;
            padding: 15px;
            color: var(--dark);
            text-decoration: none;
            font-weight: 500;
            position: relative;
        }

        .mobile-nav-link.has-dropdown::after {
            content: '\f107';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            position: absolute;
            right: 15px;
            transition: transform 0.3s ease;
        }

        .mobile-nav-link.has-dropdown.active::after {
            transform: rotate(180deg);
        }

        .mobile-submenu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background-color: #f8f9fa;
        }

        .mobile-submenu.active {
            max-height: 500px;
        }

        .mobile-submenu-link {
            display: block;
            padding: 12px 15px 12px 30px;
            color: var(--dark);
            text-decoration: none;
            border-bottom: 1px solid #e9ecef;
        }

        .mobile-submenu-link:last-child {
            border-bottom: none;
        }

        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
            z-index: 1000;
            display: none;
        }

        .overlay.active {
            display: block;
        }

        /* Theme Toggle */
        .theme-toggle {
            background: none;
            border: none;
            color: white;
            font-size: 20px;
            cursor: pointer;
            transition: var(--transition);
        }

        .theme-toggle:hover {
            color: var(--secondary);
        }

        /* Active Menu Item */
        .nav-link.active {
            color: var(--secondary);
        }

        /* Page Hero */
        .page-hero {
            height: 70vh;
            background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('gonder-simien-hero.jpeg');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            margin-top: 100px;
        }

        .page-hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .page-hero-content p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
        }

        /* Breadcrumb */
        .breadcrumb {
            background-color: var(--light);
            padding: 15px 0;
            font-size: 0.9rem;
        }

        .breadcrumb a {
            color: var(--primary);
            text-decoration: none;
        }

        .breadcrumb a:hover {
            text-decoration: underline;
        }

        .breadcrumb span {
            color: var(--dark);
        }

        /* Content Sections */
        section {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
            color: var(--dark);
            font-size: 2.5rem;
        }

        .section-title h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 70px;
            height: 3px;
            background-color: var(--primary);
        }

        .section-title p {
            color: #777;
            max-width: 700px;
            margin: 15px auto 0;
        }

        /* Introduction Section */
        .intro-section {
            background-color: var(--card-bg);
        }

        .intro-content {
            display: flex;
            align-items: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        .intro-text {
            flex: 1;
            min-width: 300px;
        }

        .intro-image {
            flex: 1;
            min-width: 300px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .intro-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: var(--transition);
        }

        .intro-image:hover img {
            transform: scale(1.05);
        }

        /* Destination Tabs */
        .destination-tabs {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 40px;
            justify-content: center;
        }

        .destination-tab {
            padding: 12px 25px;
            background-color: var(--card-bg);
            border: 2px solid var(--primary);
            border-radius: 30px;
            cursor: pointer;
            transition: var(--transition);
            font-weight: 600;
            font-size: 1.1rem;
        }

        .destination-tab.active {
            background-color: var(--primary);
            color: white;
        }

        .destination-content {
            display: none;
        }

        .destination-content.active {
            display: block;
        }

        /* Gonder Highlights */
        .gonder-highlights {
            background-color: var(--bg-color);
        }

        .highlights-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }

        .highlight-card {
            background-color: var(--card-bg);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .highlight-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .highlight-image {
            height: 200px;
            background-size: cover;
            background-position: center;
        }

        .highlight-content {
            padding: 25px;
        }

        .highlight-content h3 {
            color: var(--dark);
            margin-bottom: 15px;
            font-size: 1.3rem;
        }

        .highlight-content p {
            color: #666;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        /* Simien Mountains Section */
        .simien-section {
            background-color: var(--card-bg);
        }

        .simien-features {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .feature-card {
            background-color: var(--bg-color);
            border-radius: 10px;
            padding: 30px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            text-align: center;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .feature-icon {
            font-size: 40px;
            color: var(--primary);
            margin-bottom: 20px;
            display: inline-block;
            height: 80px;
            width: 80px;
            line-height: 80px;
            border-radius: 50%;
            background: rgba(26, 117, 188, 0.1);
            transition: var(--transition);
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1);
        }

        .feature-card h3 {
            color: var(--dark);
            margin-bottom: 15px;
        }

        .feature-card p {
            color: #666;
            line-height: 1.6;
        }

        /* Trekking Options */
        .trekking-section {
            background-color: var(--bg-color);
        }

        .trekking-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }

        .trek-card {
            background-color: var(--card-bg);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .trek-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .trek-image {
            height: 200px;
            background-size: cover;
            background-position: center;
        }

        .trek-content {
            padding: 25px;
        }

        .trek-content h3 {
            color: var(--dark);
            margin-bottom: 15px;
            font-size: 1.3rem;
        }

        .trek-content p {
            color: #666;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .trek-details {
            display: flex;
            justify-content: space-between;
            margin-bottom: 20px;
            font-size: 0.9rem;
            color: #777;
        }

        .trek-detail {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        /* Wildlife Section */
        .wildlife-section {
            background-color: var(--card-bg);
        }

        .wildlife-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }

        .wildlife-card {
            background-color: var(--bg-color);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .wildlife-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .wildlife-image {
            height: 200px;
            background-size: cover;
            background-position: center;
        }

        .wildlife-content {
            padding: 25px;
            text-align: center;
        }

        .wildlife-content h3 {
            color: var(--dark);
            margin-bottom: 10px;
            font-size: 1.3rem;
        }

        .wildlife-content p {
            color: #666;
            margin-bottom: 15px;
            line-height: 1.6;
        }

        .status {
            display: inline-block;
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .status.endangered {
            background-color: #ffebee;
            color: #c62828;
        }

        .status.vulnerable {
            background-color: #fff3e0;
            color: #ef6c00;
        }

        .status.least-concern {
            background-color: #e8f5e9;
            color: #2e7d32;
        }

        /* Combined Tours Section */
        .combined-tours-section {
            background-color: var(--bg-color);
        }

        .tours-container {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }

        .tour-card {
            flex: 1;
            min-width: 300px;
            background-color: var(--card-bg);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .tour-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .tour-header {
            padding: 20px;
            background-color: var(--primary);
            color: white;
            text-align: center;
        }

        .tour-header h3 {
            margin-bottom: 5px;
        }

        .tour-price {
            font-size: 1.5rem;
            font-weight: 700;
        }

        .tour-duration {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        .tour-content {
            padding: 25px;
        }

        .tour-features {
            list-style: none;
            margin-bottom: 25px;
        }

        .tour-features li {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .tour-features i {
            color: var(--accent);
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('gonder-simien-cta.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
            text-align: center;
            padding: 100px 0;
        }

        .cta-section h2 {
            color: white;
            margin-bottom: 30px;
            font-size: 2.5rem;
        }

        .cta-section p {
            max-width: 700px;
            margin: 0 auto 30px;
            font-size: 1.2rem;
        }

        /* Buttons */
        .btn {
            display: inline-block;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 4px;
            transition: var(--transition);
            text-decoration: none;
            border: none;
            cursor: pointer;
            font-size: 16px;
            text-align: center;
        }

        .btn-primary {
            background-color: var(--primary);
            color: white;
        }

        .btn-primary:hover {
            background-color: #1565a3;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }

        .btn-outline-primary {
            color: white;
            border: 2px solid white;
            background: transparent;
        }

        .btn-outline-primary:hover {
            background-color: white;
            color: var(--primary);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }

        /* Footer */
        footer {
            background-color: var(--footer-bg);
            color: white;
            padding: 60px 0 0;
        }

        .footer-widget {
            margin-bottom: 30px;
        }

        .footer-widget h4 {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 20px;
            color: white;
        }

        .footer-widget h4:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: var(--primary);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-links a {
            color: var(--footer-text);
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--primary);
            padding-left: 5px;
        }

        .footer-social {
            margin-top: 20px;
            display: flex;
            gap: 10px;
        }

        .footer-social a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: rgba(255,255,255,0.1);
            color: white;
            border-radius: 50%;
            line-height: 40px;
            text-align: center;
            transition: var(--transition);
            text-decoration: none;
        }

        .footer-social a:hover {
            background-color: var(--primary);
            transform: translateY(-3px);
        }

        .copyright {
            background-color: rgba(0,0,0,0.2);
            padding: 20px 0;
            margin-top: 40px;
            text-align: center;
        }

        .copyright-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }

        /* Floating Buttons */
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 25px;
            right: 25px;
            background-color: #25d366;
            color: #FFF;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 2px 2px 3px #999;
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: var(--transition);
        }

        .whatsapp-float:hover {
            background-color: #128C7E;
            transform: scale(1.1);
        }

        .scroll-to-top {
            position: fixed;
            width: 50px;
            height: 50px;
            bottom: 85px;
            right: 25px;
            background-color: var(--primary);
            color: #FFF;
            border-radius: 50px;
            text-align: center;
            font-size: 20px;
            box-shadow: 2px 2px 3px #999;
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: var(--transition);
            opacity: 0;
            visibility: hidden;
        }

        .scroll-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .scroll-to-top:hover {
            background-color: #1565a3;
            transform: scale(1.1);
        }

        /* Responsive Styles */
        @media (max-width: 991px) {
            .navbar-nav {
                display: none;
            }
            
            .nav-toggle {
                display: block;
            }
            
            .topbar-contact {
                justify-content: center;
            }
            
            .mega-menu {
                min-width: 600px;
                grid-template-columns: repeat(2, 1fr);
            }
            
            .page-hero-content h1 {
                font-size: 2.5rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .tours-container {
                flex-direction: column;
            }
        }

        @media (max-width: 767px) {
            .mega-menu {
                min-width: 300px;
                grid-template-columns: 1fr;
            }
            
            .topbar-contact {
                flex-direction: column;
                text-align: center;
                gap: 8px;
            }
            
            .topbar-contact span {
                display: block;
                margin-bottom: 5px;
            }
            
            .page-hero {
                height: 60vh;
                margin-top: 80px;
            }
            
            .page-hero-content h1 {
                font-size: 2rem;
            }
            
            .page-hero-content p {
                font-size: 1rem;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .copyright-inner {
                flex-direction: column;
                gap: 10px;
            }
            
            .highlights-grid,
            .simien-features,
            .trekking-grid,
            .wildlife-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 575px) {
            .section-title h2 {
                font-size: 1.5rem;
            }
            
            .btn-primary, .btn-outline-primary {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
            
            .whatsapp-float {
                width: 50px;
                height: 50px;
                font-size: 24px;
                bottom: 20px;
                right: 20px;
            }
            
            .scroll-to-top {
                width: 40px;
                height: 40px;
                font-size: 16px;
                bottom: 75px;
                right: 20px;
            }
            
            .destination-tabs {
                flex-direction: column;
                align-items: center;
            }
        }
    