:root {
  --primary-color: #1B8F8F;
  --dark-accent: #0B4A4A;
  --text-color: #2A2A2A;
  --light-bg: #f8f8f8;
  --white-color: #fff;
  --border-color: #e0e0e0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth; /* For smooth scrolling to anchors */
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  background: var(--white-color);
  color: var(--text-color);
  position: relative;
  overflow-x: hidden; 
}

body.menu-open {
  overflow-y: hidden; 
}
body.menu-open::after {
  content: '';
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.5); 
  z-index: 998;
  pointer-events: all;
}

.lang-switcher {
  text-align: right;
  padding: 10px 5%;
  background: var(--light-bg);
}

.lang-switcher button {
  padding: 8px 15px; 
  margin: 0 3px; 
  border: 2px solid var(--dark-accent);
  background: var(--white-color);
  cursor: pointer;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease; 
}

.lang-switcher button.active,
.lang-switcher button:hover {
  background: var(--dark-accent);
  color: var(--white-color);
  border-color: var(--dark-accent);
}

.sticky-nav {
  position: sticky;
  top: 0;
  z-index: 1000; 
  background: var(--white-color);
  box-shadow: 0 2px 8px rgba(11, 74, 74, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 5%; 
  flex-wrap: wrap;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px; 
  cursor: pointer;
  color: var(--dark-accent);
  z-index: 1002; 
  padding: 5px; 
}

.burger-icon, .close-icon {
  font-size: 30px; 
  line-height: 1;
  pointer-events: none;
  user-select: none;
  display: inline-block; 
}

.logo {
  height: 55px; 
  width: auto;
  max-width: 190px; 
  transition: transform 0.3s ease;
}
.logo:hover,
.logo:focus {
  transform: scale(1.6); 
}

.slogan {
  font-size: 1.1rem; 
  font-weight: 600;
  text-transform: uppercase;
  color: var(--primary-color);
  text-align: center;
  width: 100%; 
  margin: 8px 0; 
  order: 1; 
}

.nav-list {
  display: flex;
  gap: 1.8rem; 
  list-style: none;
  align-items: center; 
}

.nav-list a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 5px 0; 
  position: relative;
}
.nav-list a::after { 
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-list a:hover,
.nav-list a:focus, 
.nav-list a.active-link { 
  color: var(--primary-color);
}
.nav-list a:hover::after,
.nav-list a:focus::after,
.nav-list a.active-link::after {
  width: 100%;
}

/* Navigation Dropdown */
.nav-list .dropdown-li {
  position: relative;
}

.nav-list .dropdown-toggle::after {
  content: ' \25BC'; /* Down arrow unicode */
  font-size: 0.7em;
  display: inline-block;
  margin-left: 4px;
  transition: transform 0.2s ease-in-out;
}
.nav-list .dropdown-li .dropdown-toggle.open::after {
   transform: rotate(180deg); /* Rotates to up arrow */
}

.nav-list .dropdown-menu {
  display: none; /* Hidden by default */
  position: absolute;
  top: 100%; /* Position below the parent */
  left: 0;
  background-color: var(--white-color);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  list-style: none;
  padding: 0.5rem 0;
  z-index: 1005; 
  min-width: 240px; /* Adjust as needed */
  border-radius: 0 0 8px 8px;
  border: 1px solid var(--border-color);
  border-top: none;
}

.nav-list .dropdown-menu.show {
  display: block; /* Show when .show class is added by JS */
}

.nav-list .dropdown-menu li a {
  display: block;
  padding: 0.7rem 1.2rem;
  color: var(--text-color);
  text-decoration: none;
  white-space: nowrap;
  font-size: 0.9rem; /* Slightly smaller */
}
.nav-list .dropdown-menu li a:hover,
.nav-list .dropdown-menu li a:focus {
  background-color: var(--light-bg);
  color: var(--primary-color);
}
.nav-list .dropdown-menu li a::after { /* Remove underline from main nav style for dropdown items */
    display: none;
}


@keyframes slideInMenu {
  from { transform: translateX(-100%); opacity: 0; } 
  to { transform: translateX(0); opacity: 1; }
}
.nav-list.slide-in {
  animation: slideInMenu 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.advantages-list {
  display: flex;
  justify-content: center;
  gap: 1.5rem; 
  margin: 1.8rem 0 0.5rem 0; 
  list-style: none;
  flex-wrap: wrap;
}
.advantages-list li {
  display: flex;
  align-items: center;
  font-size: 1rem; 
  font-weight: 500;
  color: var(--white-color);
  gap: 0.5em;
  background: rgba(27, 143, 143, 0.25); 
  padding: 0.6em 1.2em; 
  border-radius: 18px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1); 
}
.advantages-list i {
  color: var(--white-color);
  font-size: 1.1em; 
}

.hero {
  background: linear-gradient(135deg, var(--dark-accent), var(--primary-color));
  padding: 5rem 5% 3.5rem 5%; 
  text-align: center;
  color: var(--white-color);
  position: relative; 
}

.hero-content h1 {
  font-size: 2.2rem; 
  margin-bottom: 1.2rem; 
  font-weight: 600;
}

.hero-content p {
  font-size: 1.1rem; 
  opacity: 0.9;
  max-width: 700px; 
  margin-left: auto;
  margin-right: auto;
}

.cta-btn {
  display: inline-block;
  margin-top: 1.8rem; 
  padding: 14px 35px; 
  font-size: 1rem; 
  font-weight: 600;
  color: var(--white-color);
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--dark-accent) 100%);
  border: none;
  border-radius: 32px;
  box-shadow: 0 4px 12px rgba(11, 74, 74, 0.25); 
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease; 
}
.cta-btn:hover,
.cta-btn:focus { 
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 6px 16px rgba(11, 74, 74, 0.3);
}

