.serways-locations-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  position: relative;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.serways-locations-container.loaded {
  opacity: 1;
}

@keyframes serways-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.serways-loading-spinner {
  animation: serways-spin 1s linear infinite;
}

@media (max-width: 767px) {
  .serways-locations-container {
    flex-direction: column;
    min-height: 85vh;
    padding-bottom: 20px;
  }

  .serways-locations-sidebar {
    width: 100% !important;
    order: 1;
    background: white;
    border-bottom: 1px solid #e5e7eb;
    padding: 16px;
    z-index: 10;
  }

  .serways-locations-container>div:nth-child(2) {
    display: none !important;
  }

  .filter-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
  }

  .filter-section-toggle.has-active-filters::after {
    content: '';
    position: absolute;
    right: 40px;
    width: 18px;
    height: 18px;
    background: #b5003c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .filter-section-toggle.has-active-filters::after {
    content: '';
    mask: url(#check-icon);
    -webkit-mask: url(#check-icon);
    mask-size: contain;
    -webkit-mask-size: contain;
    background-color: white;
    width: 11px;
    height: 11px;
    position: absolute;
    right: 44px;
    top: 50%;
    transform: translateY(-50%);
  }

  .filter-section-toggle.has-active-filters::before {
    content: '';
    position: absolute;
    right: 40px;
    width: 18px;
    height: 18px;
    background: #b5003c;
    border-radius: 50%;
  }

  .filter-section-toggle:not(.has-active-filters)::before,
  .filter-section-toggle:not(.has-active-filters)::after {
    display: none !important;
  }


  .filter-panel-header h3 {
    font-size: 18px;
    color: #111827;
    margin: 0;
  }

  #serways-filter-close {
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    color: #6b7280;
  }

  #serways-map {
    width: 100% !important;
    height: 520px !important;
    order: 2;
    flex: none !important;
    margin-bottom: 20px;
  }

  #serways-list {
    width: 100% !important;
    height: 450px !important;
    order: 3;
    overflow-y: auto;
    background: white;
    padding: 16px;
    margin-bottom: 20px;
  }
}

[type=checkbox] {
  accent-color: #b5003c !important;
}

[type=checkbox]:checked,
[type=checkbox]:active {
  background-color: #b5003c !important;
}

@media (min-width: 768px) {
  .serways-locations-container {
    flex-direction: row !important;
    height: 90vh !important;
    min-height: 800px !important;
    gap: 20px;
    padding: 2rem 0rem 2rem 0rem;
  }

  .serways-locations-sidebar {
    display: none !important;
  }

  .serways-locations-container>div:nth-child(2) {
    display: flex !important;
    flex-direction: column !important;
    width: 30% !important;
    max-width: 380px !important;
    height: 100% !important;
    flex-shrink: 0 !important;
    gap: 0;
  }



  .serways-header-desktop h2 {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #B0063E !important;
    margin: 0 0 12px 0 !important;
  }

  .serways-header-desktop p {
    font-size: 14px !important;
    color: #374151 !important;
    line-height: 1.5 !important;
    margin: 0 !important;
  }

  .serways-search-container {
    flex-shrink: 0 !important;
    background: white !important;
    border: 2px solid #e5e7eb !important;
    border-radius: 12px !important;
  }

  .serways-list-desktop {
    flex: 1 !important;
    overflow-y: auto !important;
    padding: 10px !important;
    background: white !important;
    border: 2px solid #e5e7eb !important;
    border-radius: 12px !important;
    margin-top: 20px !important;
    min-height: 0 !important;
  }

  #serways-map {
    flex: 1 !important;
    width: auto !important;
    height: 100% !important;
    order: 2;
    border: 2px solid #e5e7eb !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    margin-bottom: 20px !important;
  }

  #serways-map .gm-style {
    border-radius: 10px !important;
  }

  #serways-map .gm-style>div:first-child {
    border-radius: 10px !important;
  }

  #serways-list {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  .serways-locations-container>div:nth-child(2) {
    width: 28% !important;
    max-width: 400px !important;
  }

  .serways-locations-container {
    height: 92vh !important;
  }
}

.serways-list-desktop::-webkit-scrollbar,
#serways-list::-webkit-scrollbar {
  width: 6px;
}

.serways-list-desktop::-webkit-scrollbar-thumb,
#serways-list::-webkit-scrollbar-thumb {
  background: #b5003c;
  border-radius: 3px;
}

