#travel-agency {
    background: linear-gradient(135deg, #00a859, #004aad);
    color: white;
    padding: 100px 5vw;
    font-family: 'Montserrat', sans-serif;
  }
  
  .travel-agency-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }
  
  .travel-agency-image {
    flex: 1 1 45%;
    text-align: center;
  }
  
  .travel-agency-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0);
  }
  
  .travel-agency-text {
    flex: 1 1 50%;
    color: white;
  }
  
  .travel-agency-text h2 {
    font-size: 2.6rem;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
  }
  
  .travel-subheading {
    font-size: 1.2rem;
    font-style: italic;
    margin: 25px 0;
    line-height: 1.7;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  }
  
  .travel-agency-text h4 {
    font-size: 1.3rem;
    font-style: italic;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 10px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
  }
  
  .travel-activities,
  .travel-benefits {
    list-style: none;
    padding-left: 0;
    font-size: 1.1rem;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  }
  
  .travel-activities li,
  .travel-benefits li {
    margin-bottom: 8px;
  }
  
  @media (max-width: 992px) {
    .travel-agency-wrapper {
      flex-direction: column;
    }
  
    .travel-agency-text h2 {
      font-size: 2rem;
    }
  
    .travel-agency-image img {
      max-width: 85%;
      margin-bottom: 30px;
    }
  }
  