section { 
  padding: 4rem 5%; 
}

section h2 { 
  text-align: center;
  margin-bottom: 2.5rem; 
  font-size: 2rem; 
  background: linear-gradient(90deg, var(--dark-accent), var(--primary-color));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 600;
}


.services {
  background: var(--light-bg);
}

.service-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
  gap: 2rem; 
}

.service-card {
  background: var(--white-color);
  padding: 1.8rem; 
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(11, 74, 74, 0.08); 
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex; 
  flex-direction: column;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-8px); 
  box-shadow: 0 10px 25px rgba(11, 74, 74, 0.12);
}

.service-img {
  width: 100%;
  max-width: 120px; 
  height: auto;
  margin: 0 auto 1.2rem; 
}
.service-card h3 {
  font-size: 1.3rem;
  color: var(--dark-accent);
  margin-bottom: 0.8rem;
}
.service-card p {
  font-size: 0.95rem;
  color: #555;
  flex-grow: 1; 
}


.contact {
  display: grid;
  grid-template-columns: 1fr 1.2fr; 
  gap: 3rem; 
  background: var(--white-color);
}

.contact-info h2 {
  margin-bottom: 1rem;
  font-size: 1.8rem; 
  color: var(--dark-accent);
  text-align: left; 
  background: none; 
  -webkit-background-clip: unset;
  background-clip: unset;
}
.contact-info p {
  margin-bottom: 0.8rem; 
  font-size: 1rem;
  display: flex; 
  align-items: center;
}
.contact-info p i {
  margin-right: 10px;
  color: var(--primary-color);
  font-size: 1.2rem;
  width: 20px; 
  text-align: center;
}
.contact-info a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.contact-info a:hover {
  color: var(--dark-accent);
  text-decoration: underline;
}
.or-message {
  margin-top: 1.5rem; 
  font-weight: 500;
  font-size: 1rem;
}

