/* Packages Section Styles */
.packages-section {
  padding: 4rem 0 6rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.section-subtitle {
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--black);
  font-weight: 700;
}

.section-text {
  font-size: 1rem;
  color: var(--dark-gray);
  line-height: 1.7;
}

/* Includes/Excludes Info Grid */
.info-grids-container {
  display: grid;
  grid-template-columns:  repeat(2, 1fr);
  max-width: 1000px;
  gap: 2rem;
  margin: 3rem 0;
  padding-left: 100px;
}

.info-grid {
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(14, 94, 111, 0.1);
}

.info-grid:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(14, 94, 111, 0.15);
}

.info-grid-header {
  padding: 1.5rem;
  text-align: center;
  position: relative;
}

.info-grid-header.includes {
  background: linear-gradient(135deg, rgba(14, 94, 111, 0.9), rgba(58, 136, 145, 0.9));
  color: white;
}

.info-grid-header.excludes {
  background: linear-gradient(135deg, rgba(102, 102, 102, 0.9), rgba(136, 136, 136, 0.9));
  color: white;
}

.info-grid-icon {
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.info-grid-icon i {
  font-size: 1.8rem;
  color: #0e5e6f;
}

.info-grid-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.info-grid-content {
  padding: 1.5rem;
}

.info-grid-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-grid-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(14, 94, 111, 0.08);
}

.info-grid-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.info-grid-item-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-grid-item-icon.includes {
  background-color: rgba(14, 94, 111, 0.1);
}

.info-grid-item-icon.excludes {
  background-color: rgba(102, 102, 102, 0.1);
}

.info-grid-item-icon.includes i {
  color: #0e5e6f;
  font-size: 0.9rem;
}

.info-grid-item-icon.excludes i {
  color: #666;
  font-size: 0.9rem;
}

.info-grid-item-text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* Mobile responsiveness for packages */
@media (max-width: 768px) {
  .info-grids-container {
    grid-template-columns: 1fr;
  }
  
  .info-grid {
    margin-bottom: 1.5rem;
  }
  
  .info-grid-header {
    padding: 1.2rem;
  }
  
  .info-grid-icon {
    width: 50px;
    height: 50px;
  }
  
  .info-grid-title {
    font-size: 1.3rem;
  }
  
  .info-grid-content {
    padding: 1.2rem;
  }
}

/* Creative Package Cards */
.creative-packages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Show 2 tiles on desktop */
  gap: 2rem;
  padding: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.creative-package-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.creative-package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.creative-package-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.creative-package-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.creative-package-card:hover .creative-package-image img {
  transform: scale(1.1);
}

.creative-package-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.6));
}

.creative-package-time {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255,255,255,0.9);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #2c3e50;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.creative-package-title {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
}

.creative-package-title h3 {
  color: white;
  margin: 0;
  font-size: 1.4rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.creative-package-content {
  padding: 1.5rem;
}

.creative-package-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.creative-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.creative-feature-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(76, 175, 80, 0.1);
  border-radius: 50%;
  color: #4CAF50;
  font-size: 1rem;
}

.creative-feature-text {
  font-size: 0.9rem;
  color: #2c3e50;
  flex: 1;
}

.creative-package-price {
  text-align: center;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
}

