#cookie-banner {
  box-shadow: 0 0 6px rgba(123, 45, 255, 0.15), 
              0 0 10px rgba(0, 200, 255, 0.1);
  transition: box-shadow 0.3s ease;
  border: 1px solid rgba(0, 100, 255, 0.4);
}

.main-container:hover,
.footer-column:hover,
.treatments-carousel:hover,
.footer-cta:hover,
.footer-social a:hover {
  box-shadow: 0 0 10px rgba(123, 45, 255, 0.25), 
              0 0 15px rgba(0, 200, 255, 0.15);
  border-color: rgba(0, 150, 255, 0.7);
}

.search-bar input:focus,
.mobile-search input:focus {
  box-shadow: 0 0 8px rgba(123, 45, 255, 0.2), 
              0 0 12px rgba(0, 200, 255, 0.12),
              inset 0 0 3px rgba(123, 45, 255, 0.1);
  outline: none;
  border-color: rgba(0, 150, 255, 0.8);
}

/* ===== BORDER STYLES ===== */
.cookie-item,
.cookie-list,
.popup-header,
.popup-actions,
.btn,
.mobile-header,
.mobile-nav-links a,
.mobile-cta,
.mobile-bottom-nav a,
.social-icons a {
  border: 1px solid rgba(0, 100, 255, 0.3);
}

/* ===== BORDER RADIUS ===== */
.main-container,
.footer-column,
.treatments-carousel,
.mobile-nav,
.search-bar input,
.footer-cta,
.footer-social a,
.mobile-search input,
.footer-container,
.footer-bottom,
#cookie-banner,
.cookie-item,
.cookie-list,
.popup-header,
.popup-actions,
.btn,
.mobile-header,
.mobile-nav-links a,
.mobile-cta,
.mobile-bottom-nav a,
.nav-links a,
.contact-info a,
.social-icons a,
.medical-tourism {
  border-radius: var(--border-radius);
}

.search-bar input,
.mobile-search input,
.mobile-cta,
.btn,
.mobile-bottom-nav a,
.footer-cta {
  border-radius: var(--border-radius-sm);
}

.top-section,
.bottom-section {
  border-radius: 0 0 var(--border-radius) var(--border-radius);
}

img, svg {
  border-radius: var(--border-radius-sm);
}


/* ===== UTILITY CLASSES ===== */
.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;
}

.technical {
  color: var(--primary);
  font-style: italic;
  font-weight: 500;
}

.layman {
  color: var(--gray);
}

.lazy-load-spinner {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
  background: #f5f5f5;
}

img[data-src] {
  width: 100%;
  height: auto;
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

img.lazyloaded {
  opacity: 1;
}

.info-text {
  position: fixed;
  bottom: 20px;
  left: 0;
  width: 100%;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  opacity: 0.5;
  z-index: 10;
  letter-spacing: 0.5px;
  font-weight: 300;
}

.desktop-content-container {
  display: none;
}


/* ===== DESKTOP HEADER ===== */
@media (min-width: 769px) {
  .mobile-header,
  .mobile-nav,
  .mobile-nav-overlay,
  .mobile-bottom-nav {
    display: none !important;
  }

  #header {
    background: rgba(5, 8, 15, 0.85);
    backdrop-filter: blur(62px);
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: opacity 0.3s ease;
    top: 0;
    left: 0;
    border-bottom: 1px solid var(--membrane-medium);
    display: block !important;
  }

  .header-container {
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
  }

  .treatments-carousel {
    width: 450px;
    height: 50px;
    overflow: hidden;
    position: relative;
    text-align: center;
    background-color: rgba(5, 8, 15, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    transition: var(--transition);
    box-shadow: 0 0 15px rgba(123, 45, 255, 0.3);
    border: 1px solid var(--membrane-medium);
    cursor: pointer;
    flex-shrink: 0;
  }




  .header-bottom-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.2rem 1rem;
    background-color: transparent;
    flex-wrap: nowrap;
    gap: 210px;
    min-height: 60px;
    width: 100%;
  }

  
}

/* ===== HERO SECTIONS ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  padding-top: 70px;
  background: #0a3d62;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 20px;
  box-sizing: border-box;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(10, 14, 23, 0.3) 0%, var(--darker) 70%);
  z-index: 0;
}

.hero-container {
  width: 100%;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 100%;
  margin: 0 auto;
  padding: 2rem;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
  text-transform: uppercase;
}

.title-part {
  display: block;
}

.highlight {
  color: var(--primary);
  position: relative;
  display: inline-block;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 10px;
  background: rgba(0, 200, 255, 0.3);
  z-index: -1;
}

.subtitle {
  font-size: 1.25rem;
  color: var(--gray);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.hero-cta {
  display: flex;
  gap: 1rem;
}

.hero-section {
  margin-top: 0;
  padding-top: 40px;
}


/* ===== DIVIDER ===== */
.divider {
  border: none;
  height: 3.5px;
  background: linear-gradient(to right, transparent, #3498db, transparent );
  margin: 20px 0;
  position: relative;
}

.divider::before,
.divider::after {
  content: "";
  position: absolute;
  height: 10px;
  width: 10px;
  background-color: #3498db;
  border-radius: 50%;
  top: 50%;
}

.divider::before {
  left: 30%;
}

.divider::after {
  right: 30%;
}




/* ===== MOBILE CAROUSEL STYLES ===== */
.mobile-carousel {
  display: none;
}

.carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0.7rem 0;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
}

.carousel-slide {
  min-width: 100%;
  padding: 0 5px;
  box-sizing: border-box;
}

.mobile-carousel .image-holder {
  height: auto;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  position: relative;
  margin: 0 0 0.5rem;
  margin-top: 0.1rem;
}

.mobile-carousel .image-holder__media {
  height: 170px;
  flex-shrink: 0;
  object-fit: cover;
  width: 100%;
}

.mobile-carousel .image-holder__content {
  padding: 6px 2px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.mobile-carousel .image-holder__btn {
  margin-top: 8px;
  align-self: flex-start;
}



/* ===== COOKIE CONSENT STYLES ===== */
#cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 350px;
  background: white;
  color: #2c3e50;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  display: none;
  overflow: hidden;
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

#cookie-banner.visible {
  display: block;
  transform: translateY(0);
  opacity: 1;
}

