* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Lato", "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #3D4449;
  background-color: #FAF9F6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
.animate-fade-in {
  animation: fadeIn 0.8s ease forwards;
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease forwards;
}

.animate-stagger:nth-child(1) {
  animation-delay: 0.1s;
}
.animate-stagger:nth-child(2) {
  animation-delay: 0.2s;
}
.animate-stagger:nth-child(3) {
  animation-delay: 0.3s;
}
.animate-stagger:nth-child(4) {
  animation-delay: 0.4s;
}
.animate-stagger:nth-child(5) {
  animation-delay: 0.5s;
}
.animate-stagger:nth-child(6) {
  animation-delay: 0.6s;
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 50px;
  font-family: "Lato", "Helvetica Neue", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .btn {
    padding: 0.875rem 2rem;
    font-size: 0.85rem;
  }
}
.btn--primary {
  background: linear-gradient(135deg, #2F4550 0%, rgb(28.125984252, 41.2913385827, 47.874015748) 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(47, 69, 80, 0.3);
}
.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(47, 69, 80, 0.4);
  color: #ffffff;
}
.btn--primary:active {
  transform: translateY(-1px);
}
.btn--gold {
  background: linear-gradient(135deg, #C9A962 0%, rgb(184.5308056872, 146.9194312796, 63.4691943128) 100%);
  color: #2F4550;
  box-shadow: 0 4px 15px rgba(201, 169, 98, 0.4);
}
.btn--gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(201, 169, 98, 0.5);
  color: #2F4550;
}
.btn--outline {
  background: transparent;
  color: #2F4550;
  border: 2px solid #2F4550;
}
.btn--outline:hover {
  background: #2F4550;
  color: #ffffff;
  transform: translateY(-3px);
}

.section__title {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #2F4550;
  letter-spacing: 0.02em;
}
@media (max-width: 768px) {
  .section__title {
    font-size: 2rem;
  }
}

.section__subtitle {
  font-family: "Lato", "Helvetica Neue", sans-serif;
  font-size: 1.125rem;
  color: #6B7280;
  margin-bottom: 2rem;
  font-weight: 400;
}

.link-animated {
  position: relative;
  display: inline-block;
}
.link-animated::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, #C9A962, rgb(184.5308056872, 146.9194312796, 63.4691943128));
  transition: width 0.3s ease;
}
.link-animated:hover::after {
  width: 100%;
}

.separator {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 3rem 0;
}
.separator::before, .separator::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, #E8E4DF, transparent);
}
.separator__icon {
  margin: 0 2rem;
  color: #C9A962;
}

.card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06), 0 2px 10px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow: hidden;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 8px 20px rgba(0, 0, 0, 0.08);
  border-color: rgba(201, 169, 98, 0.3);
}

::selection {
  background: rgba(201, 169, 98, 0.3);
  color: #2F4550;
}

::-moz-selection {
  background: rgba(201, 169, 98, 0.3);
  color: #2F4550;
}

