header a,
header a:link,
header a:visited,
header a:hover,
header a:active,
nav a,
nav a:link,
nav a:visited,
nav a:active,
.nav-links a,
.nav-links a:link,
.nav-links a:visited,
.nav-links a:active,
.logo,
.logo:link,
.logo:visited {
  color: inherit !important;
  text-decoration: none !important;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  html {
    overflow-x: hidden;
  }
  body {
    overflow-x: hidden;
    width: 100%;
  }
  .hero,
  .hero .container,
  .hero-content {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
  }
  .hero-content > div {
    max-width: 100%;
    overflow: hidden;
  }
  #floating-lang {
    display: none !important;
  }
}
html {
  scroll-behavior: smooth;
}
body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue",
    Arial, sans-serif;
  color: #1a1a1a;
  line-height: 1.6;
  background: #ffffff;
}
:root {
  --primary: #1a3a52;
  --brown: #3d2f2a;
  --black: #0f0f0f;
  --white: #ffffff;
  --light: #f8f8f8;
  --gray: #666;
  --light-blue: #4fc3f7;
  --light-blue-hover: #29b6f6;
}
h1 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
h2 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 4rem;
}
h3 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
}
.container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 3rem;
}
body {
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
  z-index: 1000;
  transition: all 0.3s;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  max-width: 1400px;
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none !important;
  transition: opacity 0.3s;
}
.logo:hover {
  opacity: 0.85;
}
.header-logo {
  height: auto;
  width: 200px !important;
  max-width: 200px;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .header-logo {
    width: auto !important;
    max-width: 120px !important;
    height: 38px !important;
    object-fit: contain;
  }
  nav {
    padding: 0.5rem 1rem;
  }
  #language-switcher {
    gap: 0.2rem;
  }
  .lang-btn {
    padding: 0.3rem 0.5rem;
    font-size: 0.75rem;
  }
}
@media (max-width: 768px) {
  .free-block {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    text-align: center !important;
    padding: 1.5rem 1rem !important;
  }
}
.logo svg,
a.logo svg,
nav .logo svg {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  width: 200px !important;
  height: auto;
  min-width: 120px;
  overflow: visible;
}
.nav-links {
  display: flex;
  gap: 3rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: #0f0f0f !important;
  text-decoration: none !important;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s;
}
.nav-links a:hover {
  color: #1a3a52 !important;
}
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 28px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}
.mobile-menu-toggle span {
  width: 28px;
  height: 3px;
  background: var(--primary);
  border-radius: 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}
.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(20px);
}
.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
#language-switcher {
  display: flex;
  gap: 0.5rem;
  background: var(--light);
  padding: 0.4rem;
  border-radius: 6px;
}
.lang-btn {
  padding: 0.4rem 1rem;
  border: none;
  background: transparent;
  color: var(--gray);
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
  font-size: 0.875rem;
}
.lang-btn.active {
  background: var(--primary);
  color: white;
}
.nav-cta {
  background: var(--primary);
  color: #ffffff !important;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none !important;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.nav-cta:link,
.nav-cta:visited,
.nav-cta:hover,
.nav-cta:active {
  color: #ffffff !important;
}
.nav-cta:hover {
  background: var(--light-blue);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(79, 195, 247, 0.3);
}
.hero {
  margin-top: 80px;
  padding: 0;
  background: var(--primary);
  min-height: 90vh;
  display: flex;
  align-items: center;
}
.hero-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}
.hero-content h1 {
  margin-bottom: 2rem;
  line-height: 1.2;
}
.hero-subtitle {
  font-size: 1.25rem;
  color: var(--gray);
  margin-bottom: 3rem;
  line-height: 1.7;
}
.hero-buttons {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.btn {
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
  display: inline-block;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--primary);
  color: white;
}
.btn-primary:hover {
  background: var(--light-blue);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(79, 195, 247, 0.3);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: white;
}
.trust-stats {
  display: flex;
  gap: 4rem;
}
.stat-item h3 {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.stat-item p {
  color: var(--gray);
  font-size: 0.95rem;
}
section {
  padding: 8rem 0;
}
.section-light {
  background: var(--white);
}
.section-gray {
  background: var(--light);
}
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 5rem;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray);
  margin-top: 1rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.service-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.service-content {
  padding: 2.5rem;
}
.service-content h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}
.service-content p {
  color: var(--gray);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem 3rem;
}
.benefit-item {
  text-align: left;
}
.benefit-number {
  font-size: 4rem;
  font-weight: 700;
  color: var(--primary);
  opacity: 0.1;
  line-height: 1;
  margin-bottom: 1rem;
}
.benefit-item h3 {
  margin-bottom: 1rem;
  color: var(--black);
}
.benefit-item p {
  color: var(--gray);
  line-height: 1.7;
}
.doctors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.doctor-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}
.doctor-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.doctor-photo {
  height: 400px;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
}
.doctor-info {
  padding: 2.5rem;
}
.doctor-name {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--black);
}
.doctor-specialty {
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.doctor-experience {
  color: var(--gray);
  margin-bottom: 2rem;
}
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.case-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.case-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.case-image {
  height: 200px;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 1.5rem;
  font-weight: 600;
}
.case-image:first-child {
  border-right: 1px solid white;
}
.case-description {
  padding: 2rem;
}
.case-description h3 {
  color: var(--black);
  margin-bottom: 0.5rem;
}
.case-description p {
  color: var(--gray);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.review-card {
  background: white;
  padding: 3rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.review-stars {
  color: #ffa500;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}
.review-text {
  color: var(--black);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.review-author {
  font-weight: 600;
  color: var(--primary);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.price-card {
  background: white;
  padding: 3rem 2rem;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}
.price-card:hover {
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.price-card h3 {
  color: var(--black);
  margin-bottom: 2rem;
}
.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}
.price-note {
  font-size: 0.85rem;
  color: var(--gray);
  font-style: italic;
}
.promo-banner {
  background: linear-gradient(135deg, var(--primary), var(--brown));
  padding: 6rem 0;
  text-align: center;
  color: white;
}
.promo-banner h2 {
  color: white;
  margin-bottom: 2rem;
}
.promo-content {
  max-width: 600px;
  margin: 0 auto;
}
.promo-content p {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  opacity: 0.95;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}
.process-step {
  text-align: center;
}
.step-number {
  width: 80px;
  height: 80px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto 2rem;
}
.process-step h3 {
  margin-bottom: 1rem;
  color: var(--black);
}
.process-step p {
  color: var(--gray);
  line-height: 1.7;
}
.final-cta {
  background: var(--primary);
  padding: 8rem 0;
  text-align: center;
  color: white;
}
.final-cta h2 {
  color: white;
  margin-bottom: 1.5rem;
}
.final-cta p {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  opacity: 0.95;
}
.cta-form {
  max-width: 600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.cta-form input {
  padding: 1.2rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  background: white;
}
.cta-form .btn {
  grid-column: 1 / -1;
  background: var(--primary);
  color: white;
  transition: all 0.3s ease;
}
.cta-form .btn:hover {
  background: var(--light-blue);
  box-shadow: 0 4px 12px rgba(79, 195, 247, 0.3);
}
.location-section {
  padding: 8rem 0;
  background: var(--light);
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
.location-info {
  background: white;
  padding: 3rem;
  border-radius: 12px;
}
.location-info h3 {
  color: var(--primary);
  margin-bottom: 2.5rem;
  font-size: 1.8rem;
}
.info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}
.info-icon {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  border: 1px solid #e0e0e0;
}
.info-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.info-icon.social-icon {
  border: none;
}
.info-icon.social-icon img {
  width: 32px;
  height: 32px;
}
.info-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.5rem;
}
.info-content p {
  color: var(--gray);
  line-height: 1.6;
}
.map-container {
  width: 100%;
  height: 500px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  margin-top: 2rem;
}
.map-container.map-small {
  height: 350px;
}
.map-container.map-medium {
  height: 500px;
}
.map-container.map-large {
  height: 650px;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
footer {
  background: var(--black);
  color: white;
  padding: 4rem 0 2rem;
}
.footer-content {
  text-align: center;
}
.footer-content p {
  opacity: 0.7;
  margin-bottom: 0.5rem;
}
@media (max-width: 1024px) {
  h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 2.5rem;
  }
  .header-logo {
    height: 38px !important;
    width: auto !important;
    max-width: 150px;
  }
  .hero {
    min-height: 85vh;
  }
  .hero-content h1 {
    font-size: 2.2rem !important;
  }
  .hero-grid,
  .location-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .map-container,
  .map-container.map-small,
  .map-container.map-medium,
  .map-container.map-large {
    height: 350px;
    margin-top: 1rem;
  }
  .services-grid,
  .doctors-grid,
  .reviews-grid,
  .cases-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-grid,
  .process-grid,
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2rem;
  }
  .container {
    padding: 0 1.5rem;
    width: 100%;
  }
  section {
    overflow-x: hidden;
  }
  html,
  body {
    overflow-x: hidden;
    max-width: 100vw;
  }
  nav {
    padding: 0.6rem 1rem;
    position: relative;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    min-height: unset;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .nav-links {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: white;
    box-shadow: none;
    padding: 0 1.5rem;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1),
      padding 0.3s cubic-bezier(0.4, 0, 0.2, 1),
      opacity 0.2s ease,
      visibility 0s linear 0.3s;
  }
  .nav-links.active {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 1.5rem;
    max-height: 400px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition:
      max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1),
      padding 0.3s cubic-bezier(0.4, 0, 0.2, 1),
      opacity 0.2s ease;
  }
  .nav-links li {
    width: 100%;
    border-bottom: 1px solid var(--light);
  }
  .nav-links li:last-child {
    border-bottom: none;
  }
  .nav-links a {
    display: block;
    padding: 1rem 0;
    font-size: 1.0625rem;
  }
  .nav-actions {
    gap: 1rem;
  }
  .nav-cta {
    display: none;
  }
  #language-switcher {
    padding: 0.3rem;
    gap: 0.3rem;
  }
  .lang-btn {
    padding: 0.3rem 0.75rem;
    font-size: 0.8125rem;
  }
  .hero {
    min-height: 100vh;
    background-position: center center;
    background-attachment: scroll;
    overflow-x: hidden;
    margin-top: 60px !important;
  }
  .hero-content {
    padding: 1.5rem 0 !important;
  }
  .hero-content h1 {
    font-size: 1.7rem !important;
    line-height: 1.25 !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
    margin-bottom: 1.5rem !important;
  }
  .hero-content span[style*="font-size:1.4rem"] {
    font-size: 0.95rem !important;
    word-break: break-word;
  }
  .hero-content div[style*="width:35px"] {
    width: 28px !important;
    height: 28px !important;
    font-size: 1rem !important;
    flex-shrink: 0;
  }
  .hero-content div[style*="border-radius:50px"] {
    padding: 1rem 1rem !important;
    margin-bottom: 1.5rem !important;
    display: block !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .hero-content span[style*="font-size:2.8rem"] {
    font-size: 1.6rem !important;
    white-space: nowrap;
  }
  .trust-stats {
    flex-direction: row !important;
    justify-content: space-around !important;
    padding: 1rem !important;
    gap: 0.5rem !important;
  }
  .stat-item h3 {
    font-size: 1.4rem !important;
  }
  .stat-item p {
    font-size: 0.75rem !important;
  }
  .header-logo {
    height: auto;
    width: 120px !important;
    max-width: 120px;
  }
  .services-grid,
  .doctors-grid,
  .reviews-grid,
  .cases-grid,
  .pricing-grid,
  .process-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  .cta-form {
    grid-template-columns: 1fr;
  }
  section[style*="background:linear-gradient(135deg,#1e88e5"]
    > .container
    > div:nth-child(2) {
    grid-template-columns: 1fr !important;
  }
  section[style*="background:linear-gradient(135deg,#1e88e5"]
    > .container
    > div:nth-child(2)
    > div:nth-child(3) {
    grid-column: 1 !important;
  }
  section[style*="background:linear-gradient(135deg,#1e88e5"]
    > .container
    > div:nth-child(3) {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.implant-gallery {
  padding: 80px 20px;
  background: #ffffff;
  animation: fadeInUp 0.8s ease-out;
}
.implant-gallery-wrap {
  max-width: 1200px;
  margin: 0 auto;
}
.implant-gallery h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  margin: 0 0 15px 0;
}
.implant-gallery-subtitle {
  text-align: center;
  font-size: 18px;
  color: #64748b;
  margin: 0 0 60px 0;
}
.implant-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 340px 300px 300px;
  gap: 16px;
}
.implant-photo-wide {
  grid-column: span 2;
}
.implant-photo {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(26, 58, 82, 0.1);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  background: #f0f4f8;
  cursor: pointer;
}
.implant-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.implant-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 50%,
    rgba(26, 58, 82, 0.35) 100%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  border-radius: 16px;
}
.implant-photo:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(26, 58, 82, 0.22);
}
.implant-photo:hover::after {
  opacity: 1;
}
.implant-photo:hover img {
  transform: scale(1.06);
}
@media (max-width: 1024px) {
  .implant-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 280px 250px 250px;
    gap: 14px;
  }
  .implant-gallery h2 {
    font-size: 36px;
  }
}
.btn-primary,
.btn-primary:link,
.btn-primary:visited,
.btn-primary:hover,
.btn-primary:active {
  color: #ffffff !important;
}
@media (max-width: 768px) {
  .doctor-stats-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    padding: 2rem 1.5rem !important;
  }
  .main-doctor-content {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  .main-doctor-content > div:last-child {
    position: static !important;
    display: flex !important;
    justify-content: center !important;
  }
  .main-doctor-content > div:last-child > div {
    width: 240px !important;
    height: 300px !important;
    border-radius: 16px !important;
  }
  .stat-label-large {
    font-size: 1.8rem !important;
    font-weight: 700 !important;
  }
}
@media (max-width: 768px) {
  .doctors-catalog-grid {
    grid-template-columns: 1fr !important;
  }
  .doctor-item-flex {
    flex-direction: column !important;
    align-items: center !important;
  }
  .doctor-item-flex .doctor-photo-box {
    width: 100% !important;
    max-width: 260px !important;
    flex-shrink: 1 !important;
  }
  .doctor-item-flex .doctor-photo-box > div {
    width: 100% !important;
    min-width: unset !important;
    height: 260px !important;
  }
  .doctor-item-flex .doctor-text-info {
    text-align: center !important;
    width: 100% !important;
  }
}
@media (max-width: 768px) {
  .implant-gallery {
    padding: 60px 15px;
  }
  .implant-gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 160px 160px;
    gap: 10px;
  }
  .implant-photo-wide {
    grid-column: span 2 !important;
  }
  .implant-gallery h2 {
    font-size: 28px;
  }
  .implant-gallery-subtitle {
    font-size: 15px;
    margin-bottom: 30px;
  }
}
@media (max-width: 420px) {
  .implant-gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .implant-photo {
    height: 200px;
  }
  .implant-photo-wide {
    grid-column: span 1 !important;
    height: 200px;
  }
}
.hero {
  overflow-x: hidden;
}
.hero .container {
  overflow-x: hidden;
}
@media (max-width: 520px) {
  .hero-content > div > div[style*="border-radius:50px"] {
    padding: 1rem 1.5rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .service-content > div:first-child {
    flex-direction: column !important;
  }
  .service-content > div:first-child > div:last-child {
    white-space: normal !important;
    margin-left: 0 !important;
    margin-top: 0.75rem;
    align-self: flex-start;
    font-size: 0.9rem;
  }
}
@media (max-width: 768px) {
  .location-info {
    padding: 1.5rem !important;
  }
  .location-section .container {
    padding: 0 1rem;
  }
  .info-item {
    gap: 1rem;
    align-items: flex-start;
  }
  .info-content {
    flex: 1;
    min-width: 0;
    overflow-wrap: break-word;
    word-break: break-word;
  }
  .info-content p,
  .info-content h4 {
    overflow-wrap: break-word;
    word-break: break-word;
  }
  .info-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
  }
}
