/* Activities Page Styles */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.activity-subheader {
  font-size: 34px !important;
  line-height:1em;
  font-weight: 800;
  background: linear-gradient(135deg, #f49346 0%, #de5034 100%);
  display:block;
  width:100%;
  max-width:1200px;
  margin:0px auto 0px auto;
  /*filter:drop-shadow(2 2 8px rgba(0,0,0,0.5));*/
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Contrail One', sans-serif;
  /*letter-spacing: -0.5px;*/
}

@media screen and (max-width:768px){
  .activity-subheader {
    font-size: 24px !important;
    text-align:center !important;
  }
}


p.no-space-p{
    padding:0px;
    margin:0px;
    line-height:0px;
}

/* News Slider Section - Standalone */
.news-slider-section {
  background: #fcfcfc;
  position: relative;
  overflow: hidden;
}

.news-slider-section .news-slider-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px 20px;
  position: relative;
  z-index: 1;
}

.news-slider-section .news-slider-container {
  position: relative;
  padding: 0 40px 20px;
}

.news-slider-section .news-slider-wrapper {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.news-slider-section .news-slider {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 0;
}

.news-slider-section .news-slide {
  flex: 0 0 25%;
  background: white;
  border-radius: 0;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
  border-right: 1px solid #f1f5f9;
}

.news-slider-section .news-slide:last-child {
  border-right: none;
}

.news-slider-section .news-slide:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  z-index: 2;
}

.news-slider-section .news-image {
  position: relative;
  display: block;
  height: 200px;
  overflow: hidden;
}

.news-slider-section .news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.news-slider-section .news-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(24, 71, 135, 0.8) 0%, rgba(24, 71, 135, 0.4) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 15px;
}

.news-slider-section .news-category {
  background: rgba(255, 255, 255, 0.9);
  color: #184787;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.news-slider-section .news-slide:hover .news-image img {
  transform: scale(1.05);
}

.news-slider-section .news-slide:hover .news-overlay {
  opacity: 1;
}

.news-slider-section .news-content {
  padding: 20px;
  
}

.news-slider-section .news-title {
  font-size: 16px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
  line-height: 1.4;
}

.news-slider-section .news-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.news-slider-section .news-title a:hover {
  color: #184787;
}

.news-slider-section .news-meta {
  margin-top: 8px;
}

.news-slider-section .news-date {
  color: #64748b;
  font-size: 13px;
  font-weight: 500;
}

.news-slider-section .news-author {
  color: #64748b;
  font-size: 13px;
  font-weight: 500;
  margin-left: 8px;
}

.news-slider-section .news-slider-prev,
.news-slider-section .news-slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #184787;
}

.news-slider-section .news-slider-prev:hover,
.news-slider-section .news-slider-next:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  background: #184787;
  color: white;
}

.news-slider-section .news-slider-prev:active,
.news-slider-section .news-slider-next:active {
  transform: translateY(-50%) scale(0.95);
}

.news-slider-section .news-slider-prev svg,
.news-slider-section .news-slider-next svg {
  width: 20px;
  height: 20px;
}

.news-slider-section .news-slider-prev {
  left: 0;
}

.news-slider-section .news-slider-next {
  right: 0;
}