.serways-list-desktop::-webkit-scrollbar-track,
#serways-list::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.filter-panel-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 9998;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.filter-panel-backdrop.active {
  display: block;
  opacity: 1;
}

#serways-filter-panel {
  position: fixed;
  background: white;
  border-radius: 12px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  display: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 767px) {
  #serways-filter-panel {
    bottom: 0;
    left: 0;
    right: 0;
    max-height: 90vh;
    border-radius: 20px 20px 0 0;
    transform: translateY(100%);
  }

  #serways-filter-panel.show {
    display: block;
    transform: translateY(0);
  }
}

@media (min-width: 768px) {
  #serways-filter-panel {
    top: 50%;
    left: 50%;
    width: 90%;
    max-width: 700px;
    max-height: 85vh;
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0;
  }

  #serways-filter-panel.show {
    display: block;
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

.filter-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid #e5e7eb;
  background: white;
  border-radius: 12px 12px 0 0;
}

.filter-panel-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: #b5003c;
  margin: 0;
}

#serways-filter-close {
  width: 40px;
  height: 40px;
  border: none;
  background: #f3f4f6;
  color: #6b7280;
  cursor: pointer;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

#serways-filter-close:hover {
  background: #e5e7eb;
  color: #374151;
}

.clear-all-filters-container {
  padding: 16px 24px 0 24px;
  border-bottom: 1px solid #e5e7eb;
  display: none;
}

.clear-all-filters-container.show {
  display: block;
}

.clear-all-filters {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fee2e2;
  color: #dc2626;
  border: 1px solid #fecaca;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}

.clear-all-filters:hover {
  background: #fecaca;
  border-color: #f87171;
}

.filter-content {
  max-height: 60vh;
  overflow-y: auto;
  padding: 0 24px;
}

.filter-content::-webkit-scrollbar {
  width: 6px;
}

.filter-content::-webkit-scrollbar-thumb {
  background: #b5003c;
  border-radius: 3px;
}

.serways-filter-section {
  margin: 16px 0;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
}

.filter-section-toggle {
  width: 100%;
  padding: 16px;
  background: #f8f9fa;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 600;
  color: #521340;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.filter-section-toggle:hover {
  background: #e9ecef;
}

.filter-section-toggle.expanded {
  background: rgba(181, 0, 60, 0.1);
  border-bottom: 1px solid #e5e7eb;
}

.filter-section-toggle.has-active-filters {
  background: rgba(181, 0, 60, 0.05);
  border-left: 4px solid #b5003c;
}

.filter-section-toggle.has-active-filters::after {
  content: '✓';
  position: absolute;
  left: 160px;
  width: 20px;
  height: 20px;
  background: #b5003c;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  z-index: 1;
}

.filter-options {
  display: none;
  padding: 16px;
  background: white;
}

.filter-options.show {
  display: block;
}

.filter-options label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  cursor: pointer;
  border-bottom: 1px solid #f3f4f6;
  transition: all 0.2s;
}

.filter-options label:last-child {
  border-bottom: none;
}

.filter-options label:hover {
  color: #b5003c;
  background: rgba(181, 0, 60, 0.02);
  margin: 0 -16px;
  padding-left: 16px;
  padding-right: 16px;
}

.filter-options label.active {
  color: #b5003c;
  font-weight: 600;
}

.filter-options input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #b5003c;
  cursor: pointer;
}

.open-now-filter {
  margin: 16px 0;
  padding: 16px;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border: 1px solid #0891b2;
  border-radius: 8px;
}

.open-now-filter label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: #0891b2;
  cursor: pointer;
}

.active-filters {
  margin: 16px 24px;
  padding: 16px;
  background: #f9fafb;
  border-radius: 8px;
  display: none;
}

.active-filters.show {
  display: block;
}

.active-filters-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.active-filters-title {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
}

.active-filters-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.active-filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #b5003c;
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  box-shadow: 0 2px 4px rgba(181, 0, 60, 0.2);
}

.remove-filter {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  cursor: pointer;
  font-size: 16px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.remove-filter:hover {
  background: rgba(255, 255, 255, 0.3);
}

.filter-panel-footer {
  padding: 24px;
  border-top: 1px solid #e5e7eb;
  background: white;
  border-radius: 0 0 12px 12px;
}

#serways-apply-filters {
  width: 100%;
  padding: 16px 24px;
  background: #b5003c;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}

#serways-apply-filters:hover:not(:disabled) {
  background: #8f0031;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(181, 0, 60, 0.3);
}

