.media-articles-container {
  margin: 0;
  padding: 0;
  max-width: 200px;
}
.media-articles {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  margin: 0;
  box-sizing: border-box;
}
.article {
  position: relative;
  width: 100%;
  flex: 0 0 auto;
  box-sizing: border-box;
}
.article-image {
  max-width: 119rem;
  height: 9.9rem;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.article-image::after {
  content: "";
  position: absolute;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.45), transparent);
  z-index: 1;
}
.title-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-51%, -50%);
  width: 152px;
  height: 41px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1rem;
  font-size: 1.8rem;
  font-weight: 500;
  color: white;
  background-color: #00205b;
  border-radius: 4px;
  z-index: 1;
  text-align: center;
  white-space: nowrap;
  opacity: 1;
}
.article-content {
  padding: 0.5rem 1rem;
}
.description {
  margin: 0.5rem 0;
}
.subtitle {
  margin: 0.3rem 0;
}
.action span {
  color: blue;
  text-decoration: underline;
}
@media (max-width: 576px) {
  .article-image {
    height: 180px;
  }
}
/* =========================
FOOTER IMAGE TEXT
========================= */

.title-image-footer {
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1300px;
  padding: 0 20px;
  height: auto;
  display: block;
  font-size: clamp(16px, 3.5vw, 28px);
  font-weight: 600;
  color: white;
  background-color: transparent;
  border-radius: 0;
  z-index: 2;
  text-align: left;
  white-space: normal;
  line-height: 1.3;
  margin: 0;
  box-sizing: border-box;
}
.subtitle-image-footer {
  position: absolute;
  top: 62%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1300px;
  padding: 0 20px;
  color: #efefef;
  font-size: clamp(12px, 1.8vw, 16px);
  font-weight: 400;
  line-height: 1.4;
  z-index: 2;
  text-align: left;
  margin: 0;
  box-sizing: border-box;
}
/* Tablet */

@media (max-width: 1024px) {
  .media-articles:last-of-type .article-image {
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px 20px;
  }
  .title-image-footer {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin-bottom: 10px;
  }
  .subtitle-image-footer {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    max-width: 100%;
    padding: 0;
  }
}
/* Mobile */

@media (max-width: 576px) {
  .media-articles:last-of-type .article-image {
    padding: 24px 16px;
  }
}
/* =========================
GLOBAL
========================= */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: Arial, Helvetica, sans-serif;
  background: white;
  color: #333333;
}
.content-container {
  margin: auto;
  padding: 40px 20px;
  max-width: 1300px;
}
.top-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}
.top-image img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}
.top-content h1 {
  font-size: 28px;
  margin-bottom: 16px;
  color: #0b2c5d;
  line-height: 2rem;
}
.top-content p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 12px;
  color: #555555;
}
.bottom-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.bottom-content h2 {
  font-size: 16px;
  color: #999999;
  margin-bottom: 6px;
}
.bottom-content h3 {
  font-size: 22px;
  color: #0b2c5d;
  margin-bottom: 16px;
}
.bottom-content p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 12px;
  color: #555555;
}
.bottom-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.bottom-images img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}
@media (max-width: 900px) {
  .top-section,
  .bottom-section {
    grid-template-columns: 1fr;
  }
  .bottom-images {
    grid-template-columns: 1fr;
  }
}
.section-title1 {
  font-size: 25px;
  font-weight: 400;
  margin-bottom: 24px;
  color: black;
}
.section-title2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #00205b;
}
.section-subtitle1 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 24px;
  color: #00205b;
}
.baggage-section {
  margin-top: 30px;
}
.baggage-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.baggage-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.card-image {
  height: 160px;
  background-size: cover;
}
.card-body {
  padding: 20px;
}
.card-title {
  font-size: 26px;
  font-weight: 500;
  color: #00205b;
  margin-bottom: 8px;
}
.card-desc {
  font-size: 14px;
  color: #555555;
  margin-bottom: 16px;
}
.inner-span {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0%;
  color: #002058;
}
.card-features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.card-features li {
  font-size: 14px;
  color: #333333;
  padding: 6px 0;
}
.card-features li:last-child {
  border-bottom: none;
}
@media (max-width: 992px) {
  .baggage-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .baggage-cards {
    grid-template-columns: 1fr;
  }
}
.hotel-features {
  padding: 50px 20px;
}
.container {
  max-width: 1200px;
  margin: auto;
}
.section-title {
  font-size: 28px;
  font-weight: 600;
  color: #1f3c88;
  margin-bottom: 30px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
.feature-card {
  background: transparent;
}
.feature-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 15px;
}
.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.feature-card:hover img {
  transform: scale(1.05);
}
.feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1f3c88;
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 14px;
  color: #555555;
  line-height: 1.6;
}
@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}
/* =========================
   SECTION
========================= */