.header {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}
.header .container {
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .header .container {
    padding: 0 1rem;
  }
}
.header__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(232, 228, 223, 0.5);
}
@media (max-width: 992px) {
  .header__top {
    padding: 0.5rem 0;
  }
}
.header__social {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 768px) {
  .header__social {
    display: none;
  }
}
.header__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #2F4550;
  background: transparent;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.header__social-link:hover {
  background: rgba(201, 169, 98, 0.15);
  color: #C9A962;
  transform: translateY(-2px);
}
.header__social-link svg {
  width: 20px;
  height: 20px;
}
.header__social-link img {
  width: 20px;
  height: 20px;
  filter: brightness(0) saturate(100%) invert(22%) sepia(11%) saturate(1456%) hue-rotate(166deg) brightness(95%) contrast(89%);
  transition: all 0.3s ease;
}
.header__social-link:hover img {
  filter: brightness(0) saturate(100%) invert(70%) sepia(30%) saturate(500%) hue-rotate(10deg) brightness(95%);
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header__logo-img {
  height: 55px;
  width: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .header__logo-img {
    height: 45px;
  }
}
.header__logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.header__logo h1 {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #2F4550;
  margin: 0;
  line-height: 1.2;
  letter-spacing: 0.02em;
}
@media (max-width: 768px) {
  .header__logo h1 {
    font-size: 1.2rem;
  }
}
.header__subtitle {
  font-family: "Lato", "Helvetica Neue", sans-serif;
  font-size: 0.7rem;
  color: #6B7280;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.2;
  margin-top: 2px;
}
.header__nav {
  position: relative;
}

.nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .nav__list {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    display: none;
    padding: 1rem 0;
    background: #ffffff;
  }
  .nav__list.active {
    display: flex;
  }
}
.nav__item {
  position: relative;
}
.nav__item--dropdown::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 10px;
  background: transparent;
  z-index: 99;
  display: none;
}
@media (min-width: 993px) {
  .nav__item--dropdown:hover .nav__dropdown, .nav__item--dropdown:hover::before {
    display: block;
  }
}
.nav__link {
  display: flex;
  align-items: center;
  padding: 0.75rem 1.25rem;
  color: #3D4449;
  font-family: "Lato", "Helvetica Neue", sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: all 0.3s ease;
  border-radius: 8px;
}
@media (max-width: 992px) {
  .nav__link {
    padding: 0.75rem 1rem;
  }
}
.nav__link::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: calc(100% - 2rem);
  height: 2px;
  background: linear-gradient(90deg, transparent, #C9A962, transparent);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}
.nav__link:hover {
  color: #2F4550;
  background: rgba(201, 169, 98, 0.08);
}
.nav__link:hover::after {
  transform: translateX(-50%) scaleX(1);
}
.nav__dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08), 0 5px 15px rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  min-width: 260px;
  padding: 0.5rem 0;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  border: 1px solid rgba(232, 228, 223, 0.5);
}
.nav__dropdown:hover {
  display: block;
  opacity: 1;
  visibility: visible;
}
@media (min-width: 993px) {
  .nav__item--dropdown:hover .nav__dropdown {
    display: block;
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width: 992px) {
  .nav__dropdown {
    position: static;
    transform: none;
    box-shadow: none;
    padding-left: 2rem;
    top: 0;
    left: 0;
    opacity: 1;
    visibility: visible;
    border: none;
    border-radius: 0;
  }
}
.nav__dropdown-item {
  position: relative;
}
.nav__dropdown-item--has-submenu:hover .nav__submenu {
  display: block;
}
.nav__dropdown-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 2rem;
  color: #3D4449;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border-radius: 8px;
  margin: 0 0.5rem;
}
.nav__dropdown-link:hover {
  background: rgba(201, 169, 98, 0.1);
  color: #2F4550;
}
.nav__submenu {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
  background: #ffffff;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08), 0 5px 15px rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  min-width: 260px;
  padding: 0.5rem 0;
  border: 1px solid rgba(232, 228, 223, 0.5);
}
@media (max-width: 992px) {
  .nav__submenu {
    position: static;
    box-shadow: none;
    padding-left: 2rem;
    border: none;
    border-radius: 0;
  }
}
.nav__submenu li a {
  display: block;
  padding: 0.875rem 2rem;
  color: #3D4449;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border-radius: 8px;
  margin: 0 0.5rem;
}
.nav__submenu li a:hover {
  background: rgba(201, 169, 98, 0.1);
  color: #2F4550;
}
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.nav__toggle:hover {
  background: rgba(201, 169, 98, 0.1);
}
@media (max-width: 992px) {
  .nav__toggle {
    display: flex;
    position: absolute;
    right: 0;
    top: 0;
    padding: 0.5rem;
  }
}
.nav__toggle span {
  width: 24px;
  height: 2px;
  background-color: #2F4550;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.dropdown-arrow {
  font-size: 0.65rem;
  margin-left: 0.5rem;
  opacity: 0.6;
  transition: all 0.3s ease;
}
.nav__link:hover .dropdown-arrow {
  opacity: 1;
}
@media (max-width: 992px) {
  .dropdown-arrow {
    display: none;
  }
}

