/* Recommended Trips Section */
#recommended-trips {
    text-align: center;
    padding: 40px 20px; /* Same padding as the earlier section */
    margin: 0 auto; /* Center align the main section */
  }
  
  #recommended-trips h2 {
    font-size: 36px;
    font-weight: bold;
    color: #ff8800;
    margin-bottom: 20px; /* Reduced for consistency */
    position: relative;
  }
  
  #recommended-trips h2::after {
    content: "RECOMMENDED";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 100px;
    font-weight: bold;
    color: rgb(247, 237, 227);
    z-index: -1;
  }
  
  .trips-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 cards per row */
    gap: 20px; /* Same spacing as upper sections */
    max-width: 1150px; /* Center align cards inside the section */
    margin: 0 auto; /* Consistent margin */
  }
  
  .trip-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem; /* Same padding for inner card elements */
    margin-top: 1rem;
  }
  
  .trip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  }
  
  .trip-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 1rem; /* Space below the image */
  }
  
  .trip-card h3 {
    font-size: 20px;
    color: #ff8800;
    margin-bottom: 10px; /* Reduced to align with the other sections */
  }
  
  .trip-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
  }
  
  .trip-card .btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 14px;
    color: #ff8800;
    border: 1px solid #ff8800;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
  }
  
  .trip-card .btn:hover {
    background-color: #ff8800;
    color: white;
  }
  
  /* Responsive Design */
  @media (max-width: 1024px) {
    .trips-container {
      grid-template-columns: repeat(2, 1fr); /* 2 cards per row */
    }
  }
  
  @media (max-width: 768px) {
    .trips-container {
      grid-template-columns: 1fr; /* 1 card per row */
    }
  
    #recommended-trips h2 {
      font-size: 30px;
      margin-bottom: 15px; /* Adjusted for smaller screens */
    }
  
    .trip-card img {
      height: 180px; /* Adjusted height for smaller screens */
    }
  }
  