#cookie-banner .popup-header {
  padding: 15px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#cookie-banner .popup-header h3 {
  margin: 0;
  font-size: 1.1rem;
  color: #2c3e50;
}

#cookie-banner .cookie-list {
  max-height: 200px;
  overflow-y: auto;
  padding: 10px 15px;
}

#cookie-banner .cookie-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #f5f5f5;
}

#cookie-banner .cookie-name {
  font-size: 0.9rem;
  font-weight: 500;
}

#cookie-banner .toggle-switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 20px;
}

#cookie-banner .toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

#cookie-banner .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ccc;
  transition: .4s;
  border-radius: 20px;
}

#cookie-banner .slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

#cookie-banner input:checked + .slider {
  background-color: #2ecc71;
}

#cookie-banner input:checked + .slider:before {
  transform: translateX(20px);
}

#cookie-banner .popup-actions {
  padding: 15px;
  display: flex;
  justify-content: space-between;
  background: #f9f9f9;
}

#cookie-banner .btn {
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s;
  font-size: 0.85rem;
}

#cookie-banner .btn-primary {
  background: #2ecc71;
  color: white;
}

#cookie-banner .btn-primary:hover {
  background: #27ae60;
}

#cookie-banner .btn-secondary {
  background: #95a5a6;
  color: white;
}

#cookie-banner .btn-secondary:hover {
  background: #7f8c8d;
}

#cookie-banner .btn-accept-all {
  background: #3498db;
  color: white;
}

#cookie-banner .btn-accept-all:hover {
  background: #2980b9;
}

#cookie-banner .cookie-policy-link {
  display: block;
  text-align: center;
  margin-top: 10px;
  color: #3498db;
  text-decoration: none;
  font-size: 0.85rem;
}

#cookie-banner .cookie-policy-link:hover {
  text-decoration: underline;
}
  
  .hero {
    width: 100vw !important;
    max-width: 100vw !important;
    border-radius: 0;
    margin: 0 !important;
  }
  
  .hero-title {
    font-size: 2.75rem;
  }
  
  .subtitle {
    font-size: 1.1rem;
  }
  
  .hero-cta {
    flex-direction: column;
    gap: 1rem;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .section-header {
    width: 100vw !important;
    max-width: 100vw !important;
    padding: 0 1rem;
  }
  
  .image-holders,
  .therapy-grid,
  .process-steps,
  .team-grid,
  .msc-benefits-grid {
    width: 100vw;
    overflow-x: hidden;
    padding: 0 1rem;
    box-sizing: border-box;
  }
  
  .hero-title,
  .subtitle,
  .image-holder__title,
  .image-holder__desc {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  /* Ensure all containers respect viewport boundaries */
  .main-container,
  .hero,
  .secondary-hero,
  .image-holders,
  .contact,
  .section-header {
    width: 100% !important;
    max-width: 100vw !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    box-sizing: border-box !important;
  }
  
  .hero {
    border-radius: 0 !important;
    margin: 0 !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  
  .hero-container {
    padding: 0 0.5rem !important;
  }
  
  .hero-content {
    padding: 1rem !important;
  }
  
  .image-holders {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem 0.5rem !important;
    margin: 0 !important;
  }
  
  .contact {
    padding: 2rem 0.5rem !important;
    width: 100% !important;
  }
  
  .contact-container {
    padding: 0 !important;
  }
  
  .floating-cta-container {
    right: 10px !important;
    left: auto !important;
  }
  
  .floating-cta {
    max-width: calc(100vw - 20px) !important;
    white-space: normal !important;
  }

  .secondary-hero-content {
    flex-direction: column;
  }
  
  .secondary-image-holder-right {
    order: 2;
    margin-top: 1.5rem;
  }
  
  .secondary-text-holder {
    order: 1;
  }
  
  .secondary-hero-image {
    max-width: 100%;
  }

  .secondary-hero-container {
    width: 100% !important;
    margin: 0 0.5rem !important;
  }
  
  .secondary-hero-content {
    padding: 1rem !important;
  }

  
  
  .mobile-carousel {
    display: block;
  }

  .site-footer {
    display: none;
  }

  .floating-cta-container {
    bottom: 80px;
    right: 15px;
  }
  
  .floating-cta {
    padding: 12px 20px;
    font-size: 0.85rem;
  }

  .msc-benefits-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }
  
  .therapy-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }
  
  .team-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }
  
  .image-holders {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1rem;
  }
  
  .process-steps {
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }

  .team-section {
    padding: 3rem 0.5rem;
    width: 100% !important;
    max-width: 100vw !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    overflow: hidden;
  }
  
  .team-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem;
    margin-top: 2rem;
    padding: 0 0.5rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .team-card {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto;
    box-sizing: border-box;
  }
  
  .card-image {
    height: 250px;
  }
  
  .card-overlay h3 {
    font-size: 1.3rem;
  }
  
  .card-content {
    padding: 1rem;
  }
  
  .card-overlay {
    padding: 1rem;
    padding-top: 2.5rem;
  }

  .contact-container {
    flex-direction: column;
  }
  
  .phone-time-container {
    flex-direction: column;
    gap: 1rem;
  }
  
  .phone-time-container > div {
    width: 100%;
  }


/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (min-width: 769px) {
  .mobile-search {
    display: none;
  }
  
  .search-bar {
    display: flex;
  }

  .mobile-carousel {
    display: none;
  }
}

@media (max-width: 768px) {
  .search-bar {
    display: none;
  }
  
  .mobile-search {
    display: block;
    margin: 10px 0;
  }
  
  .mobile-search input {
    font-size: 16px;
  }
}

