.trip-container {
    display: flex;
    gap: 2rem;
    margin: 2rem;
  }
  .trip-main {
    width: 70%;
  }
  .trip-sidebar {
    width: 30%;
  }
  
  .trip-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .trip-slider img {
    width: 100%;
    border-radius: 10px;
  }
  
  .trip-tabs {
    display: flex;
    border: 2px solid #C8AB5F;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 1rem;
  }
  
  .tab-head {
    flex: 1;
    text-align: center;
    padding: 10px;
    font-weight: bold;
    color: #C8AB5F;
    cursor: pointer;
    border-right: 1px solid #C8AB5F;
  }
  .tab-head:last-child {
    border-right: none;
  }
  
  .tab-content {
    border: 2px solid #C8AB5F;
    border-top: none;
    padding: 1rem;
  }
  
  .numbered-line {
    display: flex;
    align-items: center;
    margin: 0.5rem 0;
  }
  .number-circle {
    border: 2px solid #C8AB5F;
    border-radius: 50%;
    color: #C8AB5F;
    font-weight: bold;
    width: 25px;
    height: 25px;
    text-align: center;
    line-height: 21px;
    margin-right: 10px;
  }
  .trip-container {
    display: flex;
    gap: 40px;
    margin: 40px;
    flex-wrap: wrap;
  }
  
  .trip-main {
    flex: 1 1 60%;
  }
  
  .trip-sidebar {
    flex: 1 1 35%;
  }
  
  .trip-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
  }
  
  .trip-slider {
    margin-bottom: 30px;
  }
  
  .trip-tabs-nav {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
  }
  
  .tab-head {
    cursor: pointer;
    font-weight: 500;
    padding: 10px 16px;
    background-color: #f2f2f2;
    border-radius: 6px;
    transition: background 0.3s ease;
  }
  
  .tab-head.active {
    background-color: #004a77;
    color: #fff;
  }
  
  /*.tab-content {
    display: none;
  }*/
  
  .tab-content.active {
    display: block;
  }
  