.footer {
  background: linear-gradient(180deg, #2F4550 0%, rgb(31.9007874016, 46.8330708661, 54.2992125984) 100%);
  color: #ffffff;
  padding: 3rem 0 1rem;
  margin-top: 4rem;
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #C9A962, transparent);
}
.footer__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  margin-bottom: 2rem;
  width: 100%;
}
@media (max-width: 768px) {
  .footer__content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.footer .container {
  width: 100%;
  max-width: 1200px;
}
.footer__section h3, .footer__section h4 {
  font-family: "Cormorant Garamond", "Georgia", serif;
  margin-bottom: 1rem;
}
.footer__section--contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}
.footer__section--links {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .footer__section--links {
    display: none;
  }
}
.footer__logo {
  height: 55px;
  width: auto;
  object-fit: contain;
  margin-bottom: 0.5rem;
}
.footer__title {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.footer__subtitle {
  font-family: "Lato", "Helvetica Neue", sans-serif;
  font-size: 0.7rem;
  opacity: 0.8;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.footer__heading {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.footer__links li a {
  font-family: "Lato", "Helvetica Neue", sans-serif;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}
.footer__links li a::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: #C9A962;
  transition: width 0.3s ease;
}
.footer__links li a:hover {
  color: #ffffff;
}
.footer__links li a:hover::after {
  width: 100%;
}
.footer__contact p {
  font-family: "Lato", "Helvetica Neue", sans-serif;
  margin-bottom: 0.5rem;
  line-height: 1.7;
  font-size: 0.9rem;
}
.footer__clinic-name {
  display: block;
  margin-bottom: 0.25rem;
  color: #C9A962;
  font-weight: 600;
}
.footer__address strong {
  display: block;
  margin-bottom: 0.5rem;
}
.footer__address a {
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
}
.footer__address a:hover {
  color: #C9A962;
}
.footer__phone a {
  font-family: "Lato", "Helvetica Neue", sans-serif;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.footer__phone a:hover {
  color: #C9A962;
}
.footer__social {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
}
.footer__section--map {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 768px) {
  .footer__section--map {
    display: none;
  }
}
.footer__map-link {
  display: block;
  overflow: hidden;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.footer__map-link:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}
.footer__map-image {
  width: 380px;
  height: auto;
  object-fit: cover;
  display: block;
}
.footer__centered {
  text-align: center;
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  margin: 2rem 0;
}
.footer__centered-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.footer__centered-text {
  font-family: "Lato", "Helvetica Neue", sans-serif;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.85;
  margin: 0;
}
.footer__centered-text strong {
  font-size: 1.125rem;
  font-weight: 600;
  color: #C9A962;
}
@media (max-width: 768px) {
  .footer__centered-text {
    font-size: 0.9rem;
  }
  .footer__centered-text strong {
    font-size: 1rem;
  }
}
.footer__centered-logo {
  height: 55px;
  width: auto;
  object-fit: contain;
}
@media (max-width: 768px) {
  .footer__centered-logo {
    height: 45px;
  }
}
.footer__bottom {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-family: "Lato", "Helvetica Neue", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
}

.social__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #ffffff;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.social__link:hover {
  background: rgba(201, 169, 98, 0.2);
  border-color: rgba(201, 169, 98, 0.4);
  transform: translateY(-3px);
  color: #C9A962;
}
.social__link svg {
  width: 18px;
  height: 18px;
}
.social__link img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}
.social__link:hover img {
  filter: brightness(0) saturate(100%) invert(78%) sepia(30%) saturate(500%) hue-rotate(10deg) brightness(95%);
}

.hero {
  background: radial-gradient(ellipse at top center, rgba(201, 169, 98, 0.08) 0%, transparent 50%), linear-gradient(180deg, #FAF9F6 0%, #F5F3EF 100%);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(130, 158, 168, 0.03) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(201, 169, 98, 0.05) 0%, transparent 50%);
  pointer-events: none;
}
@media (max-width: 768px) {
  .hero {
    padding: 3rem 0;
  }
}
.hero__content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  animation: fadeIn 1s ease;
}
.hero__title {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 3rem;
  font-weight: 600;
  color: #2F4550;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
  animation: fadeInUp 0.8s ease 0.2s backwards;
}
@media (max-width: 768px) {
  .hero__title {
    font-size: 2.25rem;
  }
}
.hero__subtitle {
  font-family: "Lato", "Helvetica Neue", sans-serif;
  font-size: 1.1rem;
  color: #829EA8;
  font-weight: 500;
  margin-bottom: 2rem;
  letter-spacing: 0.5px;
  animation: fadeInUp 0.8s ease 0.4s backwards;
}
@media (max-width: 768px) {
  .hero__subtitle {
    font-size: 1rem;
  }
}
.hero__quote {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 1.35rem;
  font-style: italic;
  color: #6B7280;
  margin-bottom: 2rem;
  line-height: 1.9;
  position: relative;
  padding: 0 2rem;
  animation: fadeInUp 0.8s ease 0.6s backwards;
}
.hero__quote::before {
  content: '"';
  font-size: 3rem;
  color: rgba(201, 169, 98, 0.3);
  position: absolute;
  left: -10px;
  top: -15px;
  font-family: Georgia, serif;
}
@media (max-width: 768px) {
  .hero__quote {
    font-size: 1.15rem;
    padding: 0 1rem;
  }
}
.hero__description {
  font-family: "Lato", "Helvetica Neue", sans-serif;
  font-size: 1.1rem;
  color: #3D4449;
  margin-bottom: 3rem;
  line-height: 1.9;
  animation: fadeInUp 0.8s ease 0.8s backwards;
}
.hero .btn {
  animation: fadeInUp 0.8s ease 1s backwards;
}

.intro-local {
  background: #ffffff;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(232, 228, 223, 0.5);
  position: relative;
}
.intro-local::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #C9A962, transparent);
}
.intro-local__text {
  text-align: center;
  font-family: "Lato", "Helvetica Neue", sans-serif;
  font-size: 1rem;
  color: #6B7280;
  line-height: 1.9;
  max-width: 900px;
  margin: 0 auto;
}
.intro-local__text strong {
  color: #2F4550;
  font-weight: 600;
}
@media (max-width: 768px) {
  .intro-local__text {
    font-size: 0.95rem;
    padding: 0 1rem;
  }
}

