.two-columns {
  display: flex;
  gap: 24px;
}

/* Accordion Styles */
.tariff-accordion-header .fa-chevron-down {
  transition: transform 0.3s ease;
}

.accordion-wrapper {
  display: block !important;
  width: 100% !important;
  background: white;
  border-radius: 8px;
  box-shadow: 0 0 3.9px rgba(0, 0, 0, 0.25);
  margin-bottom: 25px;
  overflow: hidden;
}

.tariff-accordion-header {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 24px;
  font-weight: bold;
  color: #004c99;
  background: white;
  padding: 20px;
  margin: 0;
  cursor: pointer;
  position: relative;
  border: none;
  width: 100%;
  text-align: left;
  transition: background-color 0.3s ease;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tariff-accordion-header:focus {
  outline: 2px solid #004c99;
  outline-offset: -2px;
}

.tariff-accordion-header.active {
  border-radius: 8px 8px 0 0;
}

.tariff-accordion-header.active .fa-chevron-down {
  transform: rotate(180deg);
}

.accordion-subtitle {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 14px;
  color: #666;
  margin: 0;
  background: white;
  font-weight: 400;
}

.tariff-accordion-content {
  background: white;
  border-radius: 0 0 8px 8px;
  display: block;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.tariff-accordion-content-padding {
  padding: 0 20px 20px 20px;
}

.tariff-accordion-content.is-open {
  opacity: 1;
}

.tariff-accordion-content.collapsing {
  transition: height 0.35s ease;
}

/* Section Card (for static sections) */
.section-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 0 3.9px rgba(0, 0, 0, 0.25);
  padding: 25px;
  margin-bottom: 25px;
}

.info-section-card {
  padding: 0 20px 20px 20px;
}

.section-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 24px;
  font-weight: bold;
  color: #004c99;
  margin-bottom: 20px;
  position: relative;
}

/* Tariff Tables */
.tariff-table {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.25);
  margin-top: 20px;
  margin-bottom: 20px;
  flex-grow: 1;
}

.tariff-table .table-header {
  background-color: rgba(0, 76, 153, 0.2);
  border-radius: 4px 4px 0 0;
  padding: 15px;
}

.tariff-table .sub-header {
  background-color: rgba(0, 76, 153, 0.1);
  padding: 10px 15px;
}

.tariff-table .table-header h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 14px;
  font-weight: bold;
  margin: 0 0 5px 0;
  color: #004c99;
}

.tariff-table .table-header p {
  font-size: 12px;
  color: #004c99;
  margin: 0;
}

.tariff-table .sub-header p {
  font-size: 12px;
  color: #004c99;
  margin: 0;
  font-weight: bold;
}

.tariff-table .row-item {
  padding: 8px 15px;
  border-bottom: 0.5px solid #c5c5c5;
  display: flex;
  align-items: center;
}

.tariff-table .row-item:last-child {
  border-bottom: none;
}

.tariff-table .accommodation-type {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-family: 'Montserrat', Arial, sans-serif;
}

.tariff-table .price {
  text-align: center;
  font-size: 11px;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #242424;
}

.icon-checkbox {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Policy Text */
.policy-text {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 14px;
  line-height: 1.6;
}

.policy-text p {
  margin-bottom: 10px;
}

/* Badge Blue */
.badge-blue {
  background-color: #004c99;
  color: white;
  border-radius: 120px;
  padding: 8px 20px;
  font-size: 12px;
  display: inline-block;
  text-decoration: none;
  font-weight: bold;
  margin: 10px 0;
}

.badge-blue:hover {
  background-color: #003366;
  color: white;
  text-decoration: none;
}

/* Badge Info Yellow */
.badge-info-yellow {
  background-color: #fff8e0;
  color: #bb9519;
  border-radius: 37px;
  padding: 5px 10px;
  font-size: 12px;
  /* Adjusted slightly for visibility */
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 4px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
}

/* Package Badge */
.package-badge {
  background-color: #004c99;
  color: white;
  border-radius: 37px;
  padding: 0 10px 0 2px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin: 0;
  margin-right: 10px;
}

.package-badge .inner-badge {
  background-color: #f6be00;
  color: #004c99;
  border-radius: 37px;
  padding: 0 10px;
  font-size: 10px;
  line-height: 18px;
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
}

.package-badge .date-text {
  font-size: 10px;
  font-family: 'Montserrat', sans-serif;
  line-height: 22px;
}

.package-badge i.fa {
  font-size: 10px;
  color: white;
}

/* Primary div */
.primary-div {
  background-color: #004c99;
  color: white;
  border-radius: 4px;
  padding: 12px 30px;
  font-size: 16px;
  display: inline-block;
  text-decoration: none;
  font-weight: bold;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', Arial, sans-serif;
}

.primary-div:hover {
  background-color: #003366;
  color: white;
  text-decoration: none;
}

/* Payment logos */
.payment-logos {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: space-between;
  border-right: 1px solid #666; 
  padding-right:20px;
  flex-direction: row;
}

.payment-logos img {
  height: 40px;
  width: auto;
}

.tariff-line {
  align-items: center;
  display: flex;
  gap: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .two-columns {
    flex-direction: column;
  }

  .tariff-line {
    flex-direction: column;
  }

  .payment-logos {
    border: none;
  }

  .badge-info-yellow {
    border-radius: 10px;
  }

  .tariff-accordion-header {
    font-size: 18px;
  }

  .accordion-subtitle {
    font-size: 12px;
  }

  .section-card {
    padding: 15px;
  }

  .section-title {
    font-size: 20px;
  }

  .tariff-table .row-item {
    font-size: 9px;
    padding: 0;
  }

  .tariff-table .accommodation-type {
    font-size: 9px;
  }

  .tariff-table .price {
    font-size: 9px;
  }
}