/* Responsive Design for News Slider */
@media (max-width: 1024px) {
  .news-slider-section .news-slider-container {
    padding: 0 30px;
  }
  
  .news-slider-section .news-slide {
    flex: 0 0 33.333%;
  }
  
  .news-slider-section .news-slider-prev,
  .news-slider-section .news-slider-next {
    width: 44px;
    height: 44px;
  }
  
  .news-slider-section .news-slider-prev svg,
  .news-slider-section .news-slider-next svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 900px) {
  .news-slider-section .news-slider-container {
    padding: 0 25px;
  }
  
  .news-slider-section .news-slide {
    flex: 0 0 50%;
  }
  
  .news-slider-section .news-image {
    height: 180px;
  }
  
  .news-slider-section .news-content {
    padding: 18px;
  }
  
  .news-slider-section .news-title {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .news-slider-section .news-slider-content {
    padding: 30px 15px;
  }
  
  .news-slider-section .news-slider-container {
    padding: 0 15px;
  }
  
  .news-slider-section .news-slide {
    flex: 0 0 50%;
    margin-right: 8px;
  }
  
  .news-slider-section .news-slide:last-child {
    margin-right: 0;
  }
  
  .news-slider-section .news-image {
    height: 160px;
  }
  
  .news-slider-section .news-content {
    padding: 12px;
  }
  
  .news-slider-section .news-title {
    font-size: 14px;
    line-height: 1.3;
  }
  
  .news-slider-section .news-date {
    font-size: 12px;
  }
  
  .news-slider-section .news-slider-prev,
  .news-slider-section .news-slider-next {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  }
  
  .news-slider-section .news-slider-prev:hover,
  .news-slider-section .news-slider-next:hover {
    background: #184787;
    transform: translateY(-50%) scale(1.05);
  }
  
  .news-slider-section .news-slider-prev svg,
  .news-slider-section .news-slider-next svg {
    width: 18px;
    height: 18px;
  }
  
  .news-slider-section .news-slider-prev {
    left: -5px;
  }
  
  .news-slider-section .news-slider-next {
    right: -5px;
  }
}

@media (max-width: 600px) {
  .news-slider-section .news-slider-container {
    padding: 0 10px;
  }
  
  .news-slider-section .news-slide {
    flex: 0 0 100%;
    margin-right: 0;
  }
  
  .news-slider-section .news-image {
    height: 200px;
  }
  
  .news-slider-section .news-content {
    padding: 16px;
  }
  
  .news-slider-section .news-title {
    font-size: 16px;
    line-height: 1.4;
  }
  
  .news-slider-section .news-date {
    font-size: 13px;
  }
  
  .news-slider-section .news-slider-prev,
  .news-slider-section .news-slider-next {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 6px 25px rgba(0,0,0,0.2);
  }
  
  .news-slider-section .news-slider-prev svg,
  .news-slider-section .news-slider-next svg {
    width: 20px;
    height: 20px;
  }
  
  .news-slider-section .news-slider-prev {
    left: 5px;
  }
  
  .news-slider-section .news-slider-next {
    right: 5px;
  }
}

@media (max-width: 480px) {
  .news-slider-section .news-slider-content {
    padding: 20px 10px;
  }
  
  .news-slider-section .news-slider-container {
    padding: 0 5px;
  }
  
  .news-slider-section .news-slide {
    flex: 0 0 100%;
  }
  
  .news-slider-section .news-image {
    height: 180px;
  }
  
  .news-slider-section .news-content {
    padding: 14px;
  }
  
  .news-slider-section .news-title {
    font-size: 15px;
    line-height: 1.3;
  }
  
  .news-slider-section .news-slider-prev,
  .news-slider-section .news-slider-next {
    width: 42px;
    height: 42px;
  }
  
  .news-slider-section .news-slider-prev svg,
  .news-slider-section .news-slider-next svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 360px) {
  .news-slider-section .news-slider-content {
    padding: 15px 5px;
  }
  
  .news-slider-section .news-slide .news-image {
    height: 160px;
  }
  
  .news-slider-section .news-slide .news-content {
    padding: 12px;
  }
  
  .news-slider-section .news-slide .news-title {
    font-size: 14px;
  }
  
  .news-slider-section .news-slider-prev,
  .news-slider-section .news-slider-next {
    width: 38px;
    height: 38px;
  }
  
  .news-slider-section .news-slider-prev svg,
  .news-slider-section .news-slider-next svg {
    width: 16px;
    height: 16px;
  }
}

.activities-page {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: #fcfcfc;
  min-height: 100vh;
  
  /* Header Section */
  .activities-header {
    background: transparent;
    padding: 0;
    
    .header-content {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
  }
  
  /* Filters Section */
  .filters-section {
    
    
    .filters-content {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;

      
      
      .filter-buttons {
        display: none;
        gap: 12px;
        margin-bottom: 25px;
        flex-wrap: wrap;
        
        .filter-btn {
          background: #f1f5f9;
          border: 2px solid transparent;
          padding: 12px 24px;
          border-radius: 25px;
          font-size: 14px;
          font-weight: 600;
          cursor: pointer;
          transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
          color: #475569;
          position: relative;
          overflow: hidden;
          
          &::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            transition: left 0.5s;
          }
          
          &:hover {
            background: #e2e8f0;
            border-color: #cbd5e1;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            
            &::before {
              left: 100%;
            }
          }
          
          &.active {
            background: #184787;
            color: white;
            border-color: #184787;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(24, 71, 135, 0.3);
          }
        }
      }
      
      .results-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        @media screen and (max-width: 768px) {
          flex-direction:column;
        }
        
        .results-count {
          font-size: 18px;
          color: #334155;
          font-weight: 600;
        }
        
        .sort-dropdown {
          select {
            padding: 12px 16px;
            border: 1px solid #e2e8f0;
            border-radius: 6px;
            background: white;
            font-size: 14px;
            font-weight: 500;
            color: #475569;
            cursor: pointer;
            transition: all 0.3s ease;
            min-width: 200px;
            
            &:focus {
              outline: none;
              border-color: #184787;
            }
            
            &:hover {
              border-color: #cbd5e1;
            }
          }
        }
      }
    }
  }
  
  /* Activities Grid */
  .activities-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px;
    
    
    .activities-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 30px;
      
      .activity-card {
        display: block;
        text-decoration: none;
        color: #000;
        background: white;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        border: 1px solid rgba(0,0,0,0.05);
        
        &::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background: rgba(24, 71, 135, 0.03);
          opacity: 0;
          transition: opacity 0.3s ease;
          z-index: 1;
        }
        
        &:hover {
          transform: translateY(-8px);
          box-shadow: 0 20px 40px rgba(0,0,0,0.15);
          border-color: rgba(24, 71, 135, 0.2);
          
          &::before {
            opacity: 1;
          }
          
          .activity-image img {
            transform: scale(1.05);
          }
        }
        
        .activity-image {
          position: relative;
          height: 220px;
          overflow: hidden;
          display: block;
          
          img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
          }
          
          .badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
            color: white;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
            z-index: 2;
          }
          
          .originals-badge {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
          }
          
          .new-badge {
            background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
            box-shadow: 0 2px 8px rgba(6, 182, 212, 0.3);
          }
          
          .top-pick-badge {
            background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
            box-shadow: 0 2px 8px rgba(139, 92, 246, 0.3);
          }
        }
        
        .activity-content {
          padding: 20px;
          position: relative;
          z-index: 2;
          
          
          .activity-title {
            font-size: 16px;
            font-weight: 600;
            color: #1e293b;
            margin-bottom: 8px;
            line-height: 1.3;
            
            a {
              color: inherit;
              text-decoration: none;
              transition: color 0.3s ease;
              
              &:hover {
                color: #184787;
              }
            }
          }
          
          .activity-details {
            color: #64748b;
            font-size: 13px;
            font-weight: 400;
            margin-bottom: 16px;
            line-height: 1.4;
          }
          
          .activity-price-section {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 12px;
            
            .price-info {
              .price-label {
                font-size: 11px;
                color: #94a3b8;
                font-weight: 400;
                margin-bottom: 2px;
              }
              
              .activity-price {
                font-size: 20px;
                font-weight: 700;
                color: #1e293b;
                margin: 0;
                line-height: 1;
              }
              
              .price-unit {
                font-size: 11px;
                color: #94a3b8;
                font-weight: 400;
                margin-left: 2px;
              }
            }
            
            .activity-rating {
              text-align: right;
              
              .rating-stars {
                display: flex;
                align-items: center;
                gap: 4px;
                margin-bottom: 2px;
                
                .star-icon {
                  color: #1e293b;
                  font-size: 14px;
                  font-weight: 400;
                }
                
                .rating-text {
                  color: #1e293b;
                  font-size: 14px;
                  font-weight: 600;
                }
              }
              
              .review-count {
                color: #94a3b8;
                font-size: 11px;
                font-weight: 400;
              }
            }
          }
          
          .sell-out-notice {
            color: #dc2626;
            font-size: 11px;
            font-weight: 500;
            background: #fef2f2;
            padding: 3px 6px;
            border-radius: 4px;
            display: inline-block;
            border: 1px solid #fecaca;
          }
        }
      }
    }
    
    .show-more-btn {
      text-align: center;
      ;
      
      button {
        background: #184787;
        color: white;
        border: none;
        padding: 16px 40px;
        border-radius: 12px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(24, 71, 135, 0.3);
        position: relative;
        margin: 50px auto 0 auto !important;
        overflow: hidden;
        
        &::before {
          content: '';
          position: absolute;
          top: 0;
          left: -100%;
          width: 100%;
          height: 100%;
          background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
          transition: left 0.5s;
        }
        
        &:hover {
          transform: translateY(-2px);
          box-shadow: 0 8px 25px rgba(24, 71, 135, 0.4);
          
          &::before {
            left: 100%;
          }
        }
        
        &:active {
          transform: translateY(0);
        }
      }
    }
  }
}

