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

   body {
       font-family: 'Urbanist', sans-serif;
       background: #1a1a1a;
       color: #fff;
   }

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


   a {
       text-decoration: none;
   }


   /* Navigation */
   .main-header4 {
       position: absolute;
       width: 100%;
       top: 0;
       z-index: 1000;
       padding: 20px 0;
   }

   .navbar {
       width: 100%;
   }

   .nav-container {
       max-width: 1400px;
       margin: 0 auto;
       padding: 0 40px;
       display: flex;
       justify-content: space-between;
       align-items: center;
   }

   .nav-left,
   .nav-right {
       display: flex;
       gap: 75px;
       align-items: center;
   }

   .nav-link {
       color: #ffffff;
       text-decoration: none;
       font-size: 17px;
       font-weight: 500;
       transition: color 0.3s;
   }

   .nav-link {
       position: relative;
       text-decoration: none;
   }

   .nav-link::after {
       content: "";
       position: absolute;
       left: 0;
       bottom: -4px;
       width: 0;
       height: 2px;
       background: #fff;
       transition: width 0.3s ease;
   }

   .nav-link.active::after {
       width: 100%;
   }

   .logo {
       display: flex;
       align-items: center;
       flex-shrink: 0;
   }

   .logo img {
       height: 40px;
       max-width: 100%;
   }

   /* Hamburger Menu */
   .menu-toggle {
       display: none;
       flex-direction: column;
       cursor: pointer;
       padding: 10px;
       z-index: 2000;
       position: relative;
   }

   .menu-toggle span {
       width: 28px;
       height: 3px;
       background-color: #ffffff;
       margin: 3px 0;
       transition: 0.3s;
       border-radius: 2px;
   }

   .menu-toggle.active span:nth-child(1) {
       transform: rotate(-45deg) translate(-6px, 6px);
   }

   .menu-toggle.active span:nth-child(2) {
       opacity: 0;
   }

   .menu-toggle.active span:nth-child(3) {
       transform: rotate(45deg) translate(-6px, -6px);
   }

   /* Sidebar */
   .sidebar-overlay {
       display: none;
       position: fixed;
       top: 0;
       left: 0;
       width: 100%;
       height: 100%;
       background: rgba(0, 0, 0, 0.7);
       z-index: 1500;
       opacity: 0;
       transition: opacity 0.3s ease;
   }

   .sidebar-overlay.active {
       display: block;
       opacity: 1;
   }

   .sidebar {
       position: fixed;
       top: 0;
       left: -300px;
       width: 280px;
       height: 100%;
       background: #1a1a1a;
       z-index: 2000;
       transition: left 0.3s ease;
       overflow-y: auto;
       box-shadow: 2px 0 10px rgba(0, 0, 0, 0.5);
   }

   .sidebar.active {
       left: 0;
   }

   .sidebar-header {
       padding: 25px 20px;
       border-bottom: 1px solid #333;
       display: flex;
       justify-content: space-between;
       align-items: center;
   }

   .sidebar-logo img {
       height: 30px;
       max-width: 180px;
   }

   .sidebar-close {
       background: none;
       border: none;
       color: #fff;
       font-size: 28px;
       cursor: pointer;
       padding: 0;
       width: 30px;
       height: 30px;
       display: flex;
       align-items: center;
       justify-content: center;
       transition: transform 0.2s;
   }

   .sidebar-close:hover {
       transform: rotate(90deg);
   }

   .sidebar-nav {
       padding: 20px 0;
   }

   .sidebar-nav a {
       display: block;
       color: #ffffff;
       text-decoration: none;
       padding: 15px 25px;
       font-size: 16px;
       font-weight: 500;
       transition: all 0.3s;
       border-left: 3px solid transparent;
   }

   .sidebar-nav a:hover {
       background: rgba(201, 168, 106, 0.1);
       border-left-color: #C9A86A;
       color: #C9A86A;
   }

   /* Hero Section */
   .hero4 {
       height: 500px;
       min-height: 400px;
       background: url('Images/flight13.png') center/cover no-repeat;
       display: flex;
       align-items: center;
       justify-content: center;
       text-align: center;
       position: relative;
   }

   .hero-content {
       margin-top: 80px;
       padding: 0 20px;
   }

   .hero-content h1 {
       font-family: 'Tenor Sans', sans-serif;
       font-size: 48px;
       letter-spacing: 4px;
       margin-bottom: 10px;
   }

   .hero-content p {
       font-size: 18px;
       opacity: 0.9;
   }

   .button-group {
       display: flex;
       gap: 18px;
       text-align: center;
       margin-top: 25px;
       justify-content: center;
   }

   .btn {
       padding: 14px 28px;
       font-size: 14px;
       font-weight: 500;
       cursor: pointer;
       border-radius: 2px;
       letter-spacing: 0.3px;
   }

   .btn-primary {
       background-color: #C9A86A;
       color: #000;
       border: none;
   }

   .btn-outline {
       background-color: transparent;
       color: #fff;
       border: 1.5px solid #fff;
   }

   .btn-primary:hover {
       background-color: #c9a45d;
   }

   .btn-outline:hover {
       background-color: rgba(255, 255, 255, 0.1);
   }



   /* Our Values Section */
   .choose {
       padding: 80px 40px;
       background: #181818;
   }

   .choose h2 {
       text-align: center;
       font-size: 28px;
       font-weight: 200;
       margin-bottom: 10px;
       color: white;
       letter-spacing: 3px;
       font-family: 'Tenor Sans', sans-serif;
   }

   .choose-intro {
       color: #878C9E;
       margin: 0 auto;
       font-size: 16px;
       line-height: 1.8;
       padding: 20px;
       text-align: center;
       max-width: 600px;
   }

   .overlay-grid {
       display: grid;
       grid-template-columns: repeat(3, 1fr);
       gap: 64px;
       padding: 40px 0;
       max-width: 1200px;
       justify-content: center;
       margin: 0 auto;
   }

   .overlay-card {
       border: 1px solid rgba(255, 255, 255, 0.15);
       color: #fff;
       display: flex;
       flex-direction: column;
       align-items: center;
       justify-content: center;
       text-align: center;
       padding: 20px 10px;
       border-radius: 20px;
       min-height: 300px;
   }

   .overlay-icon {
       height: 130px;
       width: auto;
       margin-bottom: 20px;
   }

   .overlay-card h3 {
       font-size: 48px;
       font-weight: 500;
       margin-bottom: 15px;
       font-family: 'Urbanist', sans-serif;
   }

   .overlay-card p {
       font-size: 20px;
       line-height: 1.6;
       opacity: 0.8;
       font-family: 'Urbanist', sans-serif;
   }

   .box-perks {
       display: grid;
       grid-template-columns: repeat(4, 1fr);
       gap: 20px;
       margin-top: 30px;
       max-width: 1200px;
       margin-left: auto;
       margin-right: auto;
   }


   .benefits {
       background: transparent;
       box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
       border: 1px solid #bdbdbd;
       padding: 25px 20px;
       width: 100%;
       text-align: center;
       border-radius: 8px;
   }

   .benefits img {
       margin-bottom: 15px;
   }

   .benefits h3 {
       font-size: clamp(16px, 2.5vw, 18px);
       font-weight: bold;
       margin-bottom: 8px;
   }

   .benefits p {
       font-weight: 450;
       font-size: 14px;
       line-height: 1.6;
       color: #666;
   }


   .range_icon,
   .baggage_icon {
       width: 20px !important;
       height: 20px !important;

   }

   .amenities h2 {
       font-size: 28px;
       font-weight: 200;
       margin-bottom: 10px;
       color: white;
       letter-spacing: 3px;
       font-family: 'Tenor Sans', sans-serif;
   }

   /*Comparison*/
   .comparison-section {
       background: #181818;
       padding: 70px 80px;
       color: #fff;
       font-family: 'Urbanist', sans-serif;
   }

   .comparison-section h2 {
       font-size: 28px;
       font-weight: 200;
       margin-bottom: 30px;
       color: white;
       letter-spacing: 3px;
       font-family: 'Tenor Sans', sans-serif;
   }

   .section-title {
       font-size: 22px;
       letter-spacing: 2px;
       font-family: 'Urbanist', sans-serif;
       margin-bottom: 40px;
   }

   .comparison-grid {
       display: grid;
       grid-template-columns: repeat(3, 1fr);
       gap: 30px;
   }

   .jet-stats {
       list-style: none;
       padding: 0;
       margin: 0;
   }

   .jet-stats li {
       display: flex;
       justify-content: space-between;
       align-items: center;
       margin-bottom: 12px;
       font-family: 'Urbanist', sans-serif;
       font-size: 14px;
   }

   .stat-left {
       display: flex;
       align-items: center;
       gap: 10px;
   }

   .stat-left p {
       margin: 0;
   }

   .stat-left img {
       width: 16px;
       height: 16px;
       display: block;
   }

   .stat-value {
       margin: 0;
       opacity: 0.9;
   }

   .jet-card {
       position: relative;
       height: 280px;
       border-radius: 14px;
       overflow: hidden;
       background: #181818;
   }

   .jet-bg {
       position: absolute;
       inset: 0;
       width: 100%;
       height: 100%;
       object-fit: cover;
       filter: brightness(0.55);
   }

   .jet-content {
       position: relative;
       padding: 26px;
       z-index: 2;
   }

   .jet-content h3 {
       font-size: 18px;
       font-weight: 500;
       color: white;
       margin-bottom: 4px;
   }

   .jet-type {
       color: #c9a45d;
       font-size: 14px;
   }

   .divider {
       width: 60px;
       height: 2px;
       background: #c9a45d;
       margin: 16px 0;
   }

   .jet-content ul {
       list-style: none;
       padding: 0;
       margin: 0;
   }

   .jet-content li {
       display: flex;
       justify-content: space-between;
       font-size: 14px;
       margin-bottom: 10px;
       opacity: 0.9;
   }

   .compare-btn-wrap {
       text-align: center;
       margin-top: 45px;
   }

   .compare-btn {
       background: transparent;
       color: #fff;
       border: 1.5px solid #fff;
       padding: 14px 34px;
       font-size: 14px;
       cursor: pointer;
   }

   .compare-btn:hover {
       background: rgba(255, 255, 255, 0.08);
   }


   .discuss {
       background: #161616;
       padding: 60px 40px;
       text-align: center;
       border-bottom: 1px solid #333;
   }

   .discuss h3 {
       color: white;
       font-size: 25px;
       font-family: 'Tenor Sans', sans-serif;
       margin-bottom: 10px;
   }

   .discuss p {
       color: white;
       margin-top: 5px;
       font-size: 16px;
       font-family: 'Urbanist', sans-serif;
   }

   .discuss .btn-contact {
       color: white;
       background-color: #161616;
       border: white 1px solid;
       margin-top: 25px;
       font-size: 16px;
       padding: 12px 28px;
       transition: color 0.4s ease;
       overflow: hidden;
       cursor: pointer;
       position: relative;
   }

   .discuss .btn-contact::before {
       content: "";
       position: absolute;
       left: 0;
       bottom: -100%;
       width: 100%;
       height: 100%;
       background: #fff;
       transition: bottom 0.4s ease;
       z-index: 0;
   }

   .discuss .btn-contact span {
       position: relative;
       z-index: 1;
   }

   .discuss .btn-contact:hover {
       color: #2B4195;
   }

   .discuss .btn-contact:hover::before {
       bottom: 0;
   }


   /* About Section */
   .about {
       padding: 80px 0;
       background: #181818;
   }

   .about h2 {
       font-size: 28px;
       font-weight: 200;
       margin-bottom: 50px;
       color: white;
       letter-spacing: 3px;
       font-family: 'Tenor Sans', sans-serif;
   }

   .about-content {
       display: grid;
       grid-template-columns: 1fr 1fr;
       gap: 60px;
       align-items: center;
   }

   .about-text p {
       margin-bottom: 20px;
       color: #BDBDBD;
       line-height: 1.8;
       font-size: 17px;
       font-weight: 400;
   }


   .excellence-image img {
       width: 100%;
       height: auto;
       display: block;
   }

   .amenities {
       padding: 80px 0;
       background: #181818;
   }

   .amenities h2 {
       font-size: 28px;
       font-weight: 200;
       margin-bottom: 50px;
       color: white;
       letter-spacing: 3px;
       font-family: 'Tenor Sans', sans-serif;
   }

   .amenities-content {
       display: grid;
       grid-template-columns: 1fr 1fr;
       gap: 60px;
       align-items: center;
   }

   .amenities-text p {
       margin-bottom: 20px;
       color: #BDBDBD;
       line-height: 1.8;
       font-size: 17px;
       font-weight: 400;
   }



   /* Footer Section */
   .footer {
       background: #161616;
       padding: 80px 40px 20px;
   }

   .footer-content {
       display: grid;
       grid-template-columns: 1fr 2fr;
       gap: 60px;
       margin-bottom: 40px;
       max-width: 1400px;
       margin-left: auto;
       margin-right: auto;
   }

   .footer-brand img {
       height: 40px;
       max-width: 100%;
       object-fit: contain;
   }

   .footer-links {
       display: grid;
       grid-template-columns: repeat(3, 1fr);
       gap: 40px;
   }

   .footer-column h4 {
       color: #ffffff;
       font-size: 16px;
       font-weight: 600;
       margin-bottom: 20px;
       letter-spacing: 1px;
       font-family: 'Tenor Sans', sans-serif;
   }

   .footer-column a {
       display: block;
       color: white;
       text-decoration: none;
       font-size: 14px;
       margin-bottom: 12px;
       transition: color 0.3s;
   }

   .footer-column a:hover {
       color: #C9A86A;
   }

   .subscribe-message {
       margin-top: 10px;
       color: #7cb342 !important;
       font-weight: 500;
       display: none;
   }

   .subscribe-field {
       display: flex;
       gap: 10px;
       margin-bottom: 20px;
   }

   .subscribe-field input {
       flex: 1;
       padding: 12px;
       background: transparent;
       border: 1px solid #333;
       color: #fff;
       font-size: 14px;
       font-family: 'Urbanist', sans-serif;
   }

   .subscribe-button {
       padding: 12px 30px;
       background: #fff;
       color: #000;
       border: none;
       cursor: pointer;
       font-weight: 600;
       font-family: 'Urbanist', sans-serif;
       transition: background 0.3s;
       white-space: nowrap;
   }

   .subscribe-button:hover {
       background: #C4A962;
   }

   .social-icons {
       display: flex;
       gap: 25px;
       margin-top: 20px;
   }

   .social-icons a img {
       width: 40px;
       height: 40px;
       transition: transform 0.3s;
   }

   .social-icons a:hover img {
       transform: scale(1.1);
   }

   .footer-bottom {
       text-align: center;
       padding-top: 30px;
       border-top: 1px solid #333;
       color: white;
       font-size: 14px;
       max-width: 1400px;
       margin: 0 auto;
   }

   /*Responsiveness*/

   /* Desktop (1200px and below) */
   @media (max-width: 1200px) {
       .container {
           padding: 0 30px;
       }

       .nav-container {
           padding: 0 30px;
       }

       .nav-left,
       .nav-right {
           gap: 40px;
       }
   }

   /* Tablet Large (1024px and below) */
   @media (max-width: 1024px) {

       .nav-left,
       .nav-right {
           gap: 30px;
       }

       .nav-link {
           font-size: 15px;
       }

       .overlay-grid {
           grid-template-columns: repeat(2, 1fr);
           gap: 20px;
       }

       .stats_grid {
           grid-template-columns: repeat(2, 1fr);
           gap: 30px;
       }

       .values {
           padding: 60px 30px;
       }

       .choose {
           padding: 60px 30px;
       }
   }

   /* Tablet Medium (900px and below) */
   @media (max-width: 900px) {
       .menu-toggle {
           display: flex;
       }

       .nav-left,
       .nav-right {
           display: none;
       }

       .nav-container {
           justify-content: space-between;
       }

       .logo {
           order: 2;
       }

       .menu-toggle {
           order: 1;
       }

       .about-content {
           grid-template-columns: 1fr;
           gap: 40px;
       }

       .mission_vision_grid {
           grid-template-columns: 1fr;
           gap: 30px;
       }

       .mission_vision_card {
           padding: 40px;
       }

       .footer-content {
           grid-template-columns: 1fr;
           gap: 40px;
       }

       .footer-links {
           grid-template-columns: 1fr;
           gap: 30px;
       }

       .footer-brand {
           text-align: center;
       }
   }

   /* Tablet (768px and below) */
   @media (max-width: 768px) {

       .container,
       .nav-container {
           padding: 0 20px;
       }

       .logo img {
           height: 50px;
           max-width: 220px;
       }

       .hero2 {
           height: 450px;
       }

       .hero-content h1 {
           font-size: 36px;
           letter-spacing: 2px;
       }

       .hero-content p {
           font-size: 16px;
       }

       .about,
       .choose,
       .values {
           padding: 60px 20px;
       }

       .about h2,
       .choose h2 {
           font-size: 24px;
       }

       .about-text p {
           font-size: 16px;
       }

       .overlay-grid {
           grid-template-columns: 1fr;
           gap: 20px;
           padding: 30px 0;
       }

       .overlay-card {
           min-height: 250px;
           padding: 25px 20px;
       }

       .overlay-icon {
           height: 60px;
       }

       .mission_vision_card {
           padding: 30px;
           min-height: 200px;
       }

       .mission_vision_card h3 {
           font-size: 22px;
       }

       .mission_vision_card p {
           font-size: 15px;
       }

       .stats_grid {
           grid-template-columns: repeat(2, 1fr);
           gap: 30px;
       }

       .stat_item h2 {
           font-size: 42px;
       }

       .footer-brand img {
           height: 35px;
           max-width: 220px;
       }

       .subscribe-field {
           flex-direction: column;
       }

       .subscribe-field input {
           width: 100%;
       }

       .subscribe-button {
           width: 100%;
       }
   }

   /* Mobile Large (640px and below) */
   @media (max-width: 640px) {
       .hero2 {
           height: 400px;
       }

       .hero-content h1 {
           font-size: 32px;
       }

       .about h2,
       .choose h2 {
           font-size: 22px;
           letter-spacing: 2px;
       }

       .choose-intro {
           font-size: 15px;
           padding: 15px;
       }

       .overlay-card {
           padding: 20px 15px;
       }

       .mission_vision_grid {
           gap: 20px;
           margin-bottom: 60px;
       }

       .stats_grid {
           gap: 25px;
       }

       .stat_item h2 {
           font-size: 38px;
       }

       .stat_item p {
           font-size: 15px;
       }
   }

   /* Mobile Medium (480px and below) */
   @media (max-width: 480px) {

       .container,
       .nav-container {
           padding: 0 15px;
       }

       .logo img {
           height: 25px;

       }

       .sidebar-logo img {
           height: 30px;
           max-width: 170px;
       }

       .hero2 {
           height: 350px;
       }

       .hero-content h1 {
           font-size: 26px;
           letter-spacing: 1px;
       }

       .hero-content p {
           font-size: 14px;
       }

       .about,
       .choose,
       .values {
           padding: 40px 15px;
       }

       .about h2,
       .choose h2 {
           font-size: 20px;
       }

       .about-text p {
           font-size: 15px;
       }

       .overlay-grid {
           padding: 20px 0;
       }

       .overlay-card {
           min-height: 220px;
           padding: 20px 15px;
       }

       .overlay-icon {
           height: 50px;
           margin-bottom: 15px;
       }

       .overlay-card h3 {
           font-size: 16px;
       }

       .overlay-card p {
           font-size: 13px;
       }

       .mission_vision_card {
           padding: 25px;
       }

       .mission_vision_card h3 {
           font-size: 20px;
           letter-spacing: 1px;
       }

       .mission_vision_card p {
           font-size: 14px;
       }

       .stats_grid {
           grid-template-columns: 1fr;
           gap: 20px;
       }

       .stat_item h2 {
           font-size: 36px;
       }

       .stat_item p {
           font-size: 14px;
       }

       .footer {
           padding: 60px 20px 20px;
       }

       .footer-brand {
           margin-bottom: 20px;
       }

       .footer-brand img {
           height: 50px;
           max-width: 300px;
       }

       .sidebar {
           width: 260px;
       }
   }

   /* Mobile Small (360px and below) */
   @media (max-width: 360px) {
       .hero2 {
           height: 320px;
       }

       .hero-content h1 {
           font-size: 22px;
       }

       .hero-content p {
           font-size: 13px;
       }

       .about h2,
       .choose h2 {
           font-size: 18px;
       }

       .about,
       .choose,
       .values {
           padding: 35px 12px;
       }

       .logo img {
           height: 28px;
           max-width: 130px;
       }

       .sidebar-logo img {
           height: 22px;
           max-width: 140px;
       }

       .sidebar {
           width: 240px;
       }

       .overlay-card {
           min-height: 200px;
       }

       .mission_vision_card {
           padding: 20px;
       }

       .mission_vision_card h3 {
           font-size: 18px;
       }

       .mission_vision_card p {
           font-size: 13px;
       }

       .stat_item h2 {
           font-size: 32px;
       }

       .stat_item p {
           font-size: 13px;
       }

       .footer-brand img {
           height: 28px;
           max-width: 180px;
       }
   }


   /* Large Desktop (1400px and below) */
   @media (max-width: 1400px) {
       .overlay-grid {
           gap: 40px;
       }
   }

   /* Desktop (1200px and below) */
   @media (max-width: 1200px) {

       .overlay-grid {
           gap: 30px;
       }

       .about-content,
       .amenities-content {
           gap: 40px;
       }

       .comparison-grid {
           gap: 20px;
       }

   }

   /* Tablet Landscape (1024px and below) */
   @media (max-width: 1024px) {

       .overlay-grid {
           grid-template-columns: repeat(3, 1fr);
           gap: 25px;
       }

       .overlay-card {
           min-height: 250px;
           padding: 15px 10px;
       }

       .overlay-icon {
           height: 100px;
       }

       .overlay-card h3 {
           font-size: 40px;
       }

       .overlay-card p {
           font-size: 18px;
       }

       .box-perks {
           grid-template-columns: repeat(3, 1fr);
       }

       .about-content,
       .amenities-content {
           gap: 30px;
       }

       .comparison-section {
           padding: 70px 40px;
       }

   }


   /* Tablet Portrait (768px and below) */
   @media (max-width: 768px) {

       /* Our Values */
       .choose {
           padding: 60px 20px;
       }

       .overlay-grid {
           grid-template-columns: 1fr;
           gap: 20px;
           padding: 30px 0;
       }

       .overlay-card {
           min-height: 220px;
       }

       /* Amenities */
       .box-perks {
           grid-template-columns: repeat(2, 1fr);
           gap: 15px;
       }

       .benefits {
           padding: 20px 15px;
       }

       /* About Section */
       .about {
           padding: 60px 0;
       }

       .about-content {
           grid-template-columns: 1fr;
           gap: 30px;
       }

       .about h2,
       .amenities h2,
       .comparison-section h2 {
           font-size: 24px;
           margin-bottom: 30px;
       }

       .about-text p,
       .amenities-text p {
           font-size: 16px;
       }

       /* Amenities */
       .amenities {
           padding: 60px 0;
       }

       .amenities-content {
           grid-template-columns: 1fr;
           gap: 30px;
       }

       /* Comparison Section */
       .comparison-section {
           padding: 60px 20px;
       }

       .comparison-grid {
           grid-template-columns: 1fr;
           gap: 20px;
       }

       .jet-card {
           height: 260px;
       }

       /* CTA Section */
       .discuss {
           padding: 50px 20px;
       }

       .discuss h3 {
           font-size: 22px;
       }

       .discuss p {
           font-size: 15px;
       }

       .button-group {
           flex-direction: column;
           gap: 12px;
       }

       .btn {
           width: 100%;
           max-width: 300px;
           margin: 0 auto;
       }

       .subscribe-field input {
           width: 100%;
       }

       .subscribe-button {
           width: 100%;
       }
   }

   /* Mobile (576px and below) */
   @media (max-width: 576px) {
       .choose {
           padding: 50px 15px;
       }

       .choose h2,
       .about h2,
       .amenities h2,
       .comparison-section h2 {
           font-size: 22px;
           letter-spacing: 2px;
       }

       .overlay-card {
           min-height: 200px;
           padding: 15px;
       }

       .overlay-icon {
           height: 80px;
           margin-bottom: 15px;
       }

       .overlay-card h3 {
           font-size: 36px;
           margin-bottom: 10px;
       }

       .overlay-card p {
           font-size: 16px;
       }

       .box-perks {
           grid-template-columns: 1fr;
           gap: 12px;
       }

       .benefits h3 {
           font-size: 16px;
       }

       .about {
           padding: 50px 0;
       }

       .about-text p,
       .amenities-text p {
           font-size: 15px;
           line-height: 1.7;
       }

       .amenities {
           padding: 50px 0;
       }

       .comparison-section {
           padding: 50px 15px;
       }

       .jet-card {
           height: 240px;
       }

       .jet-content {
           padding: 20px;
       }

       .jet-content h3 {
           font-size: 16px;
       }

       .jet-type {
           font-size: 13px;
       }

       .jet-stats li {
           font-size: 13px;
       }

       .discuss {
           padding: 40px 15px;
       }

       .discuss h3 {
           font-size: 20px;
           line-height: 1.4;
       }

       .discuss p {
           font-size: 14px;
       }

       .btn {
           padding: 12px 24px;
           font-size: 13px;
       }

   }

   /* Extra Small Mobile (400px and below) */
   @media (max-width: 400px) {


       .choose h2,
       .about h2,
       .amenities h2,
       .comparison-section h2 {
           font-size: 20px;
       }

       .overlay-card h3 {
           font-size: 32px;
       }

       .discuss h3 {
           font-size: 18px;
       }

       .beige-text {
           display: block;
           margin-top: 5px;
       }
   }

   /* Utility class for text color */
   .beige-text {
       color: #C9A86A;
   }

   /* View All Button Styling */
   .view-all-button {
       background: transparent;
       color: #fff;
       border: 1.5px solid #fff;
       padding: 14px 34px;
       font-size: 14px;
       cursor: pointer;
       font-family: 'Urbanist', sans-serif;
       transition: background 0.3s;
   }

   .view-all-button:hover {
       background: rgba(255, 255, 255, 0.08);
   }

   /* Ensure images are responsive */
   img {
       max-width: 100%;
       height: auto;
   }

   /* Smooth scrolling */
   html {
       scroll-behavior: smooth;
   }