/* Itinerary Details Desktop Styles */

/* Main container */
.itinerary-content-container {
    flex: 1;
    min-width: 300px;
    text-align: left;
    color: black;
    place-self: flex-start;
  }


  .terms-link:visited {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-decoration-color: #0250BB;
    text-underline-offset: 3px;
    color: #0250BB;
  }
  /* Section headings */
  .itinerary-section-heading {
    font-size: 32px;
    color: black;
    margin-bottom: 20px;
  }
  
  /* Main description text */
  .itinerary-description {
    font-size: 18px;
    line-height: 1.6;
    color: #363636;
    margin-bottom: 30px;
  }
  
  /* Price list container */
  .price-list-container {
    margin-bottom: 30px;
  }
  
  /* Price list item */
  .price-list-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    border-bottom: 1px dotted #ccc;
    padding-bottom: 10px;
  }
  
  /* Price text */
  .price-text {
    font-size: 18px;
  }
  
  /* Details section */
  .itinerary-details-container {
    margin-bottom: 20px;
  }
  
  /* Detail paragraph */
  .itinerary-detail-item {
    font-size: 16px;
    margin-bottom: 15px;
  }