.camping-schedule-section {
    padding: 60px 20px;
    background: #fff;
    color: #333;
    text-align: center;
  }
  
  .section-title {
    font-size: 2.2rem;
    color: orange;
    margin-bottom: 30px;
  }
  
  .accordion {
    margin: 0 auto 50px;
    max-width: 800px;
  }
  
  .accordion-item {
    background: #fff8ed;
    border-radius: 10px;
    margin-bottom: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    overflow: hidden;
  }
  
  .accordion-header {
    padding: 15px 20px;
    font-weight: bold;
    cursor: pointer;
    background-color: #fff3e6;
    transition: background 0.3s ease;
  }
  
  .accordion-header:hover {
    background-color: #ffe4c2;
  }
  
  .accordion-content {
    display: none;
    padding: 15px 20px;
    background-color: #fffaf4;
  }
  
  .accordion-item.active .accordion-content {
    display: block;
  }
  
  .timeline {
    border-left: 4px solid orange;
    padding-left: 30px;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
  }
  
  .timeline-event {
    position: relative;
    margin-bottom: 30px;
  }
  
  .timeline-event::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 6px;
    width: 14px;
    height: 14px;
    background: orange;
    border-radius: 50%;
    box-shadow: 0 0 0 3px #fff;
  }
  
  .timeline-event h4 {
    margin-left: 10px;
    font-size: 1.1rem;
    font-weight: 600;
  }
  
  .timeline-event p {
    font-size: 0.95rem;
    color: #555;
    margin-left: 10px;
  }

  
  @media (max-width: 600px) {
    .section-title {
      font-size: 1.6rem;
    }
  
    .accordion-header,
    .accordion-content {
      font-size: 0.95rem;
      padding: 12px 15px;
    }
  
    .timeline-event h4 {
      font-size: 1rem;
    }
  
    .timeline-event p {
      font-size: 0.85rem;
    }
  
    .timeline {
      padding-left: 20px;
    }
  
    .timeline-event::before {
      left: -10px;
      width: 12px;
      height: 12px;
    }
  }
  