.activities-content {
  .activities_container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
  }
  
  .header {
    /*margin: 60px 0 50px 0;
    border-bottom: 1px solid #e1e8ed;
    padding-bottom: 40px;*/
  }
  
  img{
    border-radius: 16px;
  }
  .headline {
    font-size: 2.75rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 24px;
    line-height: 1.15;
    letter-spacing: -0.025em;
  }
  
  .intro {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 32px;
    line-height: 1.6;
    font-weight: 400;
  }
  
  .feature-photo {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 16px;
  }
  
  .photo-caption {
    font-size: 0.875rem;
    color: #718096;
    text-align: center;
    margin-bottom: 50px;
  }
  
  .items {
    margin-top: 0;
  }
  
  .item {
    margin-bottom: 60px;
  }
  
  .item-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 20px;
    line-height: 1.3;
  }
  
  .item-number {
    color: #1a202c;
    font-weight: 800;
    margin-right: 8px;
  }
  
  .item-photo {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 12px;
  }
  
  .item-photo-caption {
    font-size: 0.875rem;
    color: #718096;
    margin-bottom: 20px;
    text-align: left;
  }
  
  .item-description {
    font-size: 1.125rem;
    color: #2d3748;
    margin-bottom: 16px;
    line-height: 1.7;
  }
  
  .highlights {
    padding: 0;
    margin-bottom: 24px;
    border-left: 4px solid #4299e1;
    padding-left: 16px;
  }
  
  .highlights strong {
    color: #2b6cb0;
    font-weight: 600;
  }
  
  .activities-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 16px;
    margin-top: 32px;
  }
  
  .activities {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 20px 0;
    margin-top: 24px;
    scrollbar-width: thin;
    scrollbar-color: #cbd5e0 transparent;
  }
  
  .activities::-webkit-scrollbar {
    height: 6px;
  }
  
  .activities::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 3px;
  }
  
  .activities::-webkit-scrollbar-thumb {
    background: #cbd5e0;
    border-radius: 3px;
  }
  
  .activities::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
  }
  
  .activity {
    flex: 0 0 280px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    position: relative;
  }
  
  .activity:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    transform: translateY(-2px);
  }
  
  .activity-heart {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #e53e3e;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  
  .activity-heart:hover {
    background: #fff;
    transform: scale(1.1);
  }
  
  .activity-image {
    width: 100%;
    height: 160px;
    border-radius:0px;
    object-fit: cover;
  }
  
  .activity-content {
    padding: 16px;
  }
  
  .activity-duration-info {
    font-size: 0.75rem;
    color: #6b7280;
    margin-bottom: 8px;
  }


  .activity-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 8px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  
  .activity-rating {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  
  .stars {
    color: #fbbf24;
    font-size: 0.9rem;
  }
  
  .rating-number {
    font-size: 0.8rem;
    color: #4a5568;
  }
  
  .activity-price {
    font-size: 1rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 12px;
  }
  
  .book-btn {
    display: block;
    width: 100%;
    background: #2563eb;
    color: #fff;
    padding: 10px 16px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    transition: all 0.2s ease;
    font-size: 0.875rem;
  }
  
  .book-btn:hover {
    background: #1d4ed8;
  }
  
  .meta {
    text-align: center;
    margin-top: 60px;
    padding: 24px;
    background: #f8fafc;
    border-radius: 12px;
    color: #6b7280;
    font-size: 0.9rem;
    border: 1px solid #e5e7eb;
  }
  
  @media (max-width: 768px) {
    .container {
      padding: 0 16px;
    }
    
    .header {
      margin: 40px 0 30px 0;
      padding-bottom: 30px;
    }
    
    .headline {
      font-size: 2.25rem;
    }
    
    .intro {
      font-size: 1.125rem;
    }
    
    .feature-photo {
      height: 250px;
    }
    
    .item-photo {
      height: 200px;
    }
    
    .activity {
      flex: 0 0 240px;
    }
    
    .activity-image {
      height: 140px;
    }
    
    .activity-content {
      padding: 12px;
    }
  }
  
  @media (max-width: 480px) {
    .headline {
      font-size: 1.875rem;
    }
    
    .activity {
      flex: 0 0 200px;
    }
    
    .activity-content {
      padding: 12px;
    }
    
    .activity-title {
      font-size: 0.9rem;
    }
  }
}

/* Activities FAQ Styles */
.activities-faq-container {
    max-width: 800px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.faq-empty {
    text-align: center;
    padding: 40px 20px;
    color: #666;
    font-style: italic;
}

.faq-list {
    margin-bottom: 20px;
}

.faq-item {
    border: 1px solid #e1e5e9;
    border-radius: 8px;
    margin-bottom: 12px;
    background: #fff;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: fadeInUp 0.3s ease;
}

.faq-item:hover {
    border-color: #0073aa;
    box-shadow: 0 2px 8px rgba(0, 115, 170, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    background: #f8f9fa;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    transition: all 0.3s ease;
    outline: none;
}

.faq-question:hover {
    background: #e9ecef;
    color: #0073aa;
}

.faq-question:focus {
    background: #e3f2fd;
    color: #0073aa;
    box-shadow: inset 0 0 0 2px #0073aa;
}

.faq-question-text {
    flex: 1;
    margin-right: 15px;
    line-height: 1.4;
}

.faq-toggle-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: #6c757d;
}

.faq-item.active .faq-toggle-icon {
    transform: rotate(180deg);
    color: #0073aa;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #fff;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer-content {
    padding: 20px;
    border-top: 1px solid #e1e5e9;
    color: #495057;
    line-height: 1.6;
}

.faq-answer-content p {
    margin-bottom: 12px;
}

.faq-answer-content p:last-child {
    margin-bottom: 0;
}

.faq-answer-content ul,
.faq-answer-content ol {
    margin-bottom: 12px;
    padding-left: 20px;
}

.faq-answer-content li {
    margin-bottom: 6px;
}

.faq-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.faq-expand-all,
.faq-collapse-all {
    padding: 8px 16px;
    border: 1px solid #0073aa;
    background: #fff;
    color: #0073aa;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.faq-expand-all:hover,
.faq-collapse-all:hover {
    background: #0073aa;
    color: #fff;
}

.faq-expand-all:focus,
.faq-collapse-all:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.3);
}

.faq-expand-all.disabled,
.faq-collapse-all.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.faq-expand-all.disabled:hover,
.faq-collapse-all.disabled:hover {
    background: #fff;
    color: #0073aa;
}

/* FAQ Search */
.faq-search-container {
    margin-bottom: 20px;
    text-align: center;
}

.faq-search-input {
    width: 100%;
    max-width: 400px;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease;
}

.faq-search-input:focus {
    border-color: #0073aa;
    box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.1);
}

.faq-count {
    margin-top: 8px;
    color: #666;
    font-size: 14px;
}

/* Responsive design */
@media (max-width: 768px) {
    .activities-faq-container {
        margin: 0 10px;
    }
    
    .faq-question {
        padding: 16px;
        font-size: 15px;
    }
    
    .faq-answer-content {
        padding: 16px;
    }
    
    .faq-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .faq-expand-all,
    .faq-collapse-all {
        width: 100%;
        max-width: 200px;
    }
}

/* Animation for smooth expand/collapse */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Print styles */
@media print {
    .faq-actions,
    .faq-search-container {
        display: none;
    }
    
    .faq-item {
        border: 1px solid #000;
        margin-bottom: 10px;
        page-break-inside: avoid;
    }
    
    .faq-question {
        background: #f0f0f0;
        font-weight: bold;
    }
    
    .faq-answer {
        max-height: none !important;
    }
}