.presentation {
  padding: 4rem 0;
}
.presentation__header {
  text-align: center;
  margin-bottom: 4rem;
}
.presentation__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 992px) {
  .presentation__content {
    grid-template-columns: 1fr;
  }
}
.presentation__text h3 {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 1.9rem;
  font-weight: 600;
  color: #2F4550;
  margin-bottom: 2rem;
}
.presentation__text p {
  font-family: "Lato", "Helvetica Neue", sans-serif;
  margin-bottom: 2rem;
  line-height: 1.85;
  color: #3D4449;
}
.presentation__images-bottom {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 2rem;
  width: 100%;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .presentation__images-bottom {
    flex-direction: column;
    align-items: center;
  }
}
.presentation__image {
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
}
.presentation__image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06), 0 2px 10px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: block;
}
.presentation__image img:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08), 0 5px 15px rgba(0, 0, 0, 0.05);
}
.presentation__image--first img {
  height: auto;
}
.presentation__images-bottom .presentation__image {
  height: 450px;
  overflow: hidden;
  flex: 0 0 auto;
  width: auto;
}
.presentation__images-bottom .presentation__image img {
  width: auto;
  height: 100%;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06), 0 2px 10px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: block;
}
.presentation__images-bottom .presentation__image img:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08), 0 5px 15px rgba(0, 0, 0, 0.05);
}
@media (max-width: 768px) {
  .presentation__images-bottom .presentation__image {
    height: auto;
    width: 100%;
  }
  .presentation__images-bottom .presentation__image img {
    width: 100%;
    height: auto;
  }
}
.presentation__credentials {
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: 2px solid #E8E4DF;
}

.credentials__title {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: #2F4550;
  margin-bottom: 2rem;
  margin-top: 3rem;
  position: relative;
  padding-left: 1rem;
}
.credentials__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 70%;
  background: linear-gradient(180deg, #C9A962, transparent);
  border-radius: 3px;
}
.credentials__title:first-child {
  margin-top: 0;
}
.credentials__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.credential__item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 2rem;
  padding: 2rem 2rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(232, 228, 223, 0.5);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.credential__item:hover {
  background: #ffffff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06), 0 2px 10px rgba(0, 0, 0, 0.04);
  transform: translateX(5px);
}
@media (max-width: 768px) {
  .credential__item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}
.credential__year {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-weight: 600;
  color: #C9A962;
  font-size: 1.1rem;
}
.credential__content p {
  font-family: "Lato", "Helvetica Neue", sans-serif;
  margin-bottom: 1rem;
  line-height: 1.75;
  color: #3D4449;
}
.credential__content p:last-child {
  margin-bottom: 0;
}
.credential__content p strong {
  color: #2F4550;
  font-weight: 600;
}

#page-content {
  min-height: 60vh;
  transition: opacity 0.3s ease;
}

.page-content {
  padding: 4rem 0;
}
.page-content .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.page-title {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 2.75rem;
  font-weight: 600;
  color: #2F4550;
  margin-bottom: 2rem;
  text-align: center;
  letter-spacing: 0.02em;
  animation: fadeInUp 0.8s ease;
}
@media (max-width: 768px) {
  .page-title {
    font-size: 2rem;
  }
}

.content-section {
  max-width: 900px;
  margin: 0 auto;
  animation: fadeIn 0.8s ease 0.2s backwards;
}
.content-section h2 {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 1.9rem;
  font-weight: 600;
  color: #2F4550;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}
.content-section h2:first-of-type {
  margin-top: 0;
}
.content-section h3 {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #2F4550;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.content-section p {
  font-family: "Lato", "Helvetica Neue", sans-serif;
  line-height: 1.85;
  margin-bottom: 1.5rem;
  color: #3D4449;
}
.content-section ul, .content-section ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
}
.content-section ul li, .content-section ol li {
  margin-bottom: 0.8rem;
  line-height: 1.75;
  color: #3D4449;
}
.content-section img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  margin: 2rem 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06), 0 2px 10px rgba(0, 0, 0, 0.04);
}