.creative-price-from {
  display: block;
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.creative-price-amount {
  display: block;
  color: #4CAF50;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}

.creative-price-note {
  display: block;
  color: #666;
  font-size: 0.8rem;
  margin-top: 0.5rem;
}

.creative-package-cta {
  text-align: center;
}

.creative-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #4CAF50;
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.creative-cta-button:hover {
  background: #388E3C;
  transform: translateY(-2px);
}

/* Theme Variations */
.theme-sightseeing .creative-feature-icon {
  background: rgba(33, 150, 243, 0.1);
  color: #2196F3;
}

.theme-classic .creative-feature-icon {
  background: rgba(156, 39, 176, 0.1);
  color: #9C27B0;
}

.theme-budget .creative-feature-icon {
  background: rgba(255, 152, 0, 0.1);
  color: #FF9800;
}

.theme-night .creative-feature-icon {
  background: rgba(63, 81, 181, 0.1);
  color: #3F51B5;
}

.theme-forest .creative-feature-icon {
  background: rgba(76, 175, 80, 0.1);
  color: #4CAF50;
}

.theme-custom .creative-feature-icon {
  background: rgba(233, 30, 99, 0.1);
  color: #E91E63;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .creative-packages-grid {
    padding: 2rem;
    grid-template-columns: repeat(2, 1fr); /* Still 2 columns on smaller desktop/tablet */
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .creative-packages-grid {
    grid-template-columns: 1fr; /* Single column on tablet */
    padding: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
  }

  .creative-package-image {
    height: 200px;
  }

  .creative-package-features {
    grid-template-columns: 1fr;
  }

  .creative-package-title h3 {
    font-size: 1.2rem;
  }

  .creative-price-amount {
    font-size: 1.75rem;
  }

  .creative-cta-button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .creative-packages-grid {
    padding: 1rem;
    gap: 1rem;
  }

  .creative-package-image {
    height: 180px;
  }
}

/* Animation Classes */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.stat-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-icon {
  font-size: 2rem;
  color: #4CAF50;
  margin-bottom: 1rem;
}

.stat-card h3 {
  font-size: 2rem;
  color: #2c3e50;
  margin: 0;
  line-height: 1.2;
}

.stat-card p {
  color: #666;
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
}

/* Package Filters */
.package-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin: 2rem 0;
}

.package-filter {
  background: transparent;
  border: 2px solid #4CAF50;
  color: #4CAF50;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.package-filter:hover,
.package-filter.active {
  background: #4CAF50;
  color: white;
}

/* Color themes for different packages */
.theme-sightseeing {
  --package-color: #3a8891;
}

.theme-classic {
  --package-color: #0e5e6f;
}

.theme-budget {
  --package-color: #3a8891;
}

.theme-night {
  --package-color: #0e5e6f;
}

.theme-forest {
  --package-color: #3a8891;
}

.theme-custom {
  --package-color: #0e5e6f;
}

/* Theme-specific styles */
.theme-sightseeing .creative-package-time,
.theme-budget .creative-package-time,
.theme-forest .creative-package-time {
  background-color: #3a8891;
  color: white;
}

.theme-classic .creative-package-time,
.theme-night .creative-package-time,
.theme-custom .creative-package-time {
  background-color: #0e5e6f;
  color: white;
}

.theme-sightseeing .creative-package-title h3:after,
.theme-budget .creative-package-title h3:after,
.theme-forest .creative-package-title h3:after {
  background-color: #3a8891;
}

.theme-classic .creative-package-title h3:after,
.theme-night .creative-package-title h3:after,
.theme-custom .creative-package-title h3:after {
  background-color: #0e5e6f;
}

.theme-sightseeing .creative-feature-icon,
.theme-budget .creative-feature-icon,
.theme-forest .creative-feature-icon {
  background-color: rgba(58, 136, 145, 0.1);
}

.theme-classic .creative-feature-icon,
.theme-night .creative-feature-icon,
.theme-custom .creative-feature-icon {
  background-color: rgba(14, 94, 111, 0.1);
}

.theme-sightseeing .creative-cta-button,
.theme-budget .creative-cta-button,
.theme-forest .creative-cta-button {
  background: linear-gradient(135deg, #3a8891, #2c6e76);
}

.theme-classic .creative-cta-button,
.theme-night .creative-cta-button,
.theme-custom .creative-cta-button {
  background: linear-gradient(135deg, #0e5e6f, #0a4754);
}

.theme-sightseeing .creative-feature-icon i,
.theme-budget .creative-feature-icon i,
.theme-forest .creative-feature-icon i {
  color: #3a8891;
}

.theme-classic .creative-feature-icon i,
.theme-night .creative-feature-icon i,
.theme-custom .creative-feature-icon i {
  color: #0e5e6f;
}

/* Additional themes for special packages */
.theme-adventure {
  --package-color: #dc3545;
}

.theme-honeymoon {
  --package-color: #e83e8c;
}

.theme-family {
  --package-color: #007bff;
}

.theme-trekking {
  --package-color: #6610f2;
}

.theme-adventure .creative-package-time {
  background-color: #dc3545;
  color: white;
}

.theme-honeymoon .creative-package-time {
  background-color: #e83e8c;
  color: white;
}

.theme-family .creative-package-time {
  background-color: #007bff;
  color: white;
}

.theme-trekking .creative-package-time {
  background-color: #6610f2;
  color: white;
}

.theme-adventure .creative-package-title h3:after {
  background-color: #dc3545;
}

.theme-honeymoon .creative-package-title h3:after {
  background-color: #e83e8c;
}

.theme-family .creative-package-title h3:after {
  background-color: #007bff;
}

.theme-trekking .creative-package-title h3:after {
  background-color: #6610f2;
}

.theme-adventure .creative-feature-icon {
  background-color: rgba(220, 53, 69, 0.1);
}

.theme-honeymoon .creative-feature-icon {
  background-color: rgba(232, 62, 140, 0.1);
}

.theme-family .creative-feature-icon {
  background-color: rgba(0, 123, 255, 0.1);
}

.theme-trekking .creative-feature-icon {
  background-color: rgba(102, 16, 242, 0.1);
}

.theme-adventure .creative-cta-button {
  background: linear-gradient(135deg, #dc3545, #c82333);
}

.theme-honeymoon .creative-cta-button {
  background: linear-gradient(135deg, #e83e8c, #d6246e);
}

.theme-family .creative-cta-button {
  background: linear-gradient(135deg, #007bff, #0062cc);
}

.theme-trekking .creative-cta-button {
  background: linear-gradient(135deg, #6610f2, #520dc2);
}

.theme-adventure .creative-feature-icon i {
  color: #dc3545;
}

.theme-honeymoon .creative-feature-icon i {
  color: #e83e8c;
}

.theme-family .creative-feature-icon i {
  color: #007bff;
}

.theme-trekking .creative-feature-icon i {
  color: #6610f2;
}

/* Service categories section */
.service-categories {
  padding: 4rem 0;
  background-color: #f9fafb;
  border-top: 1px solid rgba(14, 94, 111, 0.08);
  border-bottom: 1px solid rgba(14, 94, 111, 0.08);
}

.service-category {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  margin-bottom: 3rem;
  border: 1px solid rgba(14, 94, 111, 0.1);
}

.service-category:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(14, 94, 111, 0.15);
}

.service-category-header {
  background: linear-gradient(to right, rgba(14, 94, 111, 0.03), rgba(58, 136, 145, 0.03));
  padding: 1.8rem;
  color: #333;
  position: relative;
  border-bottom: 1px solid rgba(14, 94, 111, 0.08);
}

.service-category-header h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: #0e5e6f;
}

.service-category-header p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}

.service-category-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: rgba(14, 94, 111, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(14, 94, 111, 0.1);
}

.service-category-icon i {
  font-size: 1.5rem;
  color: #0e5e6f;
}

.service-category-content {
  padding: 1.8rem;
}

.service-category-features {
  margin-bottom: 1.8rem;
}

.service-category-feature {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 1.2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(14, 94, 111, 0.08);
}

.service-category-feature:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.service-category-feature-icon {
  width: 36px;
  height: 36px;
  background-color: rgba(14, 94, 111, 0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(14, 94, 111, 0.1);
}

.service-category-feature-icon i {
  color: #3a8891;
  font-size: 1rem;
}

.service-category-feature-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: #333;
}

.service-category-feature-content p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
}

.service-category-cta {
  text-align: center;
}

.service-category-button {
  display: inline-block;
  background: linear-gradient(135deg, #0e5e6f, #3a8891);
  color: white;
  padding: 0.9rem 1.8rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(14, 94, 111, 0.2);
  border: none;
}

.service-category-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(14, 94, 111, 0.3);
  background: linear-gradient(135deg, #0a4754, #2d6b72);
}

/* SEO Content Section */
.seo-content-section {
  padding: 4rem 0;
  background-color: #f9fafb;
  border-top: 1px solid rgba(14, 94, 111, 0.08);
}

.seo-content-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  padding: 2.5rem;
  border: 1px solid rgba(14, 94, 111, 0.1);
}

.seo-content-wrapper h2 {
  font-size: 1.8rem;
  color: #0e5e6f;
  margin-bottom: 1.5rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 1rem;
}

.seo-content-wrapper h2:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, #0e5e6f, #3a8891);
  border-radius: 3px;
}

.seo-content-wrapper h3 {
  font-size: 1.4rem;
  color: #3a8891;
  margin: 1.8rem 0 1rem;
  font-weight: 600;
}

.seo-content-wrapper p {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.seo-content-columns {
  display: flex;
  gap: 2.5rem;
  margin: 2rem 0;
}

.seo-content-column {
  flex: 1;
}

.seo-content-wrapper ul {
  padding-left: 0;
  margin-bottom: 1.5rem;
  list-style: none;
}

.seo-content-wrapper li {
  margin-bottom: 0.8rem;
  color: #555;
  line-height: 1.6;
  position: relative;
  padding-left: 1.8rem;
}

.seo-content-wrapper li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background-color: #3a8891;
  border-radius: 50%;
}

.seo-content-wrapper strong {
  color: #0e5e6f;
  font-weight: 600;
}

.seo-content-divider {
  height: 1px;
  background: linear-gradient(to right, rgba(14, 94, 111, 0.1), rgba(58, 136, 145, 0.1), rgba(14, 94, 111, 0.1));
  margin: 2rem 0;
}

/* Comparison Table Styles */
.comparison-section {
  padding: 4rem 0;
  background-color: #f9fafb;
  border-top: 1px solid rgba(14, 94, 111, 0.08);
  border-bottom: 1px solid rgba(14, 94, 111, 0.08);
}

.comparison-table-wrapper {
  overflow-x: auto;
  box-shadow: 0 8px 20px rgba(14, 94, 111, 0.1);
  border-radius: 12px;
  background: white;
  border: 1px solid rgba(14, 94, 111, 0.1);
}

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 800px;
  border-radius: 12px;
  overflow: hidden;
}

.comparison-table thead tr {
  background: linear-gradient(135deg, #0e5e6f, #3a8891);
}

.comparison-table th {
  padding: 1.5rem;
  text-align: center;
  font-weight: 700;
  color: white;
  font-size: 1.1rem;
  border-bottom: none;
}

.comparison-table th:first-child {
  text-align: left;
}

.comparison-table th.highlight {
  background: rgba(255,255,255,0.1);
}

.comparison-table tbody tr:nth-child(odd) {
  background-color: rgba(14, 94, 111, 0.03);
}

.comparison-table td {
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid rgba(14, 94, 111, 0.08);
  text-align: center;
  color: #555;
}

.comparison-table td:first-child {
  font-weight: 600;
  color: #333;
  text-align: left;
}

.comparison-table td.highlight {
  background-color: rgba(14, 94, 111, 0.05);
}

.comparison-table .price {
  color: #0e5e6f;
  font-weight: 700;
}

.comparison-table .tag {
  display: inline-block;
  background-color: #0e5e6f;
  color: white;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.85rem;
}

.comparison-table .level {
  font-weight: 600;
}

.comparison-table .level.easy {
  color: #28a745;
}

.comparison-table .level.moderate {
  color: #17a2b8;
}

.comparison-table .level.custom {
  color: #6610f2;
}

.comparison-table .check {
  color: #28a745;
  font-size: 1.2rem;
}

.comparison-table .times {
  color: #dc3545;
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .comparison-section {
    padding: 3rem 0;
  }
  
  .comparison-table th {
    padding: 1.2rem 1rem;
    font-size: 1rem;
  }
  
  .comparison-table td {
    padding: 1rem;
    font-size: 0.95rem;
  }
  
  .comparison-table .tag {
    padding: 4px 8px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .comparison-table th {
    padding: 1rem 0.8rem;
    font-size: 0.9rem;
  }
  
  .comparison-table td {
    padding: 0.8rem;
    font-size: 0.85rem;
  }
  
  .comparison-table .tag {
    padding: 3px 6px;
    font-size: 0.75rem;
  }
}

/* FAQ Section Styles */
.faq-section {
  padding: 4rem 0;
  background: #f8f9fa;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-grid {
  display: grid;
  gap: 1.5rem;
}

.faq-item {
  background: white;
  border-radius: 15px;
  padding: 0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  overflow: hidden;
}

.faq-item:hover {
  transform: translateY(-2px);
}

.faq-question {
  padding: 1.5rem 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: white;
  border: none;
  width: 100%;
  text-align: left;
  transition: all 0.3s ease;
}

.faq-question h3 {
  color: #2c3e50;
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.faq-question i.question-icon {
  color: #4CAF50;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.faq-question i.arrow-icon {
  color: #4CAF50;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i.arrow-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background: white;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  transition: max-height 0.5s ease-in;
}

.faq-answer-content {
  padding: 0 2rem 1.5rem;
  color: #666;
  line-height: 1.6;
}

.faq-answer-content ul {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
}

.faq-answer-content li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.faq-answer-content li i {
  color: #4CAF50;
  font-size: 0.9rem;
}

/* FAQ Responsive Styles */
@media (max-width: 768px) {
  .faq-section {
    padding: 3rem 1rem;
  }

  .faq-question {
    padding: 1.2rem 1.5rem;
  }

  .faq-question h3 {
    font-size: 1.1rem;
  }

  .faq-answer-content {
    padding: 0 1.5rem 1.2rem;
  }
}

@media (max-width: 480px) {
  .faq-section {
    padding: 2rem 1rem;
  }

  .faq-question {
    padding: 1rem;
  }

  .faq-question h3 {
    font-size: 1rem;
  }

  .faq-answer-content {
    padding: 0 1rem 1rem;
  }
} 