#serways-apply-filters:disabled {
  background: #9ca3af !important;
  cursor: not-allowed !important;
  transform: none !important;
  box-shadow: none !important;
}

#serways-apply-filters:disabled::after {
  display: block;
  font-size: 12px;
  margin-top: 4px;
  color: #6b7280;
}

.mode-toggle {
  display: flex;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin: 10px 0;
  overflow: hidden;
  border: 1px solid #b5003c;
  background: #F5F5F5;
}

@media (min-width: 768px) {
  .mode-toggle {
    width: 100%;
    max-width: none;
    border: 0px solid #b5003c;
  }
}

.mode-btn {
  flex: 1;
  padding: 10px;
  border: none;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
  white-space: nowrap;
  background: #F5F5F5;
}

.mode-btn.active {
  background: #b5003c;
  color: white;
  font-weight: 600;
  border-radius: 8px;
}

.serways-route-planner {
  border-radius: 8px;
  margin-top: 16px;
}

.view-toggle {
  display: flex;
  gap: 16px;
  margin: 16px 0;
  border-bottom: 1px solid #e5e7eb;
}

.view-btn {
  padding: 8px 16px;
  border: none;
  background: transparent;
  color: #666;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border-bottom: 2px solid transparent;
}

.view-btn.active {
  color: #b5003c;
  border-bottom-color: #b5003c;
}

#serways-filter-toggle,
#serways-filter-toggle-desktop {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px;
  border: 1px solid #E3E3E3;
  color: #b5003c;
  background: white;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  min-width: 120px;
  justify-content: center;
}

#serways-filter-toggle:hover,
#serways-filter-toggle-desktop:hover {
  background: rgba(181, 0, 60, 0.05);
}

#serways-location-count,
#serways-location-count-desktop {
  font-size: 14px;
  color: #6b7280;
  margin: 16px 0;
  line-height: 1.4;
}

#serways-location-count span,
#serways-location-count-desktop span {
  color: #b5003c;
  font-weight: 600;
  display: block;
}

.serways-controls-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin: 6px 0;
}

@media (min-width: 768px) {
  .serways-controls-row {
    align-items: center;
  }
}

.serways-input {
  width: 100%;
  padding: 12px 50px 12px 40px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.2s;
}

.serways-input:focus {
  outline: none;
  border-color: #b5003c;
  box-shadow: 0 0 0 3px rgba(181, 0, 60, 0.1);
}

.serways-input-group {
  position: relative;
}

.serways-input-icon-left {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: #9ca3af;
  z-index: 2;
  pointer-events: none;
}

.serways-input-icon-right {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  width: 24px;
  height: 24px;
}

.location-icon {
  width: 20px;
  height: 20px;
  color: #9ca3af;
  cursor: pointer;
  transition: color 0.2s;
  display: block;
}

.location-icon:hover {
  color: #b5003c;
}

.serways-clear-input {
  background: #f3f4f6;
  border: none;
  font-size: 16px;
  color: #6b7280;
  cursor: pointer;
  width: 24px;
  height: 24px;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: all 0.2s;
  position: absolute;
  top: 0;
  right: 0;
}



@media (max-width: 767px) {
  .serways-input {
    padding: 14px 50px 14px 40px;
    font-size: 16px;
  }

  .serways-input-icon-left {
    left: 14px;
    width: 20px;
    height: 20px;
  }

  .serways-input-icon-right {
    right: 14px;
    width: 26px;
    height: 26px;
  }

  .location-icon {
    width: 22px;
    height: 22px;
  }

  .serways-clear-input {
    width: 26px;
    height: 26px;
    font-size: 18px;
  }
}

.serways-route-planner .serways-input {
  background: #F5F5F5;
  border: none;
}

.serways-route-planner .serways-input:focus {
  background: white;
  border: 1px solid #b5003c;
}

@media (min-width: 768px) {
  #serways-route-planner-desktop .serways-input {
    background: white;
    border: 1px solid #d1d5db;
  }
}

.serways-input:disabled {
  background-color: #f9fafb;
  color: #6b7280;
  cursor: not-allowed;
}

.serways-input:disabled+.serways-input-icon-right .location-icon,
.serways-input:disabled+.serways-input-icon-right .serways-clear-input {
  opacity: 0.5;
  pointer-events: none;
}