.cta-section {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #E8E4DF;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}
.contact-info--four {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 768px) {
  .contact-info--four {
    grid-template-columns: 1fr;
  }
}

.contact-block {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06), 0 2px 10px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.contact-block:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 8px 20px rgba(0, 0, 0, 0.08);
  border-color: rgba(201, 169, 98, 0.3);
}
.contact-block h2 {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  color: #2F4550;
  font-weight: 600;
}
.contact-block .address,
.contact-block .phone {
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.contact-block .address strong,
.contact-block .phone strong {
  display: block;
  margin-bottom: 0.25rem;
  color: #2F4550;
  font-weight: 600;
}
.contact-block p {
  line-height: 1.8;
  color: #3D4449;
}
.contact-block a {
  color: #2F4550;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}
.contact-block a:hover {
  color: #C9A962;
}
.contact-block .btn.btn--primary {
  color: #ffffff !important;
}
.contact-block .btn.btn--primary:hover {
  color: #ffffff;
  text-decoration: none;
}
@media (max-width: 768px) {
  .contact-block {
    padding: 2rem 1.5rem;
  }
  .contact-block h2 {
    font-size: 1.4rem;
  }
}
.contact-block--map {
  padding: 0;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
  border: none;
  backdrop-filter: none;
}
.contact-block--map:hover {
  transform: none;
  box-shadow: none;
}
.contact-block--map a {
  display: block;
  width: 100%;
  height: 100%;
}
.contact-block--map a:hover {
  text-decoration: none;
}
.contact-block--map a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06), 0 2px 10px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  margin: 0;
}
.contact-block--map a img:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08), 0 5px 15px rgba(0, 0, 0, 0.05);
}

.tarifs-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .tarifs-buttons {
    gap: 0.75rem;
  }
}

.tarifs-button {
  display: inline-block;
  padding: 0.875rem 2rem;
  background: #F5F3EF;
  border: 2px solid transparent;
  border-radius: 50px;
  font-family: "Lato", "Helvetica Neue", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #3D4449;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  white-space: nowrap;
}
.tarifs-button:hover {
  background: rgba(201, 169, 98, 0.15);
  color: #2F4550;
  border-color: rgba(201, 169, 98, 0.3);
}
.tarifs-button.active {
  background: linear-gradient(135deg, #2F4550 0%, rgb(28.125984252, 41.2913385827, 47.874015748) 100%);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(47, 69, 80, 0.3);
}
@media (max-width: 768px) {
  .tarifs-button {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
}

.tarifs-cards-container {
  margin-bottom: 3rem;
}

.tarifs-card-content {
  max-width: 900px;
  width: 100%;
  margin: 0 auto 2rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06), 0 2px 10px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.8);
  animation: fadeIn 0.3s ease;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.tarifs-card-content:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08), 0 5px 15px rgba(0, 0, 0, 0.05);
}
.tarifs-card-content .tarifs-card__title {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 1.9rem;
  font-weight: 600;
  color: #2F4550;
  margin-bottom: 2rem;
  text-align: center;
}
.tarifs-card-content .tarifs-card__section-title {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #2F4550;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  padding-top: 2rem;
  border-top: 2px solid #E8E4DF;
}
.tarifs-card-content .tarifs-card__section-title:first-of-type {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
}
.tarifs-card-content .tarifs-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.tarifs-card-content .tarifs-card__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(232, 228, 223, 0.7);
}
.tarifs-card-content .tarifs-card__item:last-child {
  border-bottom: none;
}
.tarifs-card-content .tarifs-card__label {
  font-family: "Lato", "Helvetica Neue", sans-serif;
  font-size: 1.1rem;
  color: #3D4449;
  font-weight: 500;
}
.tarifs-card-content .tarifs-card__price {
  font-family: "Lato", "Helvetica Neue", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #C9A962;
}
@media (max-width: 768px) {
  .tarifs-card-content {
    padding: 2rem 1.5rem;
  }
  .tarifs-card-content .tarifs-card__title {
    font-size: 1.5rem;
  }
  .tarifs-card-content .tarifs-card__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .tarifs-card-content .tarifs-card__price {
    font-size: 0.95rem;
  }
}

