:root {
      --bs-primary: #1a4f8c;
      --bs-primary-rgb: 26, 79, 140;
      --secondary: #d4af37;
      --dark: #2c3e50;
      --light-bg: #f8f9fa;
    }
    body {
      font-family: 'Poppins', sans-serif;
      scroll-behavior: smooth;
      line-height: 1.7;
    }
    .display-font {
      font-family: 'Playfair Display', serif;
    }
    .navbar-brand { 
      font-family: 'Playfair Display', serif;
      font-weight: 700;
    }
    .navbar-brand span { color: var(--secondary); }
    .hero {
      background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
                  url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
      min-height: 100vh;
      display: flex;
      align-items: center;
    }
    .cta-section {
      background: linear-gradient(rgba(26, 79, 140, 0.95), rgba(26, 79, 140, 0.95)),
                  url('https://images.unsplash.com/photo-1523531294919-4bcd7c65e216?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    }
    .card-hover {
      transition: all 0.3s ease;
    }
    .card-hover:hover {
      transform: translateY(-8px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
    }
    .logo_img{
      max-width: 100%;
    }
    .destination-card {
      position: relative;
      overflow: hidden;
      border-radius: 0.5rem;
      height: 380px;
    }
    .destination-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(transparent, rgba(0,0,0,0.85));
      color: white;
      padding: 3rem 1.5rem 1.5rem;
      transform: translateY(20px);
      transition: transform 0.4s ease;
    }
    .destination-card:hover .destination-overlay {
      transform: translateY(0);
    }
    .section-title {
      position: relative;
      display: inline-block;
      padding-bottom: 0.5rem;
      font-family: 'Playfair Display', serif;
    }
    .section-title::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 4px;
      background: var(--secondary);
      border-radius: 2px;
    }
    .team-img {
      width: 140px;
      height: 140px;
      object-fit: cover;
      border: 5px solid #e9ecef;
    }
    .call-extension {
      position: fixed;
      bottom: 30px;
      right: 30px;
      z-index: 1000;
    }
    .call-btn {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
      animation: pulse 2s infinite;
    }
    @keyframes pulse {
      0% { box-shadow: 0 0 0 0 rgba(26, 79, 140, 0.7); }
      70% { box-shadow: 0 0 0 10px rgba(26, 79, 140, 0); }
      100% { box-shadow: 0 0 0 0 rgba(26, 79, 140, 0); }
    }
    .call-modal .modal-content {
      border-radius: 1rem;
      overflow: hidden;
    }
    .contact-info-box {
      background-color: var(--light-bg);
      border-radius: 0.5rem;
      padding: 2rem;
      height: 100%;
    }
    .stat-number {
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--bs-primary);
    }
    .package-price {
      font-size: 1.75rem;
      font-weight: 700;
      color: var(--bs-primary);
    }
    .btn-primary {
      background-color: var(--bs-primary);
      border-color: var(--bs-primary);
    }
    .btn-primary:hover {
      background-color: #153a6b;
      border-color: #153a6b;
    }
    .btn-outline-primary {
      color: var(--bs-primary);
      border-color: var(--bs-primary);
    }
    .btn-outline-primary:hover {
      background-color: var(--bs-primary);
      border-color: var(--bs-primary);
    }
    .text-primary {
      color: var(--bs-primary) !important;
    }
    .bg-primary {
      background-color: var(--bs-primary) !important;
    }
    .border-primary {
      border-color: var(--bs-primary) !important;
    }
    .display-font {
      font-family: 'Playfair Display', serif;
    }
    .navbar-brand { 
      font-family: 'Playfair Display', serif;
      font-weight: 700;
    }
    .navbar-brand span { color: var(--secondary); }
    .section-title {
      position: relative;
      display: inline-block;
      padding-bottom: 0.5rem;
      font-family: 'Playfair Display', serif;
    }
    .section-title::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 4px;
      background: var(--secondary);
      border-radius: 2px;
    }
    .btn-primary {
      background-color: var(--bs-primary);
      border-color: var(--bs-primary);
    }
    .btn-primary:hover {
      background-color: #153a6b;
      border-color: #153a6b;
    }
    .text-primary {
      color: var(--bs-primary) !important;
    }
    .bg-primary {
      background-color: var(--bs-primary) !important;
    }
    .legal-content {
      background: white;
      border-radius: 1rem;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }
    .legal-nav {
      position: sticky;
      top: 100px;
    }
    .legal-nav .nav-link {
      color: var(--dark);
      border-left: 3px solid transparent;
      padding: 0.5rem 1rem;
    }
    .legal-nav .nav-link.active {
      color: var(--bs-primary);
      border-left-color: var(--bs-primary);
      background-color: rgba(26, 79, 140, 0.05);
    }
    .legal-nav .nav-link:hover {
      color: var(--bs-primary);
      background-color: rgba(26, 79, 140, 0.05);
    }
    .back-to-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      z-index: 1000;
      display: none;
    }
    .content-section {
      scroll-margin-top: 100px;
    }
    .last-updated {
      background: linear-gradient(135deg, var(--bs-primary), #2c3e50);
      color: white;
    }
    .alert-important {
      border-left: 4px solid var(--secondary);
    }

    .display-font {
      font-family: 'Playfair Display', serif;
    }
    .navbar-brand { 
      font-family: 'Playfair Display', serif;
      font-weight: 700;
    }
    .navbar-brand span { color: var(--secondary); }
    .section-title {
      position: relative;
      display: inline-block;
      padding-bottom: 0.5rem;
      font-family: 'Playfair Display', serif;
    }
    .section-title::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 4px;
      background: var(--secondary);
      border-radius: 2px;
    }
    .btn-primary {
      background-color: var(--bs-primary);
      border-color: var(--bs-primary);
    }
    .btn-primary:hover {
      background-color: #153a6b;
      border-color: #153a6b;
    }
    .text-primary {
      color: var(--bs-primary) !important;
    }
    .bg-primary {
      background-color: var(--bs-primary) !important;
    }
    .legal-content {
      background: white;
      border-radius: 1rem;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }
    .legal-nav {
      position: sticky;
      top: 100px;
    }
    .legal-nav .nav-link {
      color: var(--dark);
      border-left: 3px solid transparent;
      padding: 0.5rem 1rem;
    }
    .legal-nav .nav-link.active {
      color: var(--bs-primary);
      border-left-color: var(--bs-primary);
      background-color: rgba(26, 79, 140, 0.05);
    }
    .legal-nav .nav-link:hover {
      color: var(--bs-primary);
      background-color: rgba(26, 79, 140, 0.05);
    }
    .back-to-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      z-index: 1000;
      display: none;
    }
    .content-section {
      scroll-margin-top: 100px;
    }
    .last-updated {
      background: linear-gradient(135deg, var(--bs-primary), #2c3e50);
      color: white;
    }
    
    /* Cookie Consent Styles */
    .cookie-consent-container {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      padding: 1.5rem;
      box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
      z-index: 9999;
      transform: translateY(100%);
      transition: transform 0.4s ease;
    }
    .cookie-consent-container.active {
      transform: translateY(0);
    }
    .cookie-consent-content {
      max-width: 1200px;
      margin: 0 auto;
    }
    .cookie-consent-actions {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }
    @media (max-width: 768px) {
      .cookie-consent-actions {
        flex-direction: column;
      }
      .cookie-consent-actions .btn {
        width: 100%;
      }
    }