@media (max-width: 1200px) {
  .header-bottom-container {
    gap: 60px;
  }
  
  .treatments-carousel {
    width: 400px;
  }

  .team-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 1024px) {
  .header-bottom-container {
    gap: 40px;
  }
  
  .treatments-carousel {
    width: 350px;
  }
  
  .medical-tourism {
    padding: 6px 10px;
    font-size: 0.9rem;
  }
  
  .footer-cta {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }

  .contact-container {
    gap: 2rem;
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .therapy-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .footer-columns {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .footer-column > div:not(h3) {
    display: block !important;
  }

  .footer-column h3::after {
    display: none;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .main-container {
    width: 95%;
    padding: 1rem;
    margin: 30px auto;
  }
}

@media (max-width: 992px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 576px) {
  body {
    padding: 0;
  }
  
  .team-section {
    padding: 3rem 0;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
    margin-top: 2rem;
    gap: 2.5rem;
  }
  
  .hero-title {
    font-size: 2.25rem;
  }

  .cta-button {
    width: 100%;
  }

  .footer-column h3 {
    font-size: 1.1rem;
  }
  
  .submit-btn {
    padding: 1.3rem 1.5rem;
  }
  
  .process-badges {
    grid-template-columns: 1fr;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .contact-item {
    flex-direction: row;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 20px;
    margin: 20px auto;
  }
  
  .divider {
    margin: 30px 0;
  }
}

@media (min-width: 1401px) {
  .main-container {
    max-width: 1600px;
  }
}

.footer-bottom {
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

.footer-legal {
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: var(--darker);
  z-index: 1000;
  border-top: 1px solid rgba(0, 200, 255, 0.1);
  box-sizing: border-box;
  padding: 0.5rem;
  justify-content: space-around;
  align-items: center;
  height: 70px;
}

.mobile-bottom-nav a {
  flex: 1;
  text-align: center;
  padding: 12px 0;
  color: var(--gray);
  text-decoration: none;
  font-size: 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: var(--transition);
  box-sizing: border-box;
  min-width: 0;
}

.mobile-bottom-nav a i {
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.mobile-bottom-nav a:hover {
  color: var(--primary);
}

/* Performance optimizations */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ===== REEL NAVIGATION STYLES ===== */
.reel-navigation {
  width: 100%;
  background: rgba(5, 8, 15, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--membrane-medium);
  position: sticky;
  top: 0;
  z-index: 100;
}

.reel-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

.reel-tabs {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  gap: 0;
}

.reel-tabs::-webkit-scrollbar {
  display: none;
}

.reel-tab {
  flex: 1;
  min-width: 180px;
  padding: 1rem 1.5rem;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  position: relative;
}

.reel-tab:hover {
  color: var(--primary);
  background: rgba(0, 200, 255, 0.1);
}

.reel-tab.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
  background: rgba(0, 200, 255, 0.05);
}

.reel-tab span {
  position: relative;
  z-index: 2;
}

/* ===== FULL WIDTH HERO STYLES ===== */
.full-width-hero {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
  margin-right: calc(-50vw + 50%) !important;
  border-radius: 0 !important;
  display: none;
}

.full-width-hero.active {
  display: flex;
}

.full-width-container {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
}

.full-width-content {
  max-width: 1400px;
  margin: 0 auto;
}

/* ===== TREATMENT CARDS GRID ===== */
.treatment-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  width: 100%;
  padding: 2rem 0;
  position: relative;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: none;
}

.treatment-cards-grid.active {
  display: grid;
}

.treatment-card {
  background: rgba(5, 8, 15, 0.85);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius);
  border: 1px solid var(--membrane-medium);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  min-height: 450px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  transition: var(--transition);
  width: 100%;
}

.treatment-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-color: rgba(0, 200, 255, 0.3);
  background: var(--hover-blueish-black);
}

.treatment-card__media {
  width: 100%;
  height: 200px;
  position: relative;
  overflow: hidden;
}

.treatment-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%) contrast(110%);
  transition: var(--transition);
}

.treatment-card:hover .treatment-card__img {
  filter: grayscale(0%) contrast(120%);
  transform: scale(1.05);
}

.treatment-card__content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.treatment-card__title {
  margin: 0 0 12px 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  position: relative;
}

.treatment-card__title:after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #4FD1C5;
  margin: 8px auto 0;
}

.treatment-card__title:hover {
  color: #4C51BF;
  transition: 0.2s;
}

.treatment-card__desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
  flex: 1;
}

.treatment-benefits {
  margin-bottom: 15px;
  background: rgba(6, 5, 17, 0.3);
  padding: 15px;
  border-radius: var(--border-radius-sm);
  border: 1px solid rgba(37, 45, 205, 0.2);
}

.treatment-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background: var(--clinic-teal);
  color: var(--dark);
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  margin-top: auto;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  width: 100%;
}

.treatment-card__btn:hover {
  background: var(--clinic-teal-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 230, 195, 0.3);
}

/* ===== MOBILE CAROUSEL STYLES ===== */
@media (max-width: 768px) {
  .treatment-cards-grid {
    display: none;
  }
  
  .mobile-carousel-container {
    display: block;
    position: relative;
    width: 100%;
    overflow: hidden;
  }
  
  .mobile-carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
  }
  
  .mobile-carousel-slide {
    min-width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
  }
  
  .treatment-card {
    margin: 0;
    min-height: 500px;
  }
  
  .reel-tabs {
    padding: 0.5rem 0;
  }
  
  .reel-tab {
    min-width: 160px;
    padding: 0.8rem 1rem;
    font-size: 0.8rem;
  }
  
  .full-width-hero {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  
  .full-width-content {
    padding: 0 1rem;
  }
}

/* ===== DESKTOP STATIC LAYOUT ===== */
@media (min-width: 769px) {
  .mobile-carousel-container {
    display: none;
  }
  
  .treatment-cards-grid {
    display: grid;
  }
}

@media (min-width: 1200px) {
  .treatment-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===== ANIMATION FOR PAGE TRANSITIONS ===== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.treatment-cards-grid.active {
  animation: fadeIn 0.5s ease;
}

.full-width-hero.active {
  animation: fadeIn 0.5s ease;
}
/* Global Variables */
:root {
  --primary: #00c8ff;
  --secondary: #7b2dff;
  --accent: #ff2d7b;
  --dark: #0a0e17;
  --darker: #05080f;
  --light: #f0f5ff;
  --gray: #8a9bb8;
  --text-light: #ffffff;
  --text-muted: #b0b0b0;
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --border-radius: 10px;
  --border-radius-sm: 6px;
  --membrane-medium: rgba(123, 45, 255, 0.3);
  --hover-blueish-black: rgba(5, 8, 15, 0.95);
  --white: #ffffff;
  --glow: 0 0 15px rgba(0, 200, 255, 0.4);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  color: var(--light);
  background-color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Particle Background */
.particle-network {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
}

/* Glow Effects */
.glow-effect {
  position: fixed;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.15;
  z-index: -1;
}

.glow-1 {
  width: 300px;
  height: 300px;
  background: var(--primary);
  top: -100px;
  left: -100px;
  animation: float 8s ease-in-out infinite;
}

.glow-2 {
  width: 400px;
  height: 400px;
  background: var(--secondary);
  bottom: -150px;
  right: -100px;
  animation: float 10s ease-in-out infinite 2s;
}

.glow-3 {
  width: 200px;
  height: 200px;
  background: var(--accent);
  top: 50%;
  left: 50%;
  animation: float 12s ease-in-out infinite 4s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-20px, 20px); }
}