.form-group {
  margin-bottom: 1.2rem; 
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  font-size: 1rem; 
  padding: 12px 18px 12px 45px; 
  border: 1px solid var(--border-color); 
  border-radius: 8px;
  transition: all 0.3s ease;
  background-color: #fcfcfc; 
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(27, 143, 143, 0.15); 
  background-color: var(--white-color);
}

.form-group i {
  position: absolute;
  left: 15px;
  top: 15px; 
  transform: translateY(0); 
  font-size: 1.1rem; 
  color: var(--primary-color);
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.form-group input:focus + i, 
.form-group textarea:focus + i { 
  /* opacity: 1; */ 
}
.form-group input:focus ~ i, 
.form-group textarea:focus ~ i {
    opacity: 1;
}


.submit-btn {
  width: 100%;
  padding: 14px; 
  font-size: 1.05rem; 
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--dark-accent) 100%);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(27, 143, 143, 0.15);
  transition: all 0.3s ease;
  display: flex; 
  align-items: center;
  justify-content: center;
}

.submit-btn:hover:not(:disabled), 
.submit-btn:focus:not(:disabled) {
  background: linear-gradient(90deg, var(--dark-accent) 0%, var(--primary-color) 100%); 
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(27, 143, 143, 0.25);
}
.submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}


.form-success-message {
  text-align: center;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1.05rem; 
  margin-top: 1.2rem; 
  padding: 10px;
  background-color: #e6f4f4;
  border-left: 4px solid var(--primary-color);
  border-radius: 4px;
}

.social-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); 
  gap: 0.8rem; 
  margin-top: 1.5rem; 
}

.social-links a {
  display: flex;
  align-items: center;
  gap: 8px; 
  padding: 10px 15px; 
  border-radius: 8px;
  color: var(--white-color) !important;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
  font-size: 0.9rem; 
}

.social-links a:hover {
  transform: translateY(-3px) scale(1.03); 
  opacity: 0.9;
}

.social-links a i {
  font-size: 1.3rem; 
  width: 20px;
  text-align: center;
}

