  
  .accordion-photo-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 2rem 0;
  }
  

  .accordion-box {
    flex: 1 1 60%;
    min-width: 300px
  }

  .photo-box {
    flex: 1 1 35%;
    min-width: 280px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .photo-box img {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    object-fit: cover;
  }
  
  
  .accordion-header {
    background: #f8f9fa;
    color: #333;
    cursor: pointer;
    padding: 1rem 1.25rem;
    border: none;
    text-align: left;
    font-weight: 600;
    font-size: 1.1rem;
    width: 100%;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s, color 0.3s;
    box-shadow: none;
  }
  
  .accordion-header:focus {
    outline: none;
    box-shadow: none;
  }
  
  .accordion-header:hover {
    background: #e9ecef;
    color: #000;
  }
  
  .accordion-header::after {
    content: "\25BC"; /* down arrow */
    font-size: 0.9rem;
    transition: transform 0.3s, color 0.3s;
  }
  
  /* Active state with #ec5800 */
  .accordion-header.active {
    background: #ec5800;   /* orange */
    color: #fff;           /* white text for contrast */
  }
  
  .accordion-header.active::after {
    transform: rotate(-180deg);
    color: #fff;           /* arrow turns white too */
  }
  
  .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding-left: 2rem;
    padding-right: 2rem;
    font-size: 0.95rem;
    line-height: 1.6;
    background-color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1rem;
    background: #fff;
    border-top: 1px solid #dee2e6;
    display: none;
  }
  
  .accordion-content.show {
    display: block;
    max-height: 1000px;
  }

  .accordion-content:not(.show) {
    display: none;
  }

  @media (max-width: 768px) {
    .accordion-photo-wrapper {
      flex-direction: column;
    }

    .photo-box {
      margin-top: 1rem;
    }

    .photo-box img {
      max-width: 100%;
    }

    .accordion-content {
      padding-left: 1rem;
      padding-right: 1rem;
      font-size: 0.9rem;
    }
  }

  .accordion-content.open {
    max-height: 400px; /* or any fixed height you prefer */
    overflow-y: auto;
    padding: 1rem 1.25rem;
    background: #fff;
    border-top: 1px solid #dee2e6;
  }
  
  .accordion-content .lead::after {
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    background-color: #ec5800;
    margin: 1rem 0;
  }
  
  .accordion-section {
    background-image: url('../img/photos/patternbg.jpg'); /* your image path */
    background-size: contain;
    background-repeat: repeat;
    background-position: center;
    background-attachment: fixed;
    padding: 4rem 0;
    position: relative;
    z-index: 1;
  }
  
  .accordion-section::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* optional dark overlay */
    z-index: -1;
  }
  
  .icon-list {
    margin-bottom: 1rem;
  }
  
  .icon-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 1rem;
  }
  
  .included-icon {
    color: #28a745; /* green */
    margin-right: 0.5rem;
  }
  
  .excluded-icon {
    color: #dc3545; /* red */
    margin-right: 0.5rem;
  }
  
  .feature {
    display: flex;
    align-items: flex-start; /* aligns icon with top of text block */
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    margin-right: 1rem;
  }
  
  .feature i {
    font-size: 1.5rem;
    color: #ec5800; /* your theme color */
    flex-shrink: 0;
    margin-top: 0.2rem; /* nudges icon down slightly */
  }
  
  .feature-content {
    flex: 1;
  }
  

  .feature-content h5 {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
    font-weight: 600;
  } 


  .feature-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
  }
  
  

  .day-plan {
    margin-bottom: 2rem;
  }
  
  .day-plan h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ec5800;
  }
  
  .day-plan p {
    margin: 0.5rem 0 0.75rem;
    color: #555;
    font-style: italic;
  }
  
  .day-plan ul {
    padding-left: 1.5rem;
    margin: 0;
  }
  
  .day-plan li {
    margin-bottom: 0.5rem;
    list-style-type: disc;
    color: #333;
  }
  
  .day-plan .time {
    font-weight: 600;
    color: #ec5800;
  }
  
  .day-plan .highlight {
    font-weight: 600;
    color: #17a2b8;
  }
  
  .include-exclude {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 1rem;
  }
  
  .included, .excluded {
    flex: 1 1 300px;
  }
  
  .included h4, .excluded h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .included h4 {
    color: #000;
  }

  .included h4 i {
    color: #28a745; /* green */
  }
  
  .excluded h4 {
    color: #000;
  }


  .excluded h4 i {
    color: #ec5800; /* red */
  }
  
  .included ul, .excluded ul {
    list-style: none;
    padding-left: 0;
  }
  
  .included li, .excluded li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: #333;
  }
  
  .included li i {
    color: #28a745;
  }
  
  .excluded li i {
    color: #ec5800;
  }