/* Divider */
.divider {
  border: none;
  height: 3.5px;
  background: linear-gradient(to right, transparent, #00c8ff, transparent);
  margin: 2rem 0;
  position: relative;
}

.divider::before,
.divider::after {
  content: "";
  position: absolute;
  height: 10px;
  width: 10px;
  background-color: #00c8ff;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.divider::before {
  left: 30%;
}

.divider::after {
  right: 30%;
}

/* Enhanced Container Glow Effects */
.main-container,
.footer-column,
.treatments-carousel,
.floating-cta,
.mobile-nav,
.search-bar input,
.footer-cta,
.footer-social a,
.mobile-search input,
.footer-container,
.footer-bottom,
#cookie-banner {
  box-shadow: 0 0 6px rgba(123, 45, 255, 0.15), 
              0 0 10px rgba(0, 200, 255, 0.1);
  transition: box-shadow 0.3s ease;
  border: 1px solid rgba(0, 100, 255, 0.4);
}

/* Hover effects for interactive elements */
.main-container:hover,
.footer-column:hover,
.treatments-carousel:hover,
.floating-cta:hover,
.footer-cta:hover,
.footer-social a:hover {
  box-shadow: 0 0 10px rgba(123, 45, 255, 0.25), 
              0 0 15px rgba(0, 200, 255, 0.15);
  border-color: rgba(0, 150, 255, 0.7);
}

/* Special glow for form elements on focus */
.search-bar input:focus,
.mobile-search input:focus {
  box-shadow: 0 0 8px rgba(123, 45, 255, 0.2), 
              0 0 12px rgba(0, 200, 255, 0.12),
              inset 0 0 3px rgba(123, 45, 255, 0.1);
  outline: none;
  border-color: rgba(0, 150, 255, 0.8);
}

/* Enhanced rounded corners for all containers */
.main-container,
.footer-column,
.treatments-carousel,
.floating-cta,
.mobile-nav,
.search-bar input,
.footer-cta,
.footer-social a,
.mobile-search input,
.footer-container,
.footer-bottom,
#cookie-banner,
.cookie-item,
.cookie-list,
.popup-header,
.popup-actions,
.btn,
.mobile-header,
.mobile-nav-links a,
.mobile-cta,
.mobile-bottom-nav a,
.nav-links a,
.contact-info a,
.social-icons a,
.medical-tourism {
  border-radius: var(--border-radius);
}

/* Special cases for specific elements */
.search-bar input,
.mobile-search input,
.mobile-cta,
.btn,
.mobile-bottom-nav a,
.footer-cta {
  border-radius: var(--border-radius-sm);
}

/* Ensure images and other elements also have rounded corners */
img, svg {
  border-radius: var(--border-radius-sm);
}

/* ===== MOBILE HEADER ===== */
@media (max-width: 768px) {
  .mobile-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(5, 8, 15, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1100;
    padding: 0.8rem 1rem;
    border-bottom: 1px solid rgba(0, 200, 255, 0.1);
  }

  .mobile-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .mobile-logo {
    height: 40px;
  }

  .mobile-logo svg {
    height: 100%;
    width: auto;
  }

  .mobile-menu-toggle {
    background: none;
    border: none;
    color: var(--primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
  }

  .mobile-menu-toggle:hover {
    background: rgba(0, 200, 255, 0.1);
    transform: scale(1.1);
  }

  /* Mobile Navigation */
  .mobile-nav {
    position: fixed;
    top: 60px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 60px);
    background: var(--darker);
    padding: 1.5rem;
    transition: right 0.3s ease;
    overflow-y: auto;
    z-index: 1101;
  }

  .mobile-nav.active {
    right: 0;
  }

  .mobile-search {
    position: relative;
    margin-bottom: 1.5rem;
  }

  .mobile-search input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--gray);
    border-radius: 2rem;
    background: rgba(5, 8, 15, 0.5);
    color: var(--light);
    font-size: 0.9rem;
  }

  .mobile-search button {
    position: absolute;
    right: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
  }

  /* Enhanced Search Styles */
  .search-bar, .mobile-search {
    position: relative;
  }

  .search-bar.focused, .mobile-search.focused {
    box-shadow: 0 0 10px rgba(123, 45, 255, 0.3);
  }

  .search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(5, 8, 15, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--membrane-medium);
    border-radius: var(--border-radius);
    margin-top: 5px;
    z-index: 1000;
    max-height: 200px;
    overflow-y: auto;
  }

  .suggestion-item {
    padding: 10px 15px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .suggestion-item:hover {
    background: rgba(0, 200, 255, 0.1);
  }

  .suggestion-item i {
    color: var(--primary);
    width: 16px;
  }

 
 
  /* Hide desktop elements on mobile */
  #header,
  .site-footer {
    display: none !important;
  }
}


/* Button loading state */
.search-bar button:disabled, 
.mobile-search button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: translateY(-50%) scale(0.95);
}

/* Spinner animation */
.fa-spinner {
    color: #007bff;
}

.fa-spin {
    animation: fa-spin 1s infinite linear;
}

@keyframes fa-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Search Suggestions */
.search-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #ddd;
  border-top: none;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  max-height: 200px;
  overflow-y: auto;
}

.suggestion-item {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  border-bottom: 1px solid #f0f0f0;
}

.suggestion-item:last-child {
  border-bottom: none;
}

.suggestion-item:hover, .suggestion-item.active {
  background-color: #f8f9fa;
}

.suggestion-item i {
  margin-right: 10px;
  color: #666;
  font-size: 14px;
}

.suggestion-item span {
  font-size: 14px;
  color: #333;
}