.social-links .whatsapp { background: #25D366; }
.social-links .telegram { background: #229ED9; }
.social-links .instagram { 
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); 
}
.social-links .facebook { background: #1877F2; }

.sr-only {
  position: absolute !important;
  width: 1px !important; height: 1px !important;
  padding: 0 !important; margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important; 
  border: 0 !important;
}


@media (max-width: 1000px) {
  .logo {
    max-width: 170px; 
    height: 50px;     
  }
  .advantages-list {
    gap: 1rem;
  }
  .advantages-list li {
    font-size: 0.95rem;
  }
   .contact {
    grid-template-columns: 1fr; 
  }
}

@media (max-width: 768px) {
  .sticky-nav {
    padding: 0.7rem 5%;
  }
  .menu-toggle {
    display: block;
  }
  .nav-list {
    display: none; 
    position: fixed; 
    left: 0; 
    top: 0; 
    width: 80%; 
    max-width: 300px; 
    height: 100vh; 
    flex-direction: column;
    gap: 0; 
    padding: 5rem 0 2rem; 
    background: var(--white-color);
    z-index: 1001;
    box-shadow: 5px 0 15px rgba(11, 74, 74, 0.15);
    overflow-y: auto; 
  }
  .nav-list.active {
    display: flex;
  }
  .nav-list > li > a { 
    font-size: 1.1rem; 
    padding: 12px 2rem; 
    display: block; 
    border-bottom: 1px solid #f0f0f0;
  }
  .nav-list > li > a::after { 
      display: none; 
  }
  .nav-list > li:last-child > a { 
      border-bottom: none;
  }

  .nav-list .dropdown-menu { 
    position: static; 
    box-shadow: none;
    border: none;
    border-top: 1px solid #e8e8e8; 
    width: 100%;
    max-width: none;
    border-radius: 0;
    padding: 0; 
    background-color: #fdfdfd; 
  }
  .nav-list .dropdown-menu li a {
    padding: 10px 2rem 10px 3rem; 
    font-size: 1rem; 
    border-bottom: 1px solid #f5f5f5;
    display: block;
    white-space: normal; 
  }
   .nav-list .dropdown-menu li:last-child a {
      border-bottom: none;
  }
  .nav-list .dropdown-toggle::after { 
    float: right; 
    margin-right: 5px;
  }


  .logo {
    max-width: 150px; 
    height: 45px;     
  }
  .slogan {
    order: -1; 
    width: auto; 
    margin: 0;
    flex-grow: 1; 
    text-align: left;
    padding-left: 15px;
    font-size: 0.9rem;
  }
   .sticky-nav {
    justify-content: space-between; 
    flex-wrap: nowrap; 
  }
  .logo-slogan-wrapper { 
      display: flex;
      align-items: center;
  }


  .service-container {
    grid-template-columns: 1fr;
  }
  .contact {
    gap: 2.5rem; 
    padding: 3rem 5%;
  }
  .hero {
    padding: 4rem 5% 2.5rem 5%;
  }
   .hero-content h1 {
    font-size: 1.8rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .advantages-list {
    flex-direction: column;
    align-items: center; 
    gap: 0.8rem;
  }
  .social-links {
    grid-template-columns: 1fr; 
  }
  section {
      padding: 3rem 5%;
  }
  section h2 {
      font-size: 1.8rem;
      margin-bottom: 2rem;
  }
}

@media (max-width: 480px) {
  .lang-switcher button {
    padding: 6px 12px;
    font-size: 14px;
  }
  .form-group input,
  .form-group textarea {
    font-size: 0.95rem;
    padding: 12px 15px 12px 40px;
  }
   .form-group i {
    left: 12px;
    top: 13px;
    font-size: 1rem;
  }
  .logo {
    max-width: 130px; 
    height: 40px;     
  }
   .slogan {
    display: none; 
  }
  .submit-btn {
    padding: 12px;
    font-size: 1rem;
  }
  .hero-content h1 {
    font-size: 1.6rem; 
  }
   .hero-content p {
    font-size: 0.9rem;
  }
  .cta-btn {
    padding: 12px 30px;
    font-size: 0.95rem;
  }
  .advantages-list li {
      padding: 0.5em 1em;
      font-size: 0.9rem;
  }
  .service-card {
      padding: 1.5rem;
  }
  .contact-info h2 {
      font-size: 1.6rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto !important;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .logo:hover,
  .logo:focus,
  .cta-btn:hover,
  .service-card:hover,
  .submit-btn:hover,
  .social-links a:hover {
    transform: none !important;
  }
  .nav-list.slide-in {
    animation: none !important;
  }
}

.spinner {
  display: inline-block;
  width: 20px; height: 20px; 
  border: 3px solid rgba(255,255,255,0.3); 
  border-top-color: var(--white-color); 
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  margin-right: 8px;
}
.submit-btn .spinner { 
    border: 3px solid rgba(255,255,255,0.3);
    border-top-color: var(--white-color);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}
#form-loading { 
    display: flex;
    align-items: center;
    justify-content: center;
}
#form-loading .spinner { 
    border: 3px solid #b2dfdb;
    border-top-color: var(--primary-color);
}


.input-error { 
  color: #e53935;
  margin-top: 5px;
  font-size: 0.9em;
  display: block; 
}

/* --- О НАС и ОТЗЫВЫ --- */
.about-section { 
  background: var(--light-bg);
}
.reviews-section {
  background: var(--white-color);
}
.mission-text {
  max-width: 850px; 
  margin: 0 auto;
  font-size: 1.05rem; 
  line-height: 1.75; 
  color: #333; 
  background: var(--white-color);
  padding: 2rem; 
  border-radius: 15px; 
  box-shadow: 0 8px 25px rgba(11,74,74,0.07);
  text-align: left;
}
.mission-text strong {
    color: var(--dark-accent);
    font-weight: 600;
}
.mission-text div[data-translate="missionIntro"] {
    margin-bottom: 1rem; 
}
.mission-text div[data-translate="mission"] {
    margin-top: 1rem; 
}
.read-more-btn {
    display: inline-block;
    padding: 8px 18px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s;
    margin-top: 1rem;
}
.read-more-btn:hover {
    background-color: var(--dark-accent);
}

.mission-separator {
  margin: 1.5rem auto; 
  border: none;
  border-top: 1px solid var(--border-color); 
  width: 70%; 
}


/* ====== ДОБАВЛЕННЫЕ НОВЫЕ СЕКЦИИ ====== */

/* Блок "Как мы работаем" */
.howwework-section {
  background: var(--white-color);
}
.howwework-list {
  text-align: left;
  max-width: 700px; 
  margin: 0 auto 2.5rem auto; 
  font-size: 1.05rem; 
  padding-left: 1.5rem; 
  list-style-position: outside; 
}
.howwework-list li {
  margin-bottom: 1rem; 
  line-height: 1.7;
  padding-left: 10px; 
  position: relative;
}
.howwework-list li::before { 
    content: "\f058"; 
    font-family: "Font Awesome 6 Free";
    font-weight: 900; 
    color: var(--primary-color);
    position: absolute;
    left: -1.5rem; 
    top: 2px;
    font-size: 1.1em;
}


.concierge-service {
  background: var(--light-bg); 
  max-width: 650px; 
  margin: 0 auto;
  border-radius: 12px; 
  box-shadow: 0 4px 12px rgba(11,74,74,0.05); 
  padding: 1.8rem; 
}
.concierge-service h3 {
  color: var(--dark-accent); 
  font-size: 1.25rem; 
  margin-bottom: 1rem;
  text-align: center;
}
.concierge-service ul {
  text-align: left;
  font-size: 1rem; 
  list-style: none; 
  padding-left: 0; 
}
.concierge-service ul li {
  margin-bottom: 0.6rem; 
  padding-left: 25px; 
  position: relative;
  color: #444; 
}
.concierge-service ul li::before {
    content: "\2713"; 
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.1em;
}


/* Галерея */
.gallery-section {
  background: var(--light-bg); 
}
.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem; 
  margin-bottom: 2.5rem; 
  flex-wrap: wrap; 
}
.gallery-tabs .tab {
  padding: 10px 28px; 
  border: 2px solid var(--primary-color);
  background: var(--white-color);
  color: var(--primary-color);
  font-weight: 600;
  border-radius: 25px; 
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  font-size: 0.95rem;
}
.gallery-tabs .tab:hover,
.gallery-tabs .tab.active {
  background: var(--primary-color);
  color: var(--white-color);
  box-shadow: 0 2px 8px rgba(27,143,143,0.2);
}
.gallery-content .tab-content {
  display: none;
  min-height: 100px; 
  font-size: 1.05rem;
  padding: 1rem;
  background-color: var(--white-color);
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.gallery-content .tab-content.active {
  display: block;
}

/* Prices Section (Main Page - Short Version) */
.prices-section {
  background: var(--white-color); 
}

#prices h2 { /* Заголовок секции Прайс-лист */
  margin-bottom: 1.5rem; /* Уменьшенный отступ снизу для краткой версии */
}

.prices-intro-text {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem auto; /* Центрирование и отступ снизу */
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-color);
}