.agent-section {
  background: whitesmoke;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}
/* =========================
   CONTAINER
========================= */

.agent-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.agent-container2 {
  max-width: 1100px;
  margin: 28px auto;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
/* =========================
   LEFT TEXT
========================= */

.agent-text {
  flex: 1;
  color: #333333;
  font-style: normal;
  /* remove any inherited italic */

}
.agent-text .welcome {
  margin: 0;
  font-size: 25px;
  font-weight: 400;
}
.agent-text h3 {
  margin: 5px 0 15px;
  color: #1f3a8a;
  font-size: 28px;
}
/* Paragraphs */

.agent-text p {
  font-size: 14px;
  margin-bottom: 10px;
  line-height: 1.6;
  font-style: normal;
}
/* =========================
   COUNTRIES (ARROW STYLE)
========================= */

.agent-text .countries {
  list-style: none;
  padding-left: 0;
  margin: 10px 0 15px 0;
}
.agent-text .countries li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  margin-bottom: 5px;
}
.agent-text .countries li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #1f3a8a;
  font-weight: bold;
}
/* =========================
   HEADING LINE
========================= */

.agent-text .agent-heading {
  font-weight: 600;
  margin-top: 10px;
}
.benefits-title {
  margin-top: 15px;
  font-weight: 500;
  font-style: Italic;
  font-size: 16px;
}
/* =========================
   BENEFITS LIST
========================= */

.agent-text .benefits {
  margin: 8px 0 15px 18px;
  padding: 0;
}
.agent-text .benefits li {
  font-size: 16px;
  margin-bottom: 5px;
  line-height: 1.5;
  font-weight: 500;
  font-style: Italic;
}
/* =========================
   APPLY LINK
========================= */

.agent-text .apply {
  margin-top: 15px;
  font-weight: 400;
  font-size: 16px;
}
.agent-text .apply a {
  color: #1f3a8a;
  text-decoration: underline;
  font-weight: 600;
}
/* =========================
   RIGHT IMAGE
========================= */

.agent-image {
  flex: 1;
  margin-top: 0px;
}
.agent-image img {
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
}
/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
  .agent-container {
    flex-direction: column;
    gap: 20px;
  }
  .agent-text {
    width: 100%;
  }
  .agent-image {
    width: 100%;
  }
}
.reservation {
  color: #00205b;
  font-weight: 500;
  font-size: 16px;
}
.number {
  color: #00205b;
  font-weight: 600;
  font-size: 16px;
}
h1 {
  font-size: 20px;
  font-weight: 500;
  color: #00205b;
  margin-bottom: 18px;
}
.photo-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}
.photo-row img {
  width: 100%;
  height: 224px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}
.cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 40px;
  align-items: start;
}
.col-title {
  font-size: 18px;
  font-weight: 600;
  color: #00205b;
  margin-bottom: 14px;
}
.office-block {
  margin-bottom: 18px;
}
.city-badge {
  display: inline-block;
  background: #00205b;
  color: white;
  font-size: 16px;
  font-weight: 700;
  padding: 5px 6px;
  border-radius: 2px;
  margin-bottom: 5px;
  letter-spacing: 0.03em;
}
.office-block p {
  font-size: 18px;
  line-height: 1.65;
  font-weight: 500;
}
.office-block .sub {
  margin-top: 8px;
}
hr {
  border: none;
  border-top: 1px solid #e5e5e5;
  margin: 4px 0 14px;
}
@media (max-width: 640px) {
  .photo-row,
  .cols {
    grid-template-columns: 1fr;
  }
}