/* Screen Reader Only */
.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;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .search-bar {
    display: none;
  }
  
  .mobile-search {
    display: block;
  }
}

@media (min-width: 769px) {
  .mobile-search {
    display: none;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Main Content Container */
.main-container {
  background: rgba(5, 9, 17, 0.85);
  backdrop-filter: blur(.2px);
  min-height: calc(80vh - 60px);
  margin: 40px 0 20px;
  padding: 1.25rem;
  border-radius: var(--border-radius);
  margin-left: auto;
  margin-right: auto;
  border: 1px solid rgba(0, 200, 255, 0.1);
}

/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(5, 8, 15, 0.8), rgba(5, 8, 15, 0.9)),
              url('../products/woman-walkig-in-trail-in-park-towards-the-morning-light.avif');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  padding: 3rem 1.5rem;
  text-align: center;
  border-radius: var(--border-radius);
  margin-bottom: 2rem;
  margin-top: 0rem;
}

.hero-content {
  max-width: 100%;
  z-index: 2;
  position: relative;
  margin-top: -1.5rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--light);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 2rem;
  line-height: 1.5;
}

.hero-cta-buttons {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-cta {
  padding: 1rem 2rem;
  border-radius: var(--border-radius-sm);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-cta.primary {
  background: var(--primary);
  color: var(--dark);
}

.hero-cta.primary:hover {
  background: #00b4e6;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 200, 255, 0.3);
}

.hero-cta.secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.hero-cta.secondary:hover {
  background: rgba(0, 200, 255, 0.1);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 50vh;
    padding: 2rem 1rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-cta {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }
}

/* ===== FLOATING CTAs ===== */
.floating-cta-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-end;
}

.floating-cta {
  padding: 14px 28px;
  color: var(--text-light);
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.95rem;
  transition: var(--transition);
  backdrop-filter: blur(8px);
  font-weight: 600;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.floating-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.floating-cta:hover::before {
  transform: translateX(100%);
}

.floating-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow);
}

.floating-cta-glow {
  animation: pulse 2s infinite;
}

.whatsapp-cta {
  background-color: rgba(37, 211, 102, 0.2);
  border-color: #25D366;
}

.whatsapp-cta:hover {
  background-color: rgba(37, 211, 102, 0.3);
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
  animation: pulse-whatsapp 1.5s infinite;
  transform: translateY(-3px) scale(1.03);
}

.schedule-cta {
  background-color: rgba(0, 200, 255, 0.15);
  border-color: var(--primary);
}

.schedule-cta:hover {
  background-color: rgba(0, 200, 255, 0.25);
  box-shadow: var(--glow);
  animation: pulse 1.5s infinite;
  transform: translateY(-3px) scale(1.03);
}

.cta-text {
  display: inline;
}

/* Pulse animations */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 200, 255, 0.7);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(0, 200, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 200, 255, 0);
  }
}

@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ===== NEW FOOTER STYLES ===== */
.site-footer {
  background: var(--darker);
  color: var(--light);
  margin-top: 0rem;
  position: relative;
  border-top: 1px solid rgba(0, 200, 255, 0.1);
}

/* Footer SVG Logo Height Control */
.footer-logo svg {
  height: 58px;
  width: auto;
  max-width: none;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .main-container {
    margin: 20px 0 40px;
    padding: 1rem;
    border-radius: 0;
  }
  
  .header-container {
    padding: 0 1rem;
  }
  
  .nav-menu {
    display: none;
  }
  
  .search-bar {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-width: 100%;
    padding: 0.5rem 1rem;
    background: var(--darker);
    border-bottom: 1px solid rgba(0, 200, 255, 0.1);
    display: none;
  }

  .search-bar.active {
    display: block;
  }

  .mobile-bottom-nav {
    display: flex;
  }

  .site-footer {
    display: none;
  }

  /* Floating CTA adjustments for mobile */
  .floating-cta-container {
    bottom: 80px;
    right: 15px;
  }
  
  .floating-cta {
    padding: 12px 20px;
    font-size: 0.85rem;
  }
}