#serways-route-search,
#serways-route-search-desktop {
  width: 100%;
  padding: 12px;
  background: #b5003c;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  margin-top: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s;
}

#serways-route-search:hover,
#serways-route-search-desktop:hover {
  background: #8f0031;
}

#serways-reverse-route,
#serways-reverse-route-desktop {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.location-list-item {
  background: white;
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
  transition: all 0.2s;
  cursor: pointer;
  margin-bottom: 16px;
}

.location-list-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-color: #b5003c;
  transform: translateY(-2px);
}

.location-title {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
}

.location-highway {
  color: #757474C4;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

.location-highway-icon {
  width: 16px;
  height: 16px;
  background: #3b82f6;
  color: white;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 600;
}

.location-address {
  color: #9ca3af;
  font-size: 12px;
  margin: 0 0 8px 0;
}

.location-status {
  font-size: 12px;
  font-weight: 600;
}

.text-green-600 {
  color: #059669;
}

.text-red-600 {
  color: #dc2626;
}

.location-list-item .feature-tag,
.location-list-item img {
  margin-right: 8px !important;
  margin-bottom: 4px;
}

@media (max-width: 1023px) and (min-width: 768px) {
  .serways-locations-container>div:nth-child(2) {
    width: 35% !important;
  }
}

.hidden {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

* {
  box-sizing: border-box;
}

.serways-autocomplete-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  max-height: 300px;
  overflow-y: auto;
  background: white;
  border: 1px solid #d1d5db;
  border-top: none;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.serways-autocomplete-suggestions::-webkit-scrollbar {
  width: 6px;
}

.serways-autocomplete-suggestions::-webkit-scrollbar-thumb {
  background: #b5003c;
  border-radius: 3px;
}

.serways-autocomplete-item {
  padding: 12px 16px;
  cursor: pointer;
  border-bottom: 1px solid #f3f4f6;
  transition: background-color 0.2s;
}

.serways-autocomplete-item:last-child {
  border-bottom: none;
}

.serways-autocomplete-item:hover {
  background-color: #f9fafb;
}

.serways-autocomplete-item .main-text {
  font-weight: 500;
  color: #111827;
  margin-bottom: 4px;
}

.serways-autocomplete-item .secondary-text {
  font-size: 12px;
  color: #6b7280;
}

.loading-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: serways-spin 1s linear infinite;
  margin-right: 8px;
  vertical-align: middle;
}

@keyframes serways-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.filter-options,
.mode-toggle,
.view-toggle,
.filter-section-toggle,
.location-list-item,
.serways-input,
.filter-panel-backdrop,
#serways-filter-panel {
  transition: all 0.2s ease;
}

.details-section {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease-in-out, opacity 0.4s ease-in-out;
  opacity: 0;
}

.details-section.expanded {
  max-height: 3000px;
  opacity: 1;
}

.toggle-icon {
  transition: transform 0.3s ease-in-out;
}

.feature-slider {
  margin: 20px 0;
}

.swiper-slide {
  height: 400px;
}

.feature-slide {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 20px 30px 0;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  transition: all 0.3s ease;
}

.feature-slide .content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: left;
}

.feature-slide h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.feature-slide p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  margin-bottom: 15px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.feature-slide .btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.feature-slide .btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

.feature-slide .btn svg {
  margin-left: 8px;
  width: 16px;
  height: 16px;
}

.swiper-button-next,
.swiper-button-prev {
  color: #8e092b !important;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  width: 40px !important;
  height: 40px !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 18px !important;
}

.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.7) !important;
}

.swiper-pagination-bullet-active {
  background: #8e092b !important;
}

.gm-style .gm-style-iw-c{
  max-width: 300px !important;
}
.gm-style-iw-d{
  margin-top: -1.5rem !important;
}


.serways-header-desktop {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  overflow: hidden;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: #f8f9fa;
  border: none;
  width: 100%;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  color: #B0063E;
  transition: all 0.3s ease;
}

.accordion-header:hover {
  background: #e9ecef;
}

.accordion-header.active {
  background: #B0063E;
  color: white;
}

.accordion-arrow {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 12px;
}

.accordion-header.active .accordion-arrow {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: white;
}

.accordion-content.active {
  max-height: 200px; 
}

.accordion-content-inner {
  padding: 16px 20px;
  color: #6b7280;
  line-height: 1.6;
}
