    @media (max-width: 768px) {
    	.flight-offer__button {
    		width: 70%;
    		font-size: 16px;
    	}

    	.flight-offer__text {
    		font-size: 15px;
    	}

    	.offer-section--mobile-only {
    		display: block !important;
    	}

    	.hero-header__title {
    		margin-top: 20px !important;
    	}

    	.offer-card__image--primary,
    	.offer-card__image {
    		width: 100%;
    	}

    	.offer-card__description--hidden {
    		display: none !important;
    	}
    }

    @media (min-width: 769px) {
    	.offer-section--mobile-only {
    		display: none !important;
    	}
    }

    /* Offer Card Styles */
    .offer-card-container {
    	display: grid;
    	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    	gap: 20px;
    }

    .offer-card {
    	border: 2px dashed #ccc;
    	border-radius: 10px;
    	overflow: hidden;
    	background-color: #fff;
    }

    .offer-card__details {
    	padding: 15px;
    }

    .visually-hidden {
    	position: absolute;
    	width: 1px;
    	height: 1px;
    	padding: 0;
    	margin: -1px;
    	overflow: hidden;
    	clip: rect(0, 0, 0, 0);
    	border: 0;
    }



    .nav-tabs .nav-link {
    	font-weight: 600;
    	color: #333;
    }

    .btn-flip-icon button {
    	background: none;
    	border: none;
    }

    /* Ensure images and cards are responsive */
    .unique-card-image {
    	max-width: 100%;
    	height: auto;
    	object-fit: cover;
    	border-radius: 8px;
    }

    .unique-offer-card {
    	display: flex;
    	flex-direction: row;
    	margin-bottom: 20px;
    	background-color: #fff;
    	border-radius: 10px;
    	overflow: hidden;
    	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .unique-offer-details {
    	padding: 15px;
    	flex: 1;
    	display: flex;
    	flex-direction: column;
    	justify-content: space-between;
    }

    .unique-button-wrapper {
    	margin-top: 10px;
    }

    .unique-offer-details h5 {
    	font-size: 1.25rem;
    	margin-bottom: 10px;
    }

    .unique-offer-details p {
    	font-size: 0.9rem;
    	margin-bottom: 10px;
    }

    .unique-offer-details .book-now-unique {
    	width: 100%;
    	max-width: 150px;
    	padding: 8px 16px;
    	font-size: 0.95rem;
    	border: none;
    	border-radius: 5px;
    	/* background-color: #007bff; */
    	color: #fff;
    	cursor: pointer;
    	transition: background-color 0.3s;
    }

    .unique-offer-details .book-now-unique:hover {
    	background-color: #0056b3;
    }

    /* Mobile-specific styles */
    @media (max-width: 768px) {
    	.unique-offer-card {
    		flex-direction: column;
    		margin-bottom: 15px;
    	}

    	.unique-card-image {
    		width: 100%;
    		/* height: 200px; */
    		object-fit: cover;
    	}

    	.unique-offer-details {
    		padding: 10px;
    	}

    	.unique-offer-details h5 {
    		font-size: 1.1rem;
    	}

    	.unique-offer-details p {
    		font-size: 0.85rem;
    	}

    	.unique-offer-details .book-now-unique {
    		font-size: 0.9rem;
    		padding: 6px 12px;
    		max-width: 120px;
    	}

    	.unique-button-wrapper {
    		margin-top: 5px;
    	}

    	/* Ensure columns stack vertically on mobile */
    	.col-xl-6,
    	.col-md-6 {
    		width: 100%;
    	}
    }

    /* Desktop-specific styles */
    @media (min-width: 992px) {
    	.unique-offer-card {
    		flex-direction: row;
    		height: 200px;
    	}

    	.unique-card-image {
    		width: 40%;
    		/* height: 200px; */
    		object-fit: cover;
    	}

    	.unique-offer-details {
    		padding: 15px;
    		height: 100%;
    	}

    	.unique-offer-details h5 {
    		font-size: 1.25rem;
    		margin-bottom: 10px;
    	}

    	.unique-offer-details p {
    		font-size: 0.9rem;
    		margin-bottom: 10px;
    		flex-grow: 1;
    	}

    	.unique-offer-details .book-now-unique {
    		align-self: flex-end;
    		margin-top: auto;
    	}
    }

    /* Trip Type Dropdown */
    .trip-type-dropdown {
    	position: relative;
    	display: inline-block;
    	width: 100%;
    }

    .trip-type-selection {
    	display: flex;
    	align-items: center;
    	padding: 8px 12px;
    	background-color: #ffffff;
    	color: #202124;
    	border: 1px solid #dfe1e5;
    	border-radius: 4px;
    	cursor: pointer;
    	font-size: 14px;
    	min-width: 120px;
    	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    	transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }

    .trip-type-selection:hover {
    	border-color: #1a73e8;
    	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    }

    .trip-type-icon {
    	margin-right: 8px;
    	font-size: 12px;
    	color: #5f6368;
    }

    .trip-type-selected {
    	flex-grow: 1;
    	text-align: left;
    }

    .trip-type-caret {
    	width: 0;
    	height: 0;
    	border-left: 4px solid transparent;
    	border-right: 4px solid transparent;
    	border-top: 4px solid #5f6368;
    	margin-left: 8px;
    	transition: transform 0.3s ease;
    }

    .trip-type-selection.select-clicked .trip-type-caret {
    	transform: rotate(180deg);
    }

    .trip-type-menu {
    	position: absolute;
    	top: 85%;
    	left: 0;
    	right: 0;
    	background-color: #fff;
    	border: 1px solid #dfe1e5;
    	border-radius: 0 0 4px 4px;
    	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    	list-style: none;
    	padding: 0;
    	margin: 0;
    	display: none;
    	z-index: 1000;
    }

    .trip-type-menu.menu-open {
    	display: block;
    }

    .trip-type-menu li {
    	padding: 8px 12px;
    	color: #202124;
    	cursor: pointer;
    	display: flex;
    	align-items: center;
    	font-size: 14px;
    }

    .trip-type-menu li .checkmark {
    	margin-right: 8px;
    	color: #1a73e8;
    	visibility: hidden;
    }

    .trip-type-menu li.active .checkmark {
    	visibility: visible;
    }

    .trip-type-menu li:hover {
    	background-color: #f1f3f4;
    }

    /* Guest Input Dropdown */
    .guests-input__options {
    	position: absolute;
    	top: 85%;
    	left: 892;
    	background-color: #fff;
    	border: 1px solid #dfe1e5;
    	border-radius: 4px;
    	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    	z-index: 1000;
    	padding: 10px;
    	display: none;
    	min-width: 200px;
    	opacity: 0;
    	transform: translateY(-10px);
    	transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .guests-input__options.open {
    	display: block;
    	opacity: 1;
    	transform: translateY(0);
    }

    .guests-input__options>div {
    	display: flex;
    	align-items: center;
    	justify-content: space-between;
    	padding: 8px 12px;
    	border-bottom: 1px solid #f1f3f4;
    }

    .guests-input__options>div:last-child {
    	border-bottom: none;
    }

    .guests-input__ctrl {
    	cursor: pointer;
    	padding: 5px;
    	font-size: 16px;
    	color: #202124;
    	border: 1px solid #dfe1e5;
    	border-radius: 4px;
    	width: 30px;
    	height: 30px;
    	display: flex;
    	align-items: center;
    	justify-content: center;
    	transition: background-color 0.3s ease;
    }

    .guests-input__ctrl:hover:not(.disabled) {
    	background-color: #f1f3f4;
    }

    .guests-input__ctrl.disabled {
    	opacity: 0.5;
    	cursor: not-allowed;
    }

    .guests-input__value {
    	flex-grow: 1;
    	text-align: center;
    	font-size: 14px;
    	color: #202124;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {

    	.trip-type-selection,
    	.guests-input__options {
    		min-width: 100%;
    	}

    	.guests-input__options {
    		min-width: 150px;
    		left: 0;
    		right: 0;
    	}
    }

    @media (max-width: 768px) {
    	.flight-offer__button {
    		width: 70%;
    		font-size: 16px;
    	}

    	.flight-offer__text {
    		font-size: 15px;
    	}

    	.offer-section--mobile-only {
    		display: block !important;
    	}

    	.hero-header__title {
    		margin-top: 20px !important;
    	}

    	.offer-card__image--primary,
    	.offer-card__image {
    		width: 100%;
    	}

    	.offer-card__description--hidden {
    		display: none !important;
    	}

    	.unique-offer-card {
    		flex-direction: column;
    		margin-bottom: 15px;
    	}

    	.unique-card-image {
    		width: 100%;
    		object-fit: cover;
    	}

    	.unique-offer-details {
    		padding: 10px;
    	}

    	.unique-offer-details h5 {
    		font-size: 1.1rem;
    	}

    	.unique-offer-details p {
    		font-size: 0.85rem;
    	}

    	.unique-offer-details .book-now-unique {
    		font-size: 0.9rem;
    		padding: 6px 12px;
    		max-width: 120px;
    	}

    	.unique-button-wrapper {
    		margin-top: 5px;
    	}

    	.col-xl-6,
    	.col-md-6 {
    		width: 100%;
    	}

    	/* New rule for trip type and flight class dropdowns */
    	.search-upper .mob-full {
    		flex: 0 0 50%;
    		max-width: 50%;
    		box-sizing: border-box;
    	}

    	.trip-type-selection,
    	.guests-input__options {
    		min-width: 100%;
    	}

    	.guests-input__options {
    		min-width: 150px;
    		left: 0;
    		right: 0;
    	}
    }

    @media (min-width: 769px) {
    	.search-upper .mob-full {
    		margin-right: 10px;
    	}

    	.search-upper .mob-full:last-child {
    		margin-right: 0;
    	}
    }

    @media (max-width: 768px) {
    	.gy-3 {
    		--bs-gutter-y: 0.3rem;
    	}
    }


    .faq-section {
    	max-width: 1200px;
    	margin: 50px auto;
    	padding: 20px;
    	font-family: "Segoe UI", sans-serif;
    }

    .faq-title {
    	text-align: center;
    	font-size: 2rem;
    	margin-bottom: 20px;
    }

    .faq-item {
    	border-bottom: 1px solid #ddd;
    	padding: 10px 0;
    }

    .faq-question {
    	width: 100%;
    	background: none;
    	border: none;
    	outline: none;
    	text-align: left;
    	font-size: 1.1rem;
    	font-weight: 600;
    	cursor: pointer;
    	display: flex;
    	justify-content: space-between;
    	align-items: center;
    	padding: 10px 0;
    }

    .faq-question .icon {
    	transition: transform 0.3s ease;
    	font-weight: bold;
    	font-size: 1.2rem;
    }

    .faq-answer {
    	max-height: 0;
    	overflow: hidden;
    	transition: max-height 0.4s ease, padding 0.3s ease;
    	padding: 0 0;
    }

    .faq-answer p {
    	margin: 10px 0;
    }

    .faq-item.active .faq-answer {
    	max-height: 600px;
    	/* enough for content */
    	padding: 10px 0;
    }

    .faq-item.active .faq-question .icon {
    	transform: rotate(180deg);
    	content: "–";
    }


  /* Custom styles for the departure selection and flight offers section */
  .form-control-custom {
    border: 1px solid #ced4da;
    border-radius: 8px;
    padding: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  }

  .form-control-custom:focus {
    outline: none;
  }

  .form-label {
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
  }

  .flight-offer-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
  }

  .flight-offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  }

  .flight-offer-card .card-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
  }

  .flight-offer-card .card-content {
    padding: 15px;
    flex-grow: 1;
  }

  .flight-offer-card h5 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a2b49;
    margin: 10px 0 5px;
  }

  .flight-offer-card p {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 5px 0;
  }

  .flight-offer-card .price {
    font-size: 1.5rem;
    font-weight: 700;
    /* color: #007bff; */
    margin-right: 10px;
  }

  .flight-offer-card .btn-book-now {
    border: none;
    border-radius: 8px;
    padding: 8px 15px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    width: 100%;
    margin-top: auto;
  }

  /* Loader styles */
  .loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }

  .loader-spinner {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #007bff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
  }

  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }

    100% {
      transform: rotate(360deg);
    }
  }

  .loader-overlay p {
    color: #fff;
    font-size: 1.2rem;
    margin-top: 10px;
    font-weight: 500;
  }

  /* Add only box shadow to match reference */
  .pop-touritems .card {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  /* Apply box shadow to cardCities to match reference */
  .cardCities {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  /* Fix gap for Today's USA Flight Offers */
  .offer-row-gap {
    margin: -0.5rem;
    /* Negative margin to counteract Bootstrap's padding */
  }

  .offer-row-gap>.col-12 {
    padding: 0.5rem;
    /* Custom padding for gap */
  }