/* Tablet/Medium Devices (optional) */
@media (min-width: 481px) and (max-width: 768px) {
  .footer-columns {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  /* Revert accordion styles for tablet */
  .footer-column > div:not(h3) {
    display: block !important;
  }

  .footer-column h3::after {
    display: none;
  }
}
  
.footer-bottom {
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}
  
.footer-legal {
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

@media (max-width: 280px) {
  .footer-columns {
    grid-template-columns: 1fr;
  }
}

/* ===== CONTENT SECTION STYLES ===== */

/* Lazy loading styles */
.lazy-load {
  opacity: 0;
  transition: opacity 0.3s;
}

.lazy-load.loaded {
  opacity: 1;
}

/* Placeholder for images */
.lazy-placeholder {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
  border-radius: var(--border-radius);
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* Contact Section */
/* Contact form styles */
.contact-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  margin-top: 1.2rem;
}

.contact-info-container {
  background: rgba(15, 23, 42, 0.7);
  padding: 1.2rem;
  border-radius: 10px;
  border: 1px solid rgba(0, 200, 255, 0.1);
}

.contact-form-container {
  background: rgba(15, 23, 42, 0.7);
  padding: 1.2rem;
  border-radius: 10px;
  border: 1px solid rgba(0, 200, 255, 0.1);
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.contact-item i {
  font-size: 1.8rem;
  color: #00c8ff;
  margin-right: 0.8rem;
  min-width: 30px;
}

.social-links {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(0, 200, 255, 0.1);
  border-radius: 50%;
  color: #00c8ff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #00c8ff;
  color: #0a1929;
  transform: translateY(-3px);
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  color: #00c8ff;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid rgba(0, 200, 255, 0.2);
  background: rgba(10, 15, 25, 0.6);
  color: #f7fafc;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #00c8ff;
  box-shadow: 0 0 0 2px rgba(0, 200, 255, 0.2);
}

.submit-btn {
  width: 100%;
  padding: 10px;
  background: #00c8ff;
  color: #0a1929;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.submit-btn:hover {
  background: #00b4e6;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 200, 255, 0.3);
}

/* Contact form title */
.contact-title {
  text-align: center;
  color: #00c8ff;
  margin-bottom: 1.2rem;
  font-size: 1.8rem;
  border-bottom: 2px solid #00c8ff;
  padding-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .contact-item {
    flex-direction: column;
    text-align: center;
  }
  
  .contact-item i {
    margin-right: 0;
    margin-bottom: 0.4rem;
    font-size: 1.8rem;
  }
}

/* Divider styles */
.divider {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0, 200, 255, 0.3), transparent);
  margin: 1.5rem 0;
}

/* CTA link style */
.cta-link {
  color: #00c8ff;
  text-decoration: none;
  font-weight: 600;
  margin-left: 5px;
}

.cta-link:hover {
  text-decoration: underline;
}

/* Time dropdown container */
.phone-time-container {
  display: flex;
  gap: 12px;
}

@media (max-width: 480px) {
  .phone-time-container {
    flex-direction: column;
    gap: 0;
  }
}
        
/* Performance optimizations */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ===== MOBILE-FIRST RESPONSIVE DESIGN ===== */
.main-container {
  background: rgba(5, 9, 17, 0.85);
  backdrop-filter: blur(10px);
  min-height: calc(80vh - 60px);
  margin: 10px auto 30px;
  padding: 1rem;
  border-radius: 12px;
  width: 97%;
  max-width: 100%;
  border: 1px solid rgba(0, 200, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 50, 100, 0.5);
}

/* ===== TIERED SERVICE STRUCTURE ===== */
.tiered-services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

.service-tier {
  background: rgba(15, 23, 42, 0.8);
  border-radius: 10px;
  padding: 1.5rem;
  border: 1px solid rgba(0, 200, 255, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}

.service-tier:hover {
  transform: translateY(-5px);
  border-color: #00c8ff;
  box-shadow: 0 10px 25px rgba(0, 200, 255, 0.2);
}

.tier-header {
  margin-bottom: 1.5rem;
}

.tier-icon {
  font-size: 3rem;
  color: #00c8ff;
  margin-bottom: 1rem;
}

.tier-title {
  color: #00c8ff;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.tier-subtitle {
  color: #a0aec0;
  font-size: 1.1rem;
  font-style: italic;
}

.tier-description {
  color: #e2e8f0;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.featured-products {
  background: rgba(20, 30, 48, 0.6);
  padding: 1rem;
  border-radius: 8px;
  margin: 1rem 0;
  border-left: 3px solid #00c8ff;
}

.featured-products h4 {
  color: #00c8ff;
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
}

.product-list {
  list-style: none;
  padding: 0;
  text-align: left;
}

.product-list li {
  color: #e2e8f0;
  padding: 0.3rem 0;
  display: flex;
  align-items: center;
}

.product-list li::before {
  content: "▸";
  color: #00c8ff;
  margin-right: 0.5rem;
  font-weight: bold;
}

.tier-cta {
  margin-top: 1.5rem;
}

/* ===== PRODUCT CATEGORY PAGES STYLES ===== */
.category-section {
  background: rgba(10, 15, 25, 0.7);
  border-radius: 10px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  border: 1px solid rgba(0, 200, 255, 0.2);
}

.category-header {
  text-align: center;
  margin-bottom: 2rem;
}

.category-header h2 {
  color: #00c8ff;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.category-subtitle {
  color: #a0aec0;
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
}

.product-accordion {
  margin: 1.5rem 0;
}

.accordion-item {
  background: rgba(15, 23, 42, 0.8);
  border-radius: 8px;
  margin-bottom: 1rem;
  border: 1px solid rgba(0, 200, 255, 0.1);
  overflow: hidden;
}

.accordion-header {
  padding: 1.2rem;
  background: rgba(20, 30, 48, 0.6);
  cursor: pointer;
  display: flex;
  justify-content: between;
  align-items: center;
  transition: background 0.3s ease;
}

.accordion-header:hover {
  background: rgba(0, 200, 255, 0.1);
}

.accordion-title {
  color: #00c8ff;
  font-size: 1.3rem;
  margin: 0;
  flex: 1;
}

.accordion-icon {
  color: #00c8ff;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.accordion-content {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-content.active {
  padding: 1.5rem;
  max-height: 1000px;
}

.accordion-icon.active {
  transform: rotate(180deg);
}

.product-benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 1.2rem 0;
}

.benefit-item {
  background: rgba(20, 30, 48, 0.6);
  padding: 1rem;
  border-radius: 6px;
  border-left: 3px solid #00c8ff;
}

.benefit-item h4 {
  color: #00c8ff;
  margin-bottom: 0.5rem;
}

/* ===== PRODUCTS MASTER HUB ===== */
.products-hub {
  background: rgba(10, 15, 25, 0.7);
  border-radius: 10px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  border: 1px solid rgba(0, 200, 255, 0.2);
}

.hub-header {
  text-align: center;
  margin-bottom: 2rem;
}

/* Section Titles */
.section-title {
  color: #00c8ff;
  font-size: 2rem;
  margin: 2rem 0 1.5rem;
  text-align: center;
  border-bottom: 2px solid #00c8ff;
  padding-bottom: 0.5rem;
}

.products-table {
  width: 100%;
  overflow-x: auto;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.product-card {
  background: rgba(15, 23, 42, 0.8);
  border-radius: 8px;
  padding: 1.2rem;
  border: 1px solid rgba(0, 200, 255, 0.1);
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-3px);
  border-color: #00c8ff;
  box-shadow: 0 5px 15px rgba(0, 200, 255, 0.2);
}

.product-name {
  color: #00c8ff;
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.product-category {
  display: inline-block;
  background: rgba(0, 200, 255, 0.15);
  color: #00c8ff;
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  font-size: 0.8rem;
  margin-bottom: 0.8rem;
}

.product-benefit {
  color: #e2e8f0;
  margin-bottom: 0.8rem;
  line-height: 1.4;
}

.product-best-for {
  color: #a0aec0;
  font-size: 0.9rem;
  font-style: italic;
}

/* ===== CONTENT SECTION STYLES ===== */
.content-section {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(10, 15, 25, 0.6);
  border-radius: 10px;
  border: 1px solid rgba(0, 150, 255, 0.1);
}

.content-section h2 {
  color: #00c8ff;
  margin-bottom: 1rem;
  font-size: 2rem;
  border-bottom: 2px solid #00c8ff;
  padding-bottom: 0.5rem;
  text-align: center;
}

.section-intro {
  text-align: center;
  max-width: 100%;
  margin: 0 auto 1.2rem;
  font-size: 1.2rem;
  color: #e2e8f0;
}

/* CTA Buttons */
.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.cta-button {
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  min-width: 200px;
}

.cta-button.primary {
  background-color: #00c8ff;
  color: #0a1929;
}

.cta-button.primary:hover {
  background-color: #00b4e6;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 200, 255, 0.3);
}

.cta-button.secondary {
  background-color: transparent;
  color: #00c8ff;
  border: 2px solid #00c8ff;
}

.cta-button.secondary:hover {
  background-color: rgba(0, 200, 255, 0.1);
  transform: translateY(-2px);
}

/* IV Therapy Product Cards */
.iv-product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

.iv-product-card {
  background: rgba(15, 23, 42, 0.8);
  border-radius: 10px;
  padding: 1.5rem;
  border: 1px solid rgba(0, 200, 255, 0.1);
  transition: all 0.3s ease;
}

.iv-product-card:hover {
  transform: translateY(-5px);
  border-color: #00c8ff;
  box-shadow: 0 10px 25px rgba(0, 200, 255, 0.2);
}

.iv-product-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.iv-product-icon {
  font-size: 2.5rem;
  color: #00c8ff;
  flex-shrink: 0;
}

.iv-product-title {
  color: #00c8ff;
  font-size: 1.3rem;
  margin: 0;
}

.iv-product-category {
  display: inline-block;
  background: rgba(0, 200, 255, 0.15);
  color: #00c8ff;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.iv-product-description {
  color: #e2e8f0;
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

.iv-product-benefits {
  background: rgba(20, 30, 48, 0.6);
  padding: 1rem;
  border-radius: 8px;
  margin: 1rem 0;
  border-left: 3px solid #00c8ff;
}

.iv-product-benefits h4 {
  color: #00c8ff;
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
}

.iv-product-benefits ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.iv-product-benefits li {
  color: #e2e8f0;
  padding: 0.3rem 0;
  display: flex;
  align-items: center;
}

.iv-product-benefits li::before {
  content: "✓";
  color: #00c8ff;
  margin-right: 0.5rem;
  font-weight: bold;
}

.iv-product-notes {
  background: rgba(255, 193, 7, 0.1);
  padding: 1rem;
  border-radius: 8px;
  margin: 1rem 0;
  border-left: 3px solid #ffc107;
}

.iv-product-notes h4 {
  color: #ffc107;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.iv-product-notes p {
  color: #e2e8f0;
  margin: 0;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (min-width: 768px) {
  .main-container {
    padding: 1.5rem;
    margin: 100px auto 40px;
  }
  
  .tiered-services {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .product-benefits {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cta-buttons {
    flex-direction: row;
    justify-content: center;
  }
  
  .iv-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .iv-product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .content-section h2 {
    font-size: 1.7rem;
  }
  
  .tier-title {
    font-size: 1.3rem;
  }
  
  .iv-product-header {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
}

/* Neuro Highlight */
.neuro-highlight {
  background: rgba(0, 200, 255, 0.1);
  padding: 1rem;
  border-radius: 8px;
  margin: 1rem 0;
  border-left: 3px solid #00c8ff;
}

.neuro-highlight strong {
  color: #00c8ff;
}

/* Comparison Section */
.comparison-section {
  margin: 2rem 0;
}

.comparison-section table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(20, 30, 48, 0.6);
  border-radius: 8px;
  overflow: hidden;
}

.comparison-section th {
  background: rgba(0, 200, 255, 0.2);
  color: #00c8ff;
  padding: 1rem;
  text-align: left;
  border: 1px solid rgba(0, 200, 255, 0.3);
}

.comparison-section td {
  padding: 1rem;
  border: 1px solid rgba(0, 200, 255, 0.2);
  color: #e2e8f0;
}

.comparison-section tr:nth-child(even) {
  background: rgba(15, 23, 42, 0.4);
}

/* ===== UPDATED PRODUCTS HUB LAYOUT ===== */
.products-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.products-main-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.product-card {
  background: rgba(15, 23, 42, 0.8);
  border-radius: 10px;
  padding: 1.5rem;
  border: 1px solid rgba(0, 200, 255, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: #00c8ff;
  box-shadow: 0 10px 25px rgba(0, 200, 255, 0.2);
}

.product-image {
  width: 100%;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.8rem;
}

.product-category {
  display: inline-block;
  background: rgba(0, 200, 255, 0.15);
  color: #00c8ff;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.therapy-badge {
  background: rgba(123, 45, 255, 0.2);
  color: #7b2dff;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.product-name {
  color: #00c8ff;
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.product-benefit {
  color: #e2e8f0;
  margin-bottom: 1rem;
  line-height: 1.5;
  flex-grow: 1;
}

.product-best-for {
  color: #a0aec0;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  font-style: italic;
}

.synergy-note {
  background: rgba(20, 30, 48, 0.6);
  padding: 0.8rem;
  border-radius: 6px;
  margin-bottom: 1rem;
  border-left: 3px solid #00c8ff;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.synergy-icon {
  font-size: 1rem;
  margin-top: 0.1rem;
}

.product-link {
  color: #00c8ff;
  text-decoration: none;
  font-weight: 600;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.product-link:hover {
  color: #00b4e6;
  gap: 0.7rem;
}

/* Popular Treatments Styles - FIXED */
.popular-treatments-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
}

.treatment-item {
  flex: 1;
  min-width: 200px;
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: rgba(20, 30, 48, 0.6);
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  align-items: flex-start;
}

.treatment-item:hover {
  border-color: rgba(0, 200, 255, 0.3);
  transform: translateY(-3px);
}

.treatment-icon {
  color: #00c8ff;
  font-size: 1.5rem;
  display: flex;
  align-items: flex-start;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.treatment-info {
  flex: 1;
}

.treatment-info h4 {
  color: #00c8ff;
  margin-bottom: 0.3rem;
  font-size: 1rem;
}

.treatment-info p {
  color: #a0aec0;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.treatment-link {
  color: #00c8ff;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.treatment-link:hover {
  color: #00b4e6;
}

/* Protocol Details Content - NEW STYLING */
.protocol-details-content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
}

.protocol-detail-item {
  flex: 1;
  min-width: 200px;
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(20, 30, 48, 0.6);
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  align-items: flex-start;
}

.protocol-detail-item:hover {
  border-color: rgba(0, 200, 255, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 200, 255, 0.1);
}

.protocol-detail-icon {
  color: #00c8ff;
  font-size: 1.5rem;
  display: flex;
  align-items: flex-start;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.protocol-detail-info {
  flex: 1;
}

.protocol-detail-info h4 {
  color: #00c8ff;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.protocol-detail-info p {
  color: #a0aec0;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

/* Therapy Emphasis Section */
.therapy-emphasis {
  background: rgba(0, 200, 255, 0.1);
  border-radius: 10px;
  padding: 2rem;
  margin: 2rem 0;
  border: 1px solid rgba(0, 200, 255, 0.3);
  text-align: center;
}

.emphasis-content h3 {
  color: #00c8ff;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.emphasis-content p {
  color: #e2e8f0;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

/* Protocol Explanation */
.protocol-explanation {
  background: rgba(15, 23, 42, 0.8);
  border-radius: 10px;
  padding: 2rem;
  margin: 2rem 0;
  border: 1px solid rgba(0, 200, 255, 0.1);
}

.protocol-explanation h3 {
  color: #00c8ff;
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

.protocol-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.protocol-step {
  text-align: center;
  padding: 1.5rem;
  background: rgba(20, 30, 48, 0.6);
  border-radius: 8px;
  border: 1px solid rgba(0, 200, 255, 0.2);
}

.step-number {
  width: 40px;
  height: 40px;
  background: #00c8ff;
  color: #0a1929;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin: 0 auto 1rem;
}

.protocol-step h4 {
  color: #00c8ff;
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
}

.protocol-step p {
  color: #e2e8f0;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Responsive Design for Updated Layout */
@media (max-width: 1024px) {
  .products-layout {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .treatment-item {
    flex-direction: column;
    text-align: center;
    min-width: 100%;
  }
  
  .treatment-icon {
    justify-content: center;
  }
  
  .protocol-detail-item {
    flex-direction: column;
    text-align: center;
    min-width: 100%;
  }
  
  .protocol-detail-icon {
    justify-content: center;
  }
  
  .protocol-steps {
    grid-template-columns: 1fr;
  }
}

/* ===== MOBILE PRODUCT CAROUSEL ===== */
.mobile-products-carousel {
  display: none;
}

@media (max-width: 768px) {
  .mobile-products-carousel {
    display: block;
    margin: 2rem 0;
  }

  /* .products-grid { display: none !important; } */   /* Removed to show cards on mobile */

  .carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(0, 200, 255, 0.1);
  }

  .carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    touch-action: pan-y;
  }

  .carousel-slide {
    flex: 0 0 100%;
    padding: 1.5rem;
    box-sizing: border-box;
  }

  .carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding: 1rem;
  }

  .carousel-dots {
    display: flex;
    gap: 0.5rem;
  }

  .carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 200, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .carousel-dot.active {
    background: #00c8ff;
    transform: scale(1.2);
  }

  .carousel-arrow {
    background: rgba(0, 200, 255, 0.2);
    border: 1px solid rgba(0, 200, 255, 0.3);
    color: #00c8ff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
  }

  .carousel-arrow:hover {
    background: rgba(0, 200, 255, 0.3);
    transform: scale(1.1);
  }

  .carousel-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
  }

  /* Mobile-specific product card adjustments */
  .mobile-product-card {
    background: rgba(20, 30, 48, 0.6);
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid rgba(0, 200, 255, 0.2);
    height: auto;
    display: flex;
    flex-direction: column;
  }

  .mobile-product-image {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1rem;
  }

  .mobile-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .mobile-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .mobile-product-category {
    background: rgba(0, 200, 255, 0.15);
    color: #00c8ff;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
  }

  .mobile-therapy-badge {
    background: rgba(123, 45, 255, 0.2);
    color: #7b2dff;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
  }

  .mobile-product-name {
  color: #00c8ff;
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.mobile-product-benefit {
  color: #e2e8f0;
  margin-bottom: 1rem;
  line-height: 1.5;
  flex-grow: 1;
}

.mobile-product-best-for {
  color: #a0aec0;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  font-style: italic;
}

.mobile-synergy-note {
  background: rgba(20, 30, 48, 0.8);
  padding: 0.8rem;
  border-radius: 6px;
  margin-bottom: 1rem;
  border-left: 3px solid #00c8ff;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.mobile-synergy-icon {
  font-size: 1rem;
  margin-top: 0.1rem;
}

.mobile-product-link {
  color: #00c8ff;
  text-decoration: none;
  font-weight: 600;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  padding: 0.8rem 1rem;
  background: rgba(0, 200, 255, 0.1);
  border-radius: 6px;
  justify-content: center;
  text-align: center;
}

.mobile-product-link:hover {
  background: rgba(0, 200, 255, 0.2);
  transform: translateY(-2px);
}
}

/* Protocol Section Layout Fixes */
.protocol-section {
  display: block;
  width: 100%;
}

.popular-treatments-list, .protocol-details-content {
  display: block;
}

/* Desktop-specific layout for treatment items */
@media (min-width: 769px) {
  .popular-treatments-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .treatment-item {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
  }
  
  .treatment-icon {
    margin-bottom: 1rem;
    justify-content: center;
  }
  
  .treatment-info {
    width: 100%;
  }
  
  .protocol-details-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .protocol-detail-item {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
  }
  
  .protocol-detail-icon {
    margin-bottom: 1rem;
    justify-content: center;
  }
  
  .protocol-detail-info {
    width: 100%;
  }
}

/* Mobile-specific layout for treatment items */
@media (max-width: 768px) {
  .popular-treatments-list {
    flex-direction: column;
  }
  
  .treatment-item {
    min-width: 100%;
    flex-direction: row;
    text-align: left;
  }
  
  .treatment-icon {
    justify-content: flex-start;
  }
  
  .protocol-details-content {
    flex-direction: column;
  }
  
  .protocol-detail-item {
    min-width: 100%;
    flex-direction: row;
    text-align: left;
  }
  
  .protocol-detail-icon {
    justify-content: flex-start;
  }
}