.tarifs-tabs {
  margin-bottom: 3rem;
}
.tarifs-tabs__header {
  display: flex;
  gap: 0;
  border-bottom: 2px solid #E8E4DF;
  margin-bottom: 2rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 768px) {
  .tarifs-tabs__header {
    gap: 0.5rem;
  }
}
.tarifs-tabs__tab {
  flex: 1;
  min-width: 150px;
  padding: 1rem 1.5rem;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  font-family: "Lato", "Helvetica Neue", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #6B7280;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-align: center;
}
.tarifs-tabs__tab:hover {
  color: #2F4550;
  background: rgba(201, 169, 98, 0.05);
}
.tarifs-tabs__tab.active {
  color: #2F4550;
  background: #F5F3EF;
  border-bottom-color: #C9A962;
  font-weight: 600;
}
@media (max-width: 768px) {
  .tarifs-tabs__tab {
    font-size: 0.9rem;
    padding: 0.8rem 1rem;
    min-width: 120px;
  }
}
.tarifs-tabs__content {
  display: none;
}
.tarifs-tabs__content.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.tarifs-card {
  max-width: 100%;
  width: 100%;
  margin: 0 auto 2rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06), 0 2px 10px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.tarifs-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08), 0 5px 15px rgba(0, 0, 0, 0.05);
}
.tarifs-card:last-child {
  margin-bottom: 0;
}
.tarifs-card__title {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 1.9rem;
  font-weight: 600;
  color: #2F4550;
  margin-bottom: 2rem;
  text-align: center;
}
.tarifs-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.tarifs-card__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(232, 228, 223, 0.7);
}
.tarifs-card__item:last-child {
  border-bottom: none;
}
.tarifs-card__label {
  font-family: "Lato", "Helvetica Neue", sans-serif;
  font-size: 1.1rem;
  color: #3D4449;
  font-weight: 500;
}
.tarifs-card__price {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #C9A962;
}
@media (max-width: 768px) {
  .tarifs-card {
    padding: 2rem 1.5rem;
  }
  .tarifs-card__title {
    font-size: 1.5rem;
  }
  .tarifs-card__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .tarifs-card__price {
    font-size: 1.2rem;
  }
}

.cabinet-images {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 3rem 0;
}
@media (max-width: 768px) {
  .cabinet-images {
    flex-direction: column;
    align-items: center;
  }
}
.cabinet-images__item {
  flex: 0 0 auto;
  height: 550px;
}
@media (max-width: 768px) {
  .cabinet-images__item {
    height: auto;
    width: 100%;
    max-width: 500px;
  }
}
.cabinet-images__item img {
  height: 100%;
  width: auto;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06), 0 2px 10px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
@media (max-width: 768px) {
  .cabinet-images__item img {
    height: auto;
    width: 100%;
  }
}
.cabinet-images__item img:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08), 0 5px 15px rgba(0, 0, 0, 0.05);
}

.map-section {
  margin-top: 3rem;
}
.map-section h2 {
  font-family: "Cormorant Garamond", "Georgia", serif;
  margin-bottom: 1.5rem;
}
.map-section a {
  display: inline-block;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.map-section a:hover {
  transform: scale(1.03);
}
.map-section img {
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06), 0 2px 10px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}
.map-section a:hover img {
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08), 0 5px 15px rgba(0, 0, 0, 0.05);
}

.operation-layout {
  margin: 2rem 0;
  overflow: hidden;
}
.operation-layout__image {
  width: 400px;
  max-width: 100%;
  float: left;
  margin-right: 3rem;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .operation-layout__image {
    float: none;
    width: 100%;
    margin-right: 0;
    margin-bottom: 2rem;
  }
}
.operation-layout__image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06), 0 2px 10px rgba(0, 0, 0, 0.04);
  display: block;
  margin: 0;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.operation-layout__image img:hover {
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08), 0 5px 15px rgba(0, 0, 0, 0.05);
}
.operation-layout__content h2 {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 1.9rem;
  font-weight: 600;
  color: #2F4550;
  margin-top: 0;
  margin-bottom: 1rem;
}
.operation-layout__content h2:not(:first-child) {
  margin-top: 2rem;
}
.operation-layout__content h3 {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #2F4550;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}
.operation-layout__content p {
  font-family: "Lato", "Helvetica Neue", sans-serif;
  line-height: 1.85;
  margin-bottom: 1.5rem;
  color: #3D4449;
}
.operation-layout__content ul, .operation-layout__content ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
}
.operation-layout__content ul li, .operation-layout__content ol li {
  margin-bottom: 0.8rem;
  line-height: 1.75;
}
.operation-layout::after {
  content: "";
  display: table;
  clear: both;
}

.articles-page {
  padding: 4rem 0;
}
.articles-page .section__title {
  text-align: center;
  margin-bottom: 0.5rem;
}
.articles-page .section__subtitle {
  text-align: center;
  margin-bottom: 3rem;
  color: #6B7280;
}
.articles-page__content {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .articles-page__content {
    flex-direction: column;
  }
}
.articles-page__sidebar {
  flex: 0 0 350px;
  position: sticky;
  top: 150px;
}
@media (max-width: 768px) {
  .articles-page__sidebar {
    flex: 1;
    width: 100%;
    position: static;
  }
}
.articles-page__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.articles-page__item {
  padding: 1.25rem 1.5rem;
  background: #F5F3EF;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-left: 4px solid transparent;
}
.articles-page__item:hover {
  background: #ffffff;
  transform: translateX(5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06), 0 2px 10px rgba(0, 0, 0, 0.04);
}
.articles-page__item--active {
  background: #ffffff;
  border-left-color: #C9A962;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06), 0 2px 10px rgba(0, 0, 0, 0.04);
}
.articles-page__item--active .articles-page__item-title {
  color: #2F4550;
}
.articles-page__item-date {
  display: block;
  font-family: "Lato", "Helvetica Neue", sans-serif;
  font-size: 0.75rem;
  color: #6B7280;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.articles-page__item-title {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #3D4449;
  margin: 0;
  line-height: 1.4;
  transition: all 0.3s ease;
}
.articles-page__article {
  flex: 1;
  min-width: 0;
}
.articles-page__article-content {
  background: #ffffff;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06), 0 2px 10px rgba(0, 0, 0, 0.04);
}
@media (max-width: 768px) {
  .articles-page__article-content {
    padding: 2rem 1.5rem;
  }
}
.articles-page__article-date {
  display: inline-block;
  font-family: "Lato", "Helvetica Neue", sans-serif;
  font-size: 0.8rem;
  color: #ffffff;
  background: linear-gradient(135deg, #C9A962 0%, rgb(184.5308056872, 146.9194312796, 63.4691943128) 100%);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}
.articles-page__article-title {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 2rem;
  font-weight: 600;
  color: #2F4550;
  margin-bottom: 2rem;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .articles-page__article-title {
    font-size: 1.5rem;
  }
}
.articles-page .articles-page__article-content h3 {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #2F4550;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.articles-page .articles-page__article-content p {
  font-family: "Lato", "Helvetica Neue", sans-serif;
  line-height: 1.85;
  color: #3D4449;
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

.social-section {
  padding: 3rem 0;
  text-align: center;
  background: #ffffff;
  position: relative;
}
.social-section__title {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: #2F4550;
  margin-bottom: 1.5rem;
}
.social-section__icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
}
@media (max-width: 576px) {
  .social-section__icons {
    gap: 2rem;
  }
}
.social-section__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: #2F4550;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  padding: 1rem;
  border-radius: 16px;
}
.social-section__link:hover {
  transform: translateY(-5px);
  color: #C9A962;
  background: rgba(201, 169, 98, 0.08);
}
.social-section__link svg {
  width: 44px;
  height: 44px;
}
@media (max-width: 576px) {
  .social-section__link svg {
    width: 36px;
    height: 36px;
  }
}
.social-section__link span {
  font-family: "Lato", "Helvetica Neue", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
}

.competences {
  padding: 4rem 0;
  background: #F5F3EF;
}
.competences .section__title {
  text-align: center;
  margin-bottom: 3rem;
}
.competences__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 992px) {
  .competences__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .competences__cards {
    grid-template-columns: 1fr;
  }
}
.competences__card {
  display: block;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06), 0 2px 10px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  animation: fadeInUp 0.6s ease backwards;
}
.competences__card:nth-child(1) {
  animation-delay: 0.1s;
}
.competences__card:nth-child(2) {
  animation-delay: 0.2s;
}
.competences__card:nth-child(3) {
  animation-delay: 0.3s;
}
.competences__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 8px 20px rgba(0, 0, 0, 0.08);
  border-color: rgba(201, 169, 98, 0.3);
}
.competences__card:hover .competences__card-image img {
  transform: scale(1.08);
}
.competences__card-image {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.competences__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.competences__card-content {
  padding: 1.75rem;
}
.competences__card-content h3 {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #2F4550;
  margin-bottom: 1.25rem;
  text-align: center;
}
.competences__card-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.competences__card-content ul li {
  border-bottom: 1px solid rgba(232, 228, 223, 0.5);
}
.competences__card-content ul li:last-child {
  border-bottom: none;
}
.competences__card-content ul li a {
  display: block;
  padding: 0.875rem 0.75rem;
  color: #3D4449;
  font-family: "Lato", "Helvetica Neue", sans-serif;
  font-size: 0.95rem;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 8px;
}
.competences__card-content ul li a:hover {
  background: rgba(201, 169, 98, 0.12);
  color: #2F4550;
}

.chirurgies-page__intro {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
  font-family: "Lato", "Helvetica Neue", sans-serif;
  font-size: 1.1rem;
  line-height: 1.85;
  color: #6B7280;
}
.chirurgies-page__section {
  margin-bottom: 3rem;
}
.chirurgies-page__category-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: #2F4550;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #E8E4DF;
}
.chirurgies-page__category-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C9A962;
}
.chirurgies-page__links {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}
@media (max-width: 576px) {
  .chirurgies-page__links {
    grid-template-columns: 1fr;
  }
}
.chirurgies-page__link {
  display: block;
  padding: 1.5rem 1.75rem;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06), 0 2px 10px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(232, 228, 223, 0.5);
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.chirurgies-page__link:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08), 0 5px 15px rgba(0, 0, 0, 0.05);
  border-color: rgba(201, 169, 98, 0.3);
}
.chirurgies-page__link:hover .chirurgies-page__link-title {
  color: #C9A962;
}
.chirurgies-page__link-title {
  display: block;
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #2F4550;
  margin-bottom: 0.35rem;
  transition: all 0.3s ease;
}
.chirurgies-page__link-desc {
  display: block;
  font-family: "Lato", "Helvetica Neue", sans-serif;
  font-size: 0.9rem;
  color: #6B7280;
  line-height: 1.5;
}
.chirurgies-page__cta {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #E8E4DF;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .chirurgies-page__cta {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}

.carousel-section {
  margin: 3rem 0;
}
.carousel-section:first-of-type {
  margin-top: 0;
}

.carousel-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--color-primary, #2c3e50);
  margin-bottom: 1.5rem;
  text-align: center;
}