.prices-intro-text p {
  margin-bottom: 1.5rem;
}

.prices-cta-btn { /* Стили для кнопки "Посмотреть детальный прайс" */
  margin-top: 1rem; /* Отступ сверху для кнопки */
  padding: 12px 30px; /* Размеры кнопки можно подстроить */
  /* Использует стили .cta-btn, но можно переопределить при необходимости */
}

.price-disclaimer { /* Дисклеймер под кнопкой */
  margin-top: 1.5rem; /* Уменьшил отступ, так как полный прайс уехал */
  padding: 1rem 1.5rem;
  background-color: #fffcf0; 
  border: 1px solid #f0e6d2;
  border-left: 5px solid #e6c37f; 
  color: #5c4d30;
  font-size: 0.95rem;
  text-align: center;
  border-radius: 5px;
  line-height: 1.7;
}


/* Styles for prices-details.html (if you want to keep them separate, otherwise they are general) */
/* These styles would apply if you create a separate prices-details.css or keep them here */
.price-category { /* This style will be used on prices-details.html */
  margin-bottom: 3rem;
  padding: 1.5rem;
  background-color: var(--light-bg); 
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.price-category:last-of-type {
    margin-bottom: 1.5rem; 
}

.price-category h3 {
  font-size: 1.6rem;
  color: var(--dark-accent);
  margin-bottom: 1.5rem;
  text-align: center;
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 0.5rem;
  display: block; 
}

.price-category table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
  margin-top: 1rem;
}