.carousel-container {
  position: relative;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background: #f5f5f5;
  height: 650px;
}
@media (max-width: 768px) {
  .carousel-container {
    height: 450px;
  }
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
  height: 100%;
  width: 100%;
  position: relative;
}

.carousel-slide {
  min-width: 100%;
  width: 100%;
  max-width: 100%;
  flex-shrink: 0;
  flex-grow: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 20px;
  box-sizing: border-box;
  position: relative;
}
.carousel-slide img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
  margin: 0 auto;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 2rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  color: var(--color-primary, #2c3e50);
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
.carousel-btn:hover {
  background: rgb(255, 255, 255);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.carousel-btn:focus {
  outline: none;
}
.carousel-btn:active {
  transform: translateY(-50%) scale(0.95);
}
.carousel-btn--prev {
  left: 15px;
}
.carousel-btn--next {
  right: 15px;
}
@media (max-width: 768px) {
  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
  .carousel-btn--prev {
    left: 10px;
  }
  .carousel-btn--next {
    right: 10px;
  }
}

.carousel-indicators {
  display: none;
}

.page-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
}
.page-nav__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: rgba(47, 69, 80, 0.8);
  color: #ffffff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.page-nav__btn:hover {
  background-color: #2F4550;
  transform: scale(1.1);
}
.page-nav__btn:active {
  transform: scale(0.95);
}
.page-nav__btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}
.page-nav--prev {
  left: calc((100vw - 1200px) / 4 - 25px);
}
.page-nav--next {
  right: calc((100vw - 1200px) / 4 - 25px);
}
@media (max-width: 1200px) {
  .page-nav {
    display: none;
  }
}

.page-nav-mobile {
  display: none;
}
@media (max-width: 1200px) {
  .page-nav-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background-color: #F5F3EF;
    border-radius: 8px;
    margin-top: 3rem;
  }
}
.page-nav-mobile__btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background-color: #2F4550;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.page-nav-mobile__btn:hover {
  background-color: rgb(28.125984252, 41.2913385827, 47.874015748);
}
.page-nav-mobile__btn--hidden {
  visibility: hidden;
}
.page-nav-mobile__btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.page-nav-mobile__info {
  font-size: 0.85rem;
  color: #6B7280;
  text-align: center;
  flex: 1;
}

.text-center {
  text-align: center;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 2rem;
}

.mt-4 {
  margin-top: 3rem;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 2rem;
}

.mb-4 {
  margin-bottom: 3rem;
}

/*# sourceMappingURL=main.css.map */