.price-category th, .price-category td {
  border: 1px solid var(--border-color);
  padding: 10px 12px;
  text-align: left;
  vertical-align: middle;
}

.price-category th {
  background-color: var(--primary-color);
  color: var(--white-color);
  font-weight: 600;
}
.price-category th:last-child, 
.price-category td:last-child {
    text-align: right;
    width: 30%; 
}

.price-category tr:nth-child(even) td {
  background-color: #fdfdfd; 
}
.price-category tr:nth-child(odd) td {
  background-color: var(--white-color); 
}

.price-category td:first-child {
  color: var(--text-color);
  font-weight: 500;
}

.price-category td:last-child {
  color: var(--dark-accent);
  font-weight: 600;
}
.price-category td span[data-translate] { 
    font-size: 0.85em;
    font-weight: normal;
    color: #555;
}

/* Responsive tables for prices (will apply on prices-details.html) */
@media (max-width: 768px) {
    /* Main page price section adjustments */
    .prices-intro-text {
      font-size: 1rem;
    }
    #prices h2 { /* Заголовок секции на главной */
      margin-bottom: 1rem;
    }
    .price-disclaimer { /* Дисклеймер на главной */
        font-size: 0.9rem;
    }


    /* Detailed Price Page Table Adjustments */
    .price-category table thead { /* На prices-details.html */
        display: none; 
    }
    .price-category table, 
    .price-category table tbody, 
    .price-category table tr, 
    .price-category table td { /* На prices-details.html */
        display: block;
        width: 100% !important; 
    }
    .price-category table tr { /* На prices-details.html */
        margin-bottom: 1rem;
        border: 1px solid var(--border-color);
        border-radius: 5px;
        overflow: hidden; 
    }
    .price-category table td { /* На prices-details.html */
        text-align: right; 
        padding-left: 50%; 
        position: relative;
        border-bottom: 1px solid #eee;
    }
    .price-category table td:last-child { /* На prices-details.html */
        border-bottom: none;
    }
    .price-category table td::before { /* На prices-details.html */
        content: ""; 
        position: absolute;
        left: 10px;
        width: calc(50% - 20px); 
        padding-right: 10px;
        white-space: normal; 
        text-align: left;
        font-weight: bold;
        color: var(--primary-color);
    }
    .price-category table td:first-child::before { /* На prices-details.html */
        content: var(--mobile-table-procedure-label, "Procedure:"); 
    }
    .price-category table td:last-child::before { /* На prices-details.html */
        content: var(--mobile-table-price-label, "Price:"); 
    }
    html[lang="ru"] .price-category table td:first-child::before { --mobile-table-procedure-label: "Процедура:"; }
    html[lang="ru"] .price-category table td:last-child::before {  --mobile-table-price-label: "Цена:"; }
    html[lang="de"] .price-category table td:first-child::before { --mobile-table-procedure-label: "Verfahren:"; }
    html[lang="de"] .price-category table td:last-child::before {  --mobile-table-price-label: "Preis:"; }
}