:root {
  --font-family: "Montserrat", sans-serif;
  --second-family: "Inter", sans-serif;
  --third-family: "Great Vibes", sans-serif;
  
  /* Основные цвета */
  --primary-color: #1E3A8A;
  --primary-light: #1E3A8A;
  --primary-dark: #1E3A8A;
  --primary-darker: #1E3A8A;
  --primary-darkest: #1E3A8A;
  --primary-medium: #1E3A8A;
  
  /* Нейтральные цвета */
  --white: #fff;
  --black: #000;
  --gray-dark: #333;
  --gray-medium: #666;
  --gray-light: #999;
  --gray-lighter: #ddd;
  --gray-lightest: #f5f5f5;
  
  /* Цвета текста */
  --text-primary: #4d4646;
  --text-secondary: #616161;
  --text-muted: #575757;
  --text-light: #8c8c8c;
  
  /* Цвета фона */
  --bg-light: #f5faf9;
  --bg-lighter: #f6faf9;
  --bg-pale: #f0f9f7;
  --bg-pale-light: #e8f5f3;
  --bg-pale-medium: #e7f8f4;
  --bg-pale-dark: #e4f3f0;
  --bg-input: #f5fffd;
  --bg-white: #f8fffe;
  --bg-footer: #0c635d;
  
  /* Цвета границ */
  --border-light: #dfdfdf;
  --border-medium: #e0e0e0;
  --border-accent: #a5ddda;
  
  /* Акцентные цвета */
  --accent-light: #1E3A8A;
  --accent-pale: #1E3A8A;
  --accent-bright: #1E3A8A;
  --accent-medium: #1E3A8A;
  --accent-primary: #1E3A8A;
  --accent-blue: #1E3A8A;
  --accent-green: #1E3A8A;
  --accent-teal: #1E3A8A;
  --accent-special: #1E3A8A;
  --accent-dark: #1E3A8A;
  
  /* Социальные сети */
  --telegram-primary: #0088cc;
  --telegram-dark: #006699;
  --vk-primary: #4c75a3;
  --vk-dark: #3a5a7a;
  
  /* Специальные цвета */
  --gold: #ffd700;
}

/* SVG иконки используют currentColor */
svg {
  color: var(--primary-light);
}

/* Специальные случаи для разных контекстов */
.hero-offer svg,
.promo-badge svg {
  color: var(--primary-light);
}

.arrow-btn svg {
  color: var(--primary-light);
}

@font-face {
  font-family: "Great Vibes", cursive;
  src: url("../font/GreatVibes-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  src: url("../font/Inter-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  src: url("../font/Inter-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: "Montserrat";
  src: url("../font/Montserrat-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: "Montserrat";
  src: url("../font/Montserrat-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Montserrat";
  src: url("../font/Montserrat-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: "Montserrat";
  src: url("../font/Montserrat-Italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: "Montserrat";
  src: url("../font/Montserrat-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Montserrat";
  src: url("../font/Montserrat-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Montserrat";
  src: url("../font/Montserrat-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}

.container {
  max-width: 1256px;
  margin: 0 auto;
  padding: 0 20px;
}

body{
    font-family: "Montserrat", sans-serif;

}


.header {
  background: var(--white);
}

.header-top {
  background: var(--primary-color);
  color: white;
  padding: 13px 0;
}

.header-top-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.contact-info {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  align-items: center;
}

.separator {
  height: 31px;
  width: 1px;
  background: var(--white);
}

.logo img {
  height: 59px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;

  /* line-height: 25px; */
  line-height: 156%;
  color: var(--white);
}

.contact-item-icon {
  background-color: var(--accent-light);
  width: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  border-radius: 100%;
}

.contact-link {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;

  /* line-height: 25px; */
  line-height: 156%;
  color: var(--white);
  transition: opacity 0.3s;
}

.header-bottom {
  padding: 20px 0;
}

.header-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.logo h1 {
  font-family: var(--third-family);
  font-size: 32px;
  color: var(--primary-color);
  margin: 0;
  font-weight: normal;
}

.main-menu {
  flex: 1;
  display: flex;
  justify-content: center;
}

.menu-list {
  display: flex;
  margin-left:  auto;
  list-style: none;
  margin: 0;
  
  width: 100%;
  padding: 0;
  gap: 30px;
  flex-wrap: wrap;
}

.menu-list li a {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #1E3A8A;
  transition: color 0.3s;
}

.menu-list li a:hover {
  color: var(--primary-color);
}

/* Dropdown styles */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
}

.dropdown-toggle i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 220px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  padding: 10px 0;
  margin-top: 10px;
}

.dropdown:hover .dropdown-menu,
.dropdown .dropdown-toggle:hover + .dropdown-menu,
.dropdown-menu:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 12px 20px;
  color: var(--text-primary);
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 14px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-item:hover {
  background-color: var(--bg-lightest);
  color: var(--primary-color);
}

/* Submenu styles */
.has-submenu {
  position: relative;
}

.has-submenu > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.has-submenu > a i {
  font-size: 10px;
  transition: transform 0.3s ease;
}

.has-submenu:hover > a i {
  transform: rotate(90deg);
}

.submenu {
  position: absolute;
  top: 0;
  left: 100%;
  background: white;
  min-width: 200px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  z-index: 1001;
  padding: 10px 0;
  margin-left: 5px;
}

.has-submenu:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.submenu-item {
  display: block;
  padding: 10px 20px;
  color: var(--text-primary);
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 13px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.submenu-item:hover {
  background-color: var(--bg-lightest);
  color: var(--primary-color);
}

/* Adjust dropdown item padding when it has submenu */
.has-submenu {
  padding: 0;
}

.has-submenu > a {
  padding: 12px 20px;
  color: var(--text-primary);
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 14px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.has-submenu:hover > a {
  background-color: var(--bg-lightest);
  color: var(--primary-color);
}

.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.burger-menu span {
  width: 100%;
  height: 3px;
  background: var(--primary-color);
  transition: all 0.3s ease;
  transform-origin: center;
  border-radius: 5px;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}

.mobile-menu-panel {
  position: absolute;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100%;
  background: linear-gradient(135deg, var(--white) 0%, var(--bg-white) 100%);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
  transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow-y: auto;
}

.mobile-menu.active .mobile-menu-panel {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  border-bottom: 1px solid var(--bg-pale-light);
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 10;
}

.mobile-logo img {
  height: 50px;
  object-position: -8px;
}

.mobile-menu-content {
  padding: 30px 25px;
}

.mobile-nav {
  margin-bottom: 40px;
}

.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-list li {
  margin-bottom: 8px;
}

.mobile-nav-link {
  display: block;
  padding: 15px 20px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--gray-dark);
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mobile-nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(18, 134, 128, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.mobile-nav-link:hover::before {
  left: 100%;
}

.mobile-nav-link:hover {
  background: var(--bg-pale);
  color: var(--accent-dark);
  transform: translateX(5px);
}

.mobile-section-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--accent-dark);
  margin: 0 0 20px 0;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--bg-pale-light);
  position: relative;
}

.mobile-section-title::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent-dark);
}

.mobile-contact-section {
  margin-bottom: 40px;
}

.mobile-contact-grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mobile-contact-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--bg-pale);
  transition: all 0.3s ease;
}

.mobile-contact-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-light);
}

.mobile-contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent-pale) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(18, 134, 128, 0.2);
}

.mobile-contact-icon img {
  width: 24px;
  height: 24px;
}

.mobile-contact-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-contact-label {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: var(--gray-medium);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mobile-contact-value {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--gray-dark);
}

.mobile-social-section {
  margin-bottom: 20px;
}

.mobile-social-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-social-btn {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 20px;
  background: var(--white);
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid var(--bg-pale);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.mobile-social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.mobile-social-btn.telegram:hover {
  background: linear-gradient(135deg, var(--telegram-primary) 0%, var(--telegram-dark) 100%);
  color: var(--white);
}

.mobile-social-btn.vk:hover {
  background: linear-gradient(135deg, var(--vk-primary) 0%, var(--vk-dark) 100%);
  color: var(--white);
}

.mobile-social-btn img {
  width: 24px;
  height: 24px;
  transition: all 0.3s ease;
}

.mobile-social-btn span {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--gray-dark);
  transition: color 0.3s ease;
}

.mobile-social-btn:hover span {
  color: var(--white);
}

@media (max-width: 1124px) {
  .logo img {
    height: 50px;
    object-position: -8px;
  }

  .contact-item {
    font-size: 12px;
  }

  .contact-item-icon {
    width: 25px;
    height: 25px;
  }

  .contact-item-icon img {
    width: 15px;
    height: 15px;
  }

  .menu-list {
    gap: 15px;
  }

  .social-link img {
    width: 25px;
  }

  .menu-list li a {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .header-top {
    display: none;
  }
	
	.footer-info {
    display: flex;
    gap: 15px;
    background: #1e3a8a;
    position: relative;
    margin-top: -80px;
    padding: 30px;
    color: #fff;
    justify-content: space-between;
    flex-direction: column;
}

  .main-menu {
    display: none;
  }

  .burger-menu {
    display: flex;
  }

  .header-bottom-content {
    justify-content: space-between;
  }
}

.hero-content {
  display: flex;
  margin-bottom: 80px;
  padding: 74px 0;

  position: relative;
  justify-content: space-between;
}

.hero {
  background-image: url(/assets/img/back_hero.png);
  background-position: center;
  width: 98%;
  margin: 0 auto;
  border-radius: 30px;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-title {
  font: 400 48px var(--third-family);
  color: var(--text-secondary) !important;
}

.hero-subtitle {
  font: 800 40px var(--second-family);
  color: var(--text-primary);
  margin-bottom: 20px;
}

.hero-subtitle span {
  font: 800 40px var(--second-family);
  color: var(--primary-light);
}

.hero-description {
  max-width: 540px;
  font: 400 18px / 139% var(--font-family);
  color: var(--black);
  margin-bottom: 35px;
}

.hero-form {
  border: 1px solid var(--border-light);
  border-radius: 15px;
  display: flex;
  padding: 25px;
  max-width: 500px;
  width: 100%;
  gap: 15px 7px;
  flex-wrap: wrap;
  background: var(--white);
}

.hero-form-wrapper p{
  display: flex;
  flex-wrap: wrap;
}

.hero-form-input {
  color: rgba(72, 72, 72, 1);
  font: 500 16px var(--font-family);

  border: 1px solid var(--border-light);
  border-radius: 5px;
  background: #1E3A8A10;
flex: 1;
  height: 54px;

  padding: 15px;
}

.hero-form-input:focus {
  border-color: var(--primary-color);
}

.hero-form-input::placeholder {
  font: 500 16px var(--font-family);
  letter-spacing: 0.1em;
  color: rgba(72, 72, 72, 0.64);
}

.hero-form-btn {
  background: linear-gradient(105deg, var(--accent-primary) 0%, var(--primary-light) 100%);
  border-radius: 5px;
  width: fit-content;

  height: 54px;
  font: 700 16px var(--font-family);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;

  gap: 10px;
  letter-spacing: 0.1em;
  color: var(--white);
  transition: all 0.3s ease;
}

.hero-form-btn svg{
  display: none;
}

/* Contact Form 7 Styles */
.hero-form-wrapper {
  max-width: 500px;
  width: 100%;
}

.hero-form-wrapper .wpcf7-form {
  border: 1px solid var(--border-light);
  border-radius: 15px;
  padding: 25px;
  background: var(--white);
  display: flex;
  gap: 15px 7px;
  flex-wrap: wrap;
}

.hero-form-wrapper .wpcf7-form p {
  margin: 0;
  gap: 8px;
  flex: 1;
}

.wpcf7-spinner{
  display: none;
}

.hero-form-wrapper{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
}


.hero-form-wrapper .wpcf7-form-control {
  color: rgba(72, 72, 72, 1);
  font: 500 16px var(--font-family);
  border: 1px solid var(--border-light);
  border-radius: 5px;
  background: #1E3A8A10;
  flex: 1;
  height: 54px;
  padding: 15px;
  width: 100%;
}

.hero-form-wrapper .wpcf7-form-control:focus {
  border-color: var(--primary-color);
  outline: none;
}

.hero-form-wrapper .wpcf7-form-control::placeholder {
  font: 500 16px var(--font-family);
  letter-spacing: 0.1em;
  color: rgba(72, 72, 72, 0.64);
}

.hero-form-wrapper .wpcf7-submit {
  background: linear-gradient(105deg, var(--accent-primary) 0%, var(--primary-light) 100%);
  border-radius: 5px;
  width: fit-content;
  height: 54px;
  flex: 1;
  font: 700 16px var(--font-family);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  gap: 10px;
  letter-spacing: 0.1em;
  color: var(--white);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.hero-form-wrapper .wpcf7-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(30, 58, 138, 0.3);
}

.hero-disclaimer {
  font: 400 12px var(--font-family);
  color: var(--text-light);
  margin-top: 10px;
  max-width: 500px;
}



.advantage-icon i{
  color:#fff;
  font-size: 20px;
}

footer{
  background: #201f22;
}

.footer-info{
  display: flex;
  gap: 15px;
  background: #1e3a8a;
  position: relative;
  margin-top: -80px;
  padding: 30px;
  color:#fff;
  justify-content: space-between;
}

.footer-column h3{
font-weight: 700;
font-size: 24px;
margin-bottom: 15px;
color: #fff;
}
.footer-column p{
  font-family: var(--font-family);
font-weight: 400;
font-size: 18px;
color: #fff;
}


.footer-map iframe {
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
}

.hero-form-btn:hover {
  background: linear-gradient(105deg, var(--primary-darker) 0%, var(--primary-darkest) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(18, 134, 128, 0.3);
}

.info-menu {
  background: #201f22;
  color: #fff;
  padding: 40px 0 20px;
}

.info-menu-content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 30px;
}

.info-menu-column h4 {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  color: #ccc;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-menu-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-menu-column li {
  margin-bottom: 8px;
}

.info-menu-column a {
  color: #fff;
  text-decoration: none;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  transition: color 0.3s ease;
}

.info-menu-column a:hover {
  color: #1e3a8a;
}

.info-menu-footer {
  border-top: 1px solid #444;
  padding-top: 20px;
  text-align: center;
}

.info-menu-footer p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  color: #999;
  margin: 0;
}

@media (max-width: 768px) {
  .info-menu-content {
    flex-direction: column;
    gap: 20px;
  }
}

.burger-menu.active span:nth-child(1) {
  transform: translateY(10.5px) rotate(45deg);
}

.burger-menu.active span:nth-child(2) {
  opacity: 0;
}

.burger-menu.active span:nth-child(3) {
  transform: translateY(-10.5px) rotate(-45deg);
}



.mobile-nav-link {
  color: #333;
  text-decoration: none;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  border-bottom: 1px solid #eee;
}

.mobile-nav-link:hover {
  background: #f8f9fa;
  color: #1e3a8a;
}

.mobile-contact {
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.mobile-contact-item {
  margin-bottom: 20px;
}

.mobile-contact-item strong {
  display: block;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 14px;
  color: #666;
  margin-bottom: 5px;
}

/* Mobile dropdown menu styles */
.mobile-dropdown {
  position: relative;
}

.mobile-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-dropdown-toggle i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-toggle i {
  transform: rotate(180deg);
}

.mobile-dropdown-menu {
  max-height: 0;
  overflow: hidden;
  background: #f8f9fa;
  border-radius: 8px;
  margin-top: 5px;
  transition: max-height 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-menu {
  max-height: 1000px;
}

.mobile-dropdown-item {
  border-bottom: 1px solid #eee;
}

.mobile-dropdown-item:last-child {
  border-bottom: none;
}

.mobile-submenu-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  color: #333;
  text-decoration: none;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
}

.mobile-submenu-toggle:hover {
  background: #e9ecef;
  color: #1e3a8a;
}

.mobile-submenu-toggle i {
  font-size: 10px;
  transition: transform 0.3s ease;
}

.mobile-has-submenu.active .mobile-submenu-toggle i {
  transform: rotate(180deg);
}

.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  background: #e9ecef;
  transition: max-height 0.3s ease;
}

.mobile-has-submenu.active .mobile-submenu {
  max-height: 500px;
}

.mobile-submenu-item {
  display: block;
  padding: 10px 30px;
  color: #666;
  text-decoration: none;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  border-bottom: 1px solid #dee2e6;
  transition: all 0.3s ease;
}

.mobile-submenu-item:last-child {
  border-bottom: none;
}

.mobile-submenu-item:hover {
  background: #dee2e6;
  color: #1e3a8a;
  padding-left: 35px;
}

.mobile-contact-item a {
  color: #1e3a8a;
  text-decoration: none;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
}

.breadcrumbs {
  background: #f8f9fa;
  padding: 20px 0;
  border-bottom: 1px solid #e9ecef;
}

.breadcrumb-nav {
  font-family: var(--font-family);
  font-size: 14px;
  color: #6c757d;
}

.breadcrumb-nav a {
  color: #1e3a8a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
  color: #0d1f5c;
}

.breadcrumb-separator {
  margin: 0 10px;
  color: #6c757d;
}

.breadcrumb-current {
  color: #495057;
  font-weight: 500;
}

.menu-list .active {
  color: #1e3a8a;
  font-weight: 600;
}

.service-detail {
  padding: 60px 0;
  background: #fff;
}

.service-detail-content img{
  border-radius: 12px;
}

.service-detail-content {
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 60px;
  align-items: start;
}

.service-detail-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 42px;
  color: #333;
  margin-bottom: 30px;
  line-height: 1.2;
}

.service-detail-text {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 40px;
}

.service-detail-text p {
  margin-bottom: 20px;
}

.service-detail-text ul {
  margin: 20px 0;
  padding-left: 20px;
}

.service-detail-text li {
  margin-bottom: 10px;
  color: #555;
}

.read-more-btn {
  background: none;
  border: none;
  color: #1e3a8a;
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: underline;
  margin: 20px 0;
  padding: 0;
  transition: color 0.3s ease;
}

.read-more-btn:hover {
  color: #0d1f5c;
}

.service-detail-link {
  display: inline-flex;
  align-items: center;
  color: #1e3a8a;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.service-detail-link:hover {
  color: #0d1f5c;
}

.service-detail-btn {
  background: #1e3a8a;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.service-detail-btn:hover {
  background: #0d1f5c;
}

.callback-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.callback-modal {
  background: white;
  padding: 40px;
  border-radius: 10px;
  max-width: 500px;
  width: 90%;
  position: relative;
}

.callback-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #666;
}

.callback-title {
  margin: 0 0 10px 0;
  font-size: 24px;
  color: #333;
  text-align: center;
}

.callback-subtitle {
  margin: 0 0 30px 0;
  color: #666;
  text-align: center;
}

.callback-input {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  box-sizing: border-box;
}

.callback-textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  min-height: 100px;
  resize: vertical;
  box-sizing: border-box;
}

.callback-checkbox {
  margin-bottom: 20px;
  font-size: 14px;
  color: #666;
}

.callback-submit {
  width: 100%;
  padding: 15px;
  background: #1e3a8a;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

.callback-submit:hover {
  background: #0d1f5c;
}

.service-features {
  padding: 60px 0;
}

.service-features-title {
  font: 800 36px var(--second-family);
  color: var(--text-primary);
  margin-bottom: 60px;
}

.service-features-title span {
  font: 800 36px var(--second-family);
  color: var(--primary-light);
}

.service-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.feature-item {
  background: white;
  border-radius: 12px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-icon {
  margin-bottom: 25px;
  display: flex;
  justify-content: flex-start;
}

.feature-title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 18px;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.3;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.feature-list li {
  font-family: var(--font-family);
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 8px;
  padding-left: 15px;
  position: relative;
}

.feature-list li:before {
  content: "•";
  color: #1e3a8a;
  font-weight: bold;
  position: absolute;
  left: 0;
}

@media (max-width: 1024px) {
  .service-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .service-features {
    padding: 60px 0;
  }
  
  .service-features-title {
    font-size: 28px;
    margin-bottom: 40px;
  }
  
  .service-features-title span {
    font-size: 28px;
  }
  
  .service-features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .feature-item {
    padding: 30px 20px;
  }
  
  .feature-title {
    font-size: 16px;
  }
}

.service-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 80px;
}

.service-image-item {
  position: relative;
  text-align: center;
}

.service-image {
  border-radius: 12px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-image-item:hover .service-image img {
  transform: scale(1.05);
}

.service-image-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  font-weight: 700;
  font-size: 20px;
  line-height: 111%;
  text-align: center;
  color: #000;
  color: #333;
  padding: 15px 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1024px) {
  .service-images {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
  }
}

@media (max-width: 768px) {
  .service-images {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }
  
  .service-image img {
    height: 150px;
  }
  
  .service-image-label {
    font-size: 14px;
    padding: 12px 16px;
    bottom: 15px;
    left: 15px;
    right: 15px;
  }
}

.expert-section {
  padding: 80px 0;
  background: #1e3a8a;
  color: white;
}

.expert-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.expert-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 48px;
  color: white;
  margin-bottom: 20px;
  line-height: 1.2;
}

.expert-subtitle {
  font-family: var(--font-family);
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  line-height: 1.5;
}

.expert-form-group {
  display: flex;
  gap: 20px;
  max-width: 500px;
  margin: 0 auto;
}

.expert-input {
  flex: 1;
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-family: var(--font-family);
  font-size: 16px;
  transition: all 0.3s ease;
}

.expert-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.expert-input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.15);
}

.expert-btn {
  padding: 16px 32px;
  background: white;
  color: #1e3a8a;
  border: none;
  border-radius: 8px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.expert-btn:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .expert-section {
    padding: 60px 0;
  }
  
  .expert-title {
    font-size: 36px;
  }
  
  .expert-subtitle {
    font-size: 16px;
  }
  
  .expert-form-group {
    flex-direction: column;
    gap: 15px;
  }
  
  .expert-btn {
    padding: 14px 24px;
  }
}

.contact-hero {
  padding: 60px 0;
  background: #f8f9fa;
}

.contact-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.contact-hero-title {
  font: 800 48px var(--second-family);
  color: var(--text-primary);
  margin-bottom: 20px;
}

.contact-hero-subtitle {
  font-family: var(--font-family);
  font-size: 18px;
  color: #666;
  line-height: 1.6;
}

.contact-main {
  padding: 80px 0;
}

.contact-main-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-section-title {
  font: 700 32px var(--font-family);
  color: var(--text-primary);
  margin-bottom: 40px;
}

.contact-info-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  background: #1e3a8a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.contact-info-content h3 {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 18px;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.contact-info-content p {
  font-family: var(--font-family);
  font-size: 16px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 4px;
}

.contact-info-content a {
  color: #1e3a8a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info-content a:hover {
  color: #0d1f5c;
}

.contact-hours {
  font-size: 14px !important;
  color: #999 !important;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-input,
.contact-textarea {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: var(--font-family);
  font-size: 16px;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

.contact-input:focus,
.contact-textarea:focus {
  outline: none;
  border-color: #1e3a8a;
}

.contact-textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-submit-btn {
  background: #1e3a8a;
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 8px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.contact-submit-btn:hover {
  background: #0d1f5c;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.contact-map {
  padding: 80px 0 0;
}

.contact-map .contact-section-title {
  text-align: center;
  margin-bottom: 40px;
}

.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  filter: grayscale(20%);
}

@media (max-width: 1024px) {
  .contact-main-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 40px 0;
  }
  
  .contact-hero-title {
    font-size: 36px;
  }
  
  .contact-hero-subtitle {
    font-size: 16px;
  }
  
  .contact-main {
    padding: 60px 0;
  }
  
  .contact-section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  
  .contact-info-grid {
    gap: 30px;
  }
  
  .contact-info-item {
    gap: 15px;
  }
  
  .contact-info-icon {
    width: 40px;
    height: 40px;
  }
  
  .contact-info-icon img {
    width: 20px;
    height: 20px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .contact-input,
  .contact-textarea {
    padding: 12px 16px;
    font-size: 14px;
  }
  
  .contact-submit-btn {
    padding: 14px 24px;
    width: 100%;
  }
  
  .contact-map {
    padding: 60px 0 0;
  }
  
  .map-container iframe {
    height: 300px;
  }
}

.knowledge-hero {
  padding: 60px 0;
  background: #f8f9fa;
}

.knowledge-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.knowledge-hero-title {
  font: 800 48px var(--second-family);
  color: var(--text-primary);
  margin-bottom: 20px;
}

.knowledge-hero-subtitle {
  font-family: var(--font-family);
  font-size: 18px;
  color: #666;
  line-height: 1.6;
}

.knowledge-main {
  padding: 80px 0;
}

.knowledge-categories {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.category-item {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.category-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border-color: #1e3a8a;
}

.category-item.active {
  border-color: #1e3a8a;
  box-shadow: 0 8px 30px rgba(30, 58, 138, 0.15);
}

.category-icon {
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
}

.category-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 28px;
  color: var(--text-primary);
  margin-bottom: 15px;
  text-align: center;
}

.category-description {
  font-family: var(--font-family);
  font-size: 16px;
  color: #666;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 30px;
}

.category-content {
  display: none;
  border-top: 1px solid #eee;
  padding-top: 30px;
  margin-top: 30px;
}

.category-item.active .category-content {
  display: block;
}

.knowledge-articles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.article-item {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.article-item:hover {
  background: #f0f2f5;
  transform: translateY(-2px);
}

.article-item h4 {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 18px;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.article-item p {
  font-family: var(--font-family);
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 15px;
}

.article-link {
  color: #1e3a8a;
  text-decoration: none;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  transition: color 0.3s ease;
}

.article-link:hover {
  color: #0d1f5c;
}

@media (max-width: 768px) {
  .knowledge-hero {
    padding: 40px 0;
  }
  
  .knowledge-hero-title {
    font-size: 36px;
  }
  
  .knowledge-hero-subtitle {
    font-size: 16px;
  }
  
  .knowledge-main {
    padding: 60px 0;
  }
  
  .knowledge-categories {
    gap: 30px;
  }
  
  .category-item {
    padding: 30px 25px;
  }
  
  .category-title {
    font-size: 24px;
  }
  
  .category-description {
    font-size: 15px;
  }
  
  .knowledge-articles {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .article-item {
    padding: 20px;
  }
}

.career-hero {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.career-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.career-hero-title {
  font: 800 48px var(--second-family);
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.2;
}

.career-hero-subtitle {
  font-family: var(--font-family);
  font-size: 18px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 40px;
}

.career-hero-stats {
  display: flex;
  gap: 40px;
}

.career-hero-stats .stat-item {
  text-align: center;
}

.career-hero-stats .stat-number {
  font: 800 36px var(--second-family);
  color: #1e3a8a;
  margin-bottom: 5px;
}

.career-hero-stats .stat-text {
  font-family: var(--font-family);
  font-size: 14px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.career-hero-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.career-hero-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.career-section-title {
  font: 800 36px var(--second-family);
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 60px;
}

.career-values {
  padding: 80px 0;
  background: white;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.value-item {
  text-align: center;
  padding: 40px 20px;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.value-item:hover {
  transform: translateY(-5px);
}

.value-icon {
  margin-bottom: 25px;
  color: #1e3a8a;
}

.value-title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 20px;
  color: var(--text-primary);
  margin-bottom: 15px;
}

.value-text {
  font-family: var(--font-family);
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.career-benefits {
  padding: 80px 0;
  background: #f8f9fa;
}

.benefits-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.benefit-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.benefit-icon {
  width: 50px;
  height: 50px;
  background: #1e3a8a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.benefit-content h4 {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 18px;
  color: var(--text-primary);
  margin-bottom: 5px;
}

.benefit-content p {
  font-family: var(--font-family);
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

.benefits-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.benefits-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.career-positions {
  padding: 80px 0;
  background: white;
}

.positions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.position-item {
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 30px;
  transition: all 0.3s ease;
}

.position-item:hover {
  border-color: #1e3a8a;
  box-shadow: 0 4px 20px rgba(30, 58, 138, 0.1);
}

.position-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.position-title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 20px;
  color: var(--text-primary);
}

.position-type {
  background: #e3f2fd;
  color: #1e3a8a;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

.position-location {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
  color: #666;
  font-size: 14px;
}

.position-description {
  font-family: var(--font-family);
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.position-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.tag {
  background: #f8f9fa;
  color: #666;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

.position-apply-btn {
  width: 100%;
  background: #1e3a8a;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.position-apply-btn:hover {
  background: #0d1f5c;
}

.no-positions {
  text-align: center;
  padding: 60px 40px;
  background: #f8f9fa;
  border-radius: 16px;
}

.no-positions-content i {
  color: #1e3a8a;
  margin-bottom: 20px;
}

.no-positions-content h3 {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 24px;
  color: var(--text-primary);
  margin-bottom: 15px;
}

.no-positions-content p {
  font-family: var(--font-family);
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
}

.initiative-btn {
  background: #1e3a8a;
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.initiative-btn:hover {
  background: #0d1f5c;
}

.career-team {
  padding: 80px 0;
  background: #f8f9fa;
}

.team-intro {
  text-align: center;
  font-family: var(--font-family);
  font-size: 18px;
  color: #666;
  margin-bottom: 60px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.team-member {
  background: white;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.member-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-name {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 18px;
  color: var(--text-primary);
  margin-bottom: 5px;
}

.member-position {
  font-family: var(--font-family);
  font-size: 14px;
  color: #1e3a8a;
  margin-bottom: 15px;
}

.member-quote {
  font-family: var(--font-family);
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  font-style: italic;
}

.application-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.modal-content {
  background: white;
  border-radius: 12px;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 30px 0;
  border-bottom: 1px solid #eee;
  margin-bottom: 30px;
}

.modal-title {
  font-family: var(--font-family);
  font-weight: 600;
  margin-bottom: 12px;
  font-size: 24px;
  color: var(--text-primary);
}

.modal-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #666;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-body {
  padding: 0 30px 30px;
}

.application-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-textarea {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #333;
  background: white;
  resize: vertical;
  min-height: 120px;
  transition: all 0.3s ease;
}

.form-textarea:focus {
  outline: none;
  border-color: #1e3a8a;
  box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.form-textarea::placeholder {
  color: #999;
}

/* Contact Form 7 styles for application modal */
.wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.wpcf7-form p {
  margin: 0;
  display: contents;
}

.wpcf7-form-control-wrap {
  display: contents;
}

.wpcf7-form-control {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #333;
  background: white;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.wpcf7-form-control:focus {
  outline: none;
  border-color: #1e3a8a;
  box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.wpcf7-form-control::placeholder {
  color: #999;
}

.wpcf7-textarea {
  resize: vertical;
  min-height: 120px;
}

.wpcf7-acceptance {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.wpcf7-list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.wpcf7-list-item input[type="checkbox"] {
  margin: 0;
  width: 18px;
  height: 18px;
  accent-color: #1e3a8a;
}

.wpcf7-list-item-label {
  font-size: 14px;
  color: #666;
  line-height: 1.4;
  cursor: pointer;
}

.wpcf7-submit {
  background: #1e3a8a !important;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.wpcf7-submit:hover {
  background: #1e40af;
}

.wpcf7-submit:disabled {
  background: #6b7280;
  cursor: not-allowed;
}

.wpcf7-response-output {
  margin-top: 20px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
}

.wpcf7-response-output.wpcf7-mail-sent-ok {
  background-color: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.wpcf7-response-output.wpcf7-validation-errors {
  background-color: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

.feature-icon{
  background-color: #1E3A8A20;
  color:#1E3A8A;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 20px;
}


@media (max-width: 1024px) {
  .career-hero-content,
  .benefits-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .career-hero-stats {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .career-hero {
    padding: 60px 0;
  }
  
  .career-hero-title {
    font-size: 36px;
  }
  
  .career-section-title {
    font-size: 28px;
    margin-bottom: 40px;
  }
  
  .values-grid,
  .team-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .career-hero-stats {
    flex-direction: column;
    gap: 20px;
  }
  
  .positions-grid {
    grid-template-columns: 1fr;
  }
  
  .position-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .modal-content {
    width: 95%;
  }
  
  .modal-header,
  .modal-body {
    padding-left: 20px;
    padding-right: 20px;
  }
}




.service-detail-image img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 1024px) {
  .service-detail-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .service-detail-image {
    order: -1;
  }
}

@media (max-width: 768px) {
  .service-detail {
    padding: 40px 0;
  }
  
  .service-detail-title {
    font-size: 32px;
  }
  
  .breadcrumb-nav {
    font-size: 12px;
  }
  
  .breadcrumb-separator {
    margin: 0 5px;
  }
}

.hero-disclaimer {
  font: 400 12px var(--font-family);
  color: var(--text-muted);
}

.hero-image {
  position: absolute;
  right: -30px;
  bottom: -0px;
}

.hero-offer {
  border: 2px solid var(--white);
  border-radius: 20px;
  backdrop-filter: blur(33.900001525878906px);
  background: rgba(255, 255, 255, 0.2);
  padding: 20px;
  position: absolute;
  bottom: 70px;
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  gap: 10px;
  right: 70px;
}

.offer-title {
  font: 700 20px / 125% var(--font-family);
  color: var(--primary-light);
  display: flex;
  align-items: center;
  gap: 10px;
}

.offer-date,
.offer-text {
  font: 500 18px / 139% var(--font-family);
  color: var(--text-secondary);
}

.about-content {
  display: flex;
  gap: 10px;
}

.about-left,
.about-right {
  flex: 1 1 50%;
}

.about-left {
  position: relative;
}

.stats-grid {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  gap: 15px;
  width: 90%;
}

.about-image {
  height: 100%;
  position: relative;
}

.about-image::before {
  background: linear-gradient(180deg, rgba(11, 166, 158, 0) 0%, var(--primary-medium) 100%);
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 30px;
}

.about-image img {
  height: 100%;
  mix-blend-mode: darken;
  width: 100%;
  border-radius: 30px;
}

.about-right {
  border: 1px solid var(--border-light);
  border-radius: 30px;
  padding: 50px;
  background: var(--bg-light);
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stat-number {
  font: 900 56px / 35% var(--font-family);
  color: var(--white);
}

.stat-text {
  font: 500 18px / 111% var(--font-family);
  color: var(--white);
}

.about-title {
  font: 800 36px var(--second-family);
  color: var(--text-primary);
  margin-bottom: 20px;
}

.about-title span {
  font: 800 36px var(--second-family);
  color: var(--primary-light);
}

.about-description {
  font: 400 18px / 139% var(--font-family);
  color: var(--black);
  margin-bottom: 20px;
}

.about-btn {
  font: 700 16px var(--font-family);
  letter-spacing: 0.1em;
  color: var(--white);
  border-radius: 39px;
  background: linear-gradient(105deg, var(--accent-primary) 0%, var(--primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 25px;
  gap: 10px;
  transition: all 0.3s ease;
}

.about-btn:hover {
  background: linear-gradient(105deg, var(--primary-darker) 0%, var(--primary-darkest) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(18, 134, 128, 0.3);
}

.advantages-title {
  font: 800 36px var(--second-family);
  color: var(--text-primary);
  margin-bottom: 15px;
}

.advantages-title span {
  font: 800 36px var(--second-family);
  color: var(--primary-light);
}

.advantages-description {
  font: 400 18px / 139% var(--font-family);
  color: var(--black);
}

.advantages-grid {
display: flex;
  gap: 12px;
  margin-top: 30px;
}

.advantages {
  padding-top: 80px;
}

.advantage-header {
  display: flex;
  margin-bottom: 35px;
  gap: 20px;
  align-items: center;
}

.advantage-icon {
  background: linear-gradient(148deg, var(--accent-bright) 0%, var(--accent-medium) 100%);
  border-radius: 18px;
  width: 59px;
  height: 59px;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}

.advantage-icon img {
  width: 37px;
  height: 37px;
}

.advantage-link{
  margin-top: auto;
  font: 400 18px / 139% var(--font-family);
color: #1e3a8a;
}

.advantage-item{
  display: flex;
  flex-direction: column;
}

.advantage-item {
  border: 1px solid var(--border-light);
  border-radius: 30px;
  cursor: pointer;
  background: var(--bg-lighter);
  flex: 1 1  100%;
  padding: 30px;
  transition: all 0.3s ease;
}

.advantage-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(18, 134, 128, 0.3);
}

.advantage-title {
  font: 800 24px / 104% var(--second-family);
  color: var(--text-secondary);
}
.advantage-text {
  font: 400 18px / 139% var(--font-family);
  color: var(--black);
}

.services {
  background: #f5f7fa;
  padding: 76px 0;
  margin-top: 80px;
}



.services-title {
  font: 800 36px var(--second-family);
  color: var(--primary-light);
  margin-bottom: 15px;
}

.services-title span {
  font: 800 36px var(--second-family);
  color: var(--text-primary);
}

.services-description {
  font: 400 18px / 139% var(--font-family);
  color: var(--black);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 8px;
  margin-top: 50px;
}

.service-item:nth-child(2) {
  grid-column-start: 1;
  grid-row-start: 2;
}

.service-item {
  position: relative;
  transition: all 0.3s ease;
}

.service-item:nth-child(3) {
  grid-row: span 2 / span 2;
  grid-column-start: 2;
  grid-row-start: 1;
}

.service-item:first-child {
  border-radius: 30px;
}

.service-item {
  border-radius: 30px;
  overflow: hidden;
}

.service-item:first-child::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(11, 166, 158, 0) 0%, var(--primary-medium) 100%);
}

.service-item:first-child .service-text {
  display: flex;
  align-items: center;
  gap: 30px;
}

.service-item:first-child .service-text svg {
  flex-shrink: 0;
}

.service-content {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
}

.service-title {
  font: 800 24px / 104% var(--second-family);
  color: var(--white);
  margin-bottom: 10px;
}

.service-text {
  font: 400 18px / 139% var(--font-family);
  color: var(--white);
}

.service-icon img {
  height: 100%;
  object-fit: cover;
}

.service-icon {
  height: 100%;
  object-fit: cover;
}

.service-item:nth-child(2) .service-title {
  position: absolute;
  bottom: 18px;
  left: 30px;
  display: flex;
  align-items: center;
  width: calc(100% - 60px);
  cursor: pointer;
  padding: 12px;
  justify-content: space-between;
  border-radius: 30px;
  background: rgba(30, 58, 138, 0.87);
  right: 30px;
}

.service-item:nth-child(3) .service-title {
  position: absolute;
  bottom: 18px;
  left: 30px;
  display: flex;
  align-items: center;
  width: calc(100% - 60px);
  cursor: pointer;
  padding: 12px;
  justify-content: space-between;
  border-radius: 30px;
  background: rgba(30, 58, 138, 0.87);
  right: 30px;
}

.service-item:nth-child(1) .service-title {
  position: absolute;
  bottom: 18px;
  left: 30px;
  display: flex;
  align-items: center;
  width: calc(100% - 60px);
  cursor: pointer;
  padding: 12px;
  justify-content: space-between;
  border-radius: 30px;
  background: rgba(30, 58, 138, 0.87);
  right: 30px;
}

.arrow-btn {
  display: flex;
  align-items: center;
  margin-left: auto;
  width: fit-content;
  border: 1px solid var(--border-light);
  border-radius: 20px;
  width: 233px;
  height: 64px;
  margin-top: 45px;
  background: var(--white);
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.arrow-btn svg {
  cursor: pointer;
}

.arrow-btn .bonus {
  padding-top: 80px;
}

.bonus-content {
  background-image: url(/assets/img/back_bonus.webp);
  background-size: cover;
  display: flex;
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  padding: 30px;
  background-repeat: no-repeat;
}

.bonus-image img {
  position: absolute;
  bottom: 0;
  left: 0;
}

.bonus-image {
  width: 518px;
  height: 523px;
}

.bonus-right {
  border: 1px solid var(--border-light);
  border-radius: 30px;
  background: var(--bg-light);
  padding: 55px;
}

.bonus-title {
  font: 800 36px var(--second-family);
  color: var(--text-primary);
  margin-bottom: 30px;
}

.bonus-title span {
  font: 800 36px var(--second-family);
  color: var(--primary-light);
}

.bonus-feature-text {
  font: 400 18px var(--font-family);
  color: var(--black);
}

.bonus-feature {
  display: flex;
  gap: 10px;
  align-items: center;
}

.bonus-features {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 30px;
  max-width: 404px;
}

.bonus-feature-icon {
  flex-shrink: 0;
}

.bonus-btn {
  font: 700 16px var(--font-family);
  letter-spacing: 0.1em;
  color: var(--white);
  border-radius: 39px;
  width: fit-content;
  padding: 0 5px 0 25px;
  height: 54px;
  background: linear-gradient(105deg, var(--accent-primary) 0%, var(--primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.bonus-btn:hover {
  background: linear-gradient(105deg, var(--primary-darker) 0%, var(--primary-darkest) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(18, 134, 128, 0.3);
}

.bonus-disclaimer {
  font: 400 14px var(--font-family);
  color: var(--text-muted);
  margin-top: 25px;
  border-top: 1px solid rgba(0, 0, 0, 0.24);

  padding-top: 25px;
}

.specialists-title {
  font: 800 36px var(--second-family);
  color: var(--text-primary);
  margin-bottom: 15px;
}

.specialists-title span {
  font: 800 36px var(--second-family);
  color: var(--primary-light);
}

.specialists-description {
  font: 400 18px var(--font-family);
  color: var(--black);
}

.specialists-swiper {
  margin-top: 50px;
}

.specialists {
  padding-top: 80px;
}

.specialist-info {
  padding: 35px;
  border: 1px solid var(--border-light);
  border-radius: 0 0 30px 30px;

  background: var(--bg-lighter);
}

.specialist-experience {
  font: 700 16px var(--font-family);
  color: var(--text-secondary);
  border: 2px solid var(--accent-special);
  border-radius: 20px;
  width: fit-content;
  padding: 0 10px;
  height: 34px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.specialist-name {
  font: 700 18px var(--font-family);
  color: var(--text-primary);
  margin-bottom: 15px;
}

.specialist-position {
  font: 600 18px var(--font-family);
  color: var(--text-light);
  margin-bottom: 15px;
}

.specialist-btn {
  font: 700 16px var(--font-family);
  letter-spacing: 0.1em;
  color: var(--white);
  border-radius: 39px;
  padding: 0 5px 0 25px;
  height: 54px;
  gap: 40px;
  background: linear-gradient(105deg, var(--accent-primary) 0%, var(--primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.specialists-navigation .arrow-btn {
  background: var(--bg-lighter);
}

.before-after-navigation {
  display: flex;
  justify-content: center;
}

.before-after-navigation .arrow-btn {
  background: var(--bg-lighter);
  margin-right: auto !important;
  margin-left: 0;
}

.appointment {
  padding: 80px 0;
}

.appointment-content {
  display: grid;
  grid-template-columns: 1fr 524px;
  border-radius: 30px;
  position: relative;
  padding: 40px;
  gap: 60px;
  align-items: center;
  background: linear-gradient(
    116deg,
    var(--accent-blue) 0%,
    var(--accent-green) 34.24%,
    var(--accent-teal) 64.21%,
    var(--primary-dark) 100%
  );
}

.appointment-left {
  border: 1px solid var(--border-light);
  border-radius: 30px;
  background: var(--bg-light);
  padding: 30px;
}

.appointment-title {
  font: 800 36px var(--second-family);
  color: var(--text-primary);
  margin-bottom: 5px;
}

.appointment-description {
  font: 400 18px / 139% var(--font-family);
  color: #000;  
  
}

.appointment-form {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 13px 8px;
  margin-top: 20px;
}

.form-group {
  position: relative;
}

.form-input {
  width: 100%;
  padding: 20px 25px;

  border: 1px solid var(--border-light);
  border-radius: 8px;

  font: 400 16px var(--font-family);
  color: var(--text-primary);
  background: var(--white);

  transition: all 0.3s ease;
}

.form-group:nth-child(3) {
  flex: 1 1 100%;
}

.form-group:nth-child(4) {
  flex: 1 1 100%;
}

.form-group {
  flex: 1 1 45%;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(18, 134, 128, 0.1);
}

.form-input::placeholder {
  color: var(--gray-light);
}

.appointment-btn {
  padding: 0 5px 0 25px;
  height: 54px;
  gap: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(105deg, var(--accent-primary) 0%, var(--primary-light) 100%);
  color: white;

  border: none;
  border-radius: 150px;
  font: 700 16px var(--font-family);
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.appointment-btn:hover {
  background: linear-gradient(105deg, var(--primary-darker) 0%, var(--primary-darkest) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(18, 134, 128, 0.3);
}

.appointment-consent {
  font: 400 14px var(--font-family);
  color: var(--gray-light);
  border-top: 1px solid var(--border-light);
  padding: 20px 0;
  margin-top: 15px;
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.appointment-consent input[type="checkbox"] {
  margin: 0;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.appointment-consent span {
  flex: 1;
}

.appointment-image {
  position: absolute;
  top: 20px;
  right: 20px;
}

.location-content {
  display: grid;
  position: relative;
  grid-template-columns: 1fr 1fr;
}

.location-info {
  position: relative;
}

.location-info-content {
  box-shadow: 0 50px 50px 0 rgba(0, 0, 0, 0.1);
  background: url(/assets/img/map.webp);
  border: 1px solid var(--border-light);
  border-radius: 30px;
  position: absolute;
  width: 715px;
  top: 50%;
  transform: translate(-50%, -50%);
  right: 0%;
  padding: 40px;
}

.location-info {
  background: var(--bg-pale-dark);
}

.location-title {
  font: 700 36px var(--second-family);
  color: var(--text-primary);
  margin-bottom: 40px;
  line-height: 1.2;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.location-address,
.location-transport,
.location-metro {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.location-text {
  font: 400 18px var(--font-family);
  color: var(--black);
  width: 40%;
}

@media (max-width: 1024px) {
  .appointment-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .appointment-image img {
    height: 300px;
  }

  .location-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .location-title {
    font-size: 28px;
  }

}

@media (max-width: 768px) {
  .appointment {
    padding: 60px 0;
  }

  .appointment-title {
    font-size: 28px;
  }

  .appointment-description {
    font-size: 16px;
  }

  .form-input {
    padding: 15px 20px;
  }

  .appointment-btn {
    padding: 15px 30px;
  }


}

.before-after-prev,
.before-after-next {
  height: 24px;
}

.pricing {
  background-image: url(/assets/img/back_price.webp);
  padding: 50px 0;
  margin-top: 80px;
  background-size: cover;
}

.pricing-title {
  font: 800 36px var(--second-family);
  color: var(--text-primary);
  margin-bottom: 15px;
}

.pricing-title span {
  font: 800 36px var(--second-family);
  color: var(--primary-light);
}

.pricing-header {
  margin-bottom: 30px;
}

.pricing-description {
  font: 400 18px / 139% var(--font-family);
  color: var(--black);
}

.pricing-table-header {
  margin-bottom: 0;
}

.table-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: var(--primary-light);
  border-radius: 30px 30px 0 0;
  color: white;
}

.header-service {
  font: 600 18px var(--font-family);
  color: white;
}

.header-price {
  font: 700 18px var(--font-family);
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 5px;
  border-left: 1px solid var(--white);
  padding-left: 20px;
}

.header-price span {
  font: italic 400 14px var(--font-family);
}

.pricing-accordion {
  border: 1px solid var(--border-light);
  border-radius: 0 0 30px 30px;
  background: var(--bg-lighter);
  padding: 24px;
}

.accordion-item {
  margin-bottom: 20px;
  border-radius: 15px;
  overflow: hidden;
  padding: 20px;
  border: 1px solid var(--border-accent);
  border-radius: 30px;
  background: var(--white);
}

.accordion-header {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
}

.accordion-title {
  font: 700 22px var(--font-family);
  color: var(--text-primary);
  margin-bottom: 0;
}

.accordion-item.active .accordion-title {
  margin-bottom: 35px;
}

.accordion-icon svg {
  transition: transform 0.3s;
}

.accordion-item.active .accordion-icon svg {
  transform: rotate(90deg);
}

.accordion-content {
  background: white;
  padding: 0;
  max-height: 0;

  overflow: hidden;
  transition: max-height 0.3s ease;
}

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

.service-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-row:last-child {
  border-bottom: none;
}

.service-name {
  font: 400 18px / 139% var(--font-family);
  color: var(--black);
}

.service-price {
  font: 600 16px var(--font-family);
  color: var(--primary-light);
}

.doctor-profile-wrapper {
  display: flex;
  border: 1px solid var(--border-light);
  border-radius: 30px;
  background: var(--bg-lighter);
  margin-top: 80px;
  padding: 35px 50px;
  gap: 40px;
}

.doctor-profile-wrapper > * {
  flex: 1;
}

.doctor-visual {
  max-width: 447px;
}

.doctor-profile-wrapper .doctor-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.doctor-profile-wrapper .doctor-name {
  font: 800 36px var(--second-family);
  color: var(--primary-dark);
  margin-bottom: 0;
}

.doctor-title {
  font: 700 22px var(--font-family);
  color: var(--text-primary);
  margin-bottom: 5px;
}

.doctor-bio {
  font: 400 18px / 139% var(--font-family);
  color: var(--black);
  margin-top: 30px;
  margin-bottom: 30px;
}

.doctor-info {
  display: flex;
  flex-direction: column;

  align-items: flex-start;
}

.doctor-achievements {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  width: 90%;
}

.achievement-card {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.achievement-number {
  font: 900 56px / 35% var(--font-family);
  color: var(--primary-dark);
}

.achievement-label {
  font: 500 18px / 111% var(--font-family);
  color: var(--text-primary);
}

.book-appointment {
  font: 700 16px var(--font-family);
  letter-spacing: 0.1em;
  color: var(--white);
  margin-top: 30px;
  border-radius: 39px;
  padding: 0 5px 0 25px;
  height: 54px;
  gap: 40px;
  background: linear-gradient(105deg, var(--accent-primary) 0%, var(--primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo-badge {
  border: 2px solid var(--white);
  border-radius: 20px;
  backdrop-filter: blur(33.900001525878906px);
  background: rgba(255, 255, 255, 0.301);
  padding: 20px;
  position: absolute;
  bottom: 70px;
  display: flex;

  width: 473px;
  align-items: flex-start;
  flex-direction: row;
  gap: 10px;
  right: 70px;
}

.promo-title {
  font: 700 20px / 125% var(--font-family);
  color: var(--primary-light);
}

.promo-date {
  font: 500 18px / 139% var(--font-family);
  color: var(--text-secondary);
}

.promo-description {
  font: 500 18px / 139% var(--font-family);
  color: var(--text-secondary);
}

.doctor-visual {
  position: relative;
}

.reviews {
  background-image: url(/assets/img/review.webp);
  padding: 67px 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin-top: 80px;
}

.reviews-title {
  font: 800 36px var(--second-family);
  color: var(--white);
  margin-bottom: 15px;
}

.reviews-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}

.reviews-description {
  font: 400 18px / 139% var(--font-family);
  color: var(--white);
}

.review-card {
  border: 1px solid var(--border-light);
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  height: 330px;
  justify-content: space-between;
  gap: 30px;
  padding: 35px;
  background: var(--bg-light);
}

.review-logo img {
  height: 40px;
  max-width: 170px;
  object-fit: contain;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.review-text {
  font: 400 18px / 139% var(--font-family);
  color: var(--black);
}

.review-author {
  font: italic 400 18px / 139% var(--font-family);
  text-align: right;
  color: var(--black);
}

.before-after {
  padding: 80px 0 0;
}

.before-after-header {
  margin-bottom: 30px;
}

.before-after-title {
  font: 800 36px var(--second-family);
  color: var(--text-primary);
  margin-bottom: 20px;
}

.before-after-title span {
  font: 800 36px var(--second-family);
  color: var(--primary-light);
}

.before-after-description {
  font: 400 18px / 139% var(--font-family);
  color: var(--text-secondary);
  margin-bottom: 15px;
}

.before-after-swiper {
  position: relative;
  overflow: hidden;
}

.before-after-content {
  display: grid;
  grid-template-columns: 524px 1fr;
  gap: 60px;
  align-items: start;
}

.before-after-image {
  position: relative;
}

.twentytwenty-container {
  width: 100%;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
}

.twentytwenty-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.twentytwenty-overlay {
  display: none;
}

.twentytwenty-left-arrow {
  border-radius: 100%;
  width: 14px;
  height: 14px;
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  margin: 0;
  transform: translate(-50%, -50%) !important;
  fill: var(--white);
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.25);
}

.twentytwenty-before-label,
.twentytwenty-after-label {
  background: rgba(0, 0, 0, 0.7);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 20px;
  font: 500 14px var(--font-family);
}

.twentytwenty-handle {
  background: var(--white) !important;
  border: 3px solid white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.twentytwenty-handle:before,
.twentytwenty-handle:after {
  background: white;
  border: 2px solid var(--white);
}

.case-title {
  font: 700 22px var(--font-family);
  color: var(--text-primary);
  margin-bottom: 20px;
}

.case-description p {
  font: 400 18px / 139% var(--font-family);
  color: var(--black);
  margin-bottom: 30px;
}

.doctor-photo {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  object-fit: cover;
}

.case-doctor {
  border-top: 1px solid var(--border-medium);
  padding-top: 20px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.doctor-name {
  font: 700 18px var(--font-family);
  color: var(--text-primary);
  margin-bottom: 5px;
}

.doctor-position {
  font: 600 18px var(--font-family);
  color: var(--text-light);
}

@media (max-width: 768px) {
  .before-after-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .case-study {
    padding: 30px 20px;
  }
}

.swiper-pagination {
  position: relative;
  margin-top: 40px;
  text-align: center;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--gray-lighter);
  opacity: 1;
  margin: 0 6px;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: var(--primary-color);
  transform: scale(1.2);
}




.bonus{
  margin-top: 80px;
}


.rating {
  display: flex;
  align-items: center;
  gap: 15px;
}

.rating-label {
  font: 500 16px var(--font-family);
  color: var(--text-color);
}

.stars {
  display: flex;
  gap: 5px;
}

.stars input[type="radio"] {
  display: none;
}

.stars label {
  font-size: 24px;
  color: var(--gray-lighter);
  cursor: pointer;
  transition: color 0.3s ease;
}

.stars input[type="radio"]:checked ~ label,
.stars label:hover,
.stars label:hover ~ label {
  color: var(--gold);
}

@media screen and (max-width: 1124px) {
  .separator {
    height: 21px;
    width: 1px;
    background: var(--white);
  }

  .hero-image {
    width: 550px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 32px;
  }

  .hero-subtitle span {
    font-size: 32px;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-form {
    padding: 20px;
  }

  .hero-form-input {
    height: 44px;
    padding: 15px;
  }

  .hero-form-btn {
    height: 44px;
    padding: 15px;
  }

  .hero-form-btn svg {
    width: 34px;
    height: 34px;
  }

  .pricing {
    padding: 40px 0;
    margin-top: 60px;
  }

  .pricing-title {
    font-size: 30px;
  }

  .pricing-title span {
    font-size: 30px;
  }

  .pricing-description {
    font-size: 16px;
  }

  .table-header-row {
    padding: 15px;
  }

  .header-service {
    font-size: 14px;
  }

  .header-price {
    font-size: 14px;
  }

  .pricing-accordion {
    padding: 20px;
  }

  .accordion-item {
    padding: 15px;
    margin-bottom: 15px;
  }

  .accordion-title {
    font-size: 18px;
  }

  .accordion-item.active .accordion-title {
    margin-bottom: 25px;
  }

  .accordion-icon svg {
    width: 36px;
    height: 36px;
  }

  .service-name {
    font-size: 16px;
  }

  .service-price {
    font-size: 14px;
  }

  .doctor-profile-wrapper {
    padding: 25px 35px;
    gap: 30px;
    margin-top: 60px;
  }

  .doctor-profile-wrapper .doctor-name {
    font-size: 30px;
  }

  .doctor-title {
    font-size: 18px;
  }

  .doctor-bio {
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .doctor-achievements {
    gap: 15px;
    width: 100%;
  }

  .achievement-card {
    gap: 20px;
  }

  .achievement-number {
    font-size: 48px;
  }

  .achievement-label {
    font-size: 12px;
  }

  .book-appointment {
    font-size: 14px;
    height: 48px;
    padding: 0 5px 0 20px;
    gap: 30px;
    margin-top: 20px;
  }

  .book-appointment svg {
    width: 38px;
    height: 38px;
  }

  .doctor-visual {
    max-width: 380px;
  }

  .promo-badge {
    padding: 15px;
    bottom: 50px;
    right: 50px;
    width: 350px;
  }

  .promo-title {
    font-size: 14px;
  }

  .promo-date {
    font-size: 12px;
  }

  .promo-description {
    font-size: 12px;
  }

  .promo-icon svg {
    width: 20px;
    height: 20px;
  }

  .reviews {
    padding: 50px 0;
    margin-top: 60px;
  }

  .reviews-title {
    font-size: 30px;
  }

  .reviews-description {
    font-size: 16px;
  }

  .reviews-header {
    margin-bottom: 25px;
  }

  .review-card {
    height: 280px;
    padding: 25px;
    gap: 20px;
  }

  .review-logo img {
    height: 35px;
    max-width: 150px;
  }

  .review-text {
    font-size: 16px;
  }

  .review-author {
    font-size: 16px;
  }

  .before-after {
    padding: 60px 0 0;
  }

  .before-after-title {
    font-size: 30px;
  }

  .before-after-title span {
    font-size: 30px;
  }

  .before-after-description {
    font-size: 16px;
  }

  .before-after-header {
    margin-bottom: 25px;
  }

  .before-after-content {
    grid-template-columns: 450px 1fr;
    gap: 40px;
  }

  .twentytwenty-container {
    height: 350px;
  }

  .case-title {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .case-description p {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .case-doctor {
    padding-top: 15px;
    gap: 8px;
  }

  .doctor-photo {
    width: 60px;
    height: 60px;
  }

  .doctor-name {
    font-size: 16px;
  }

  .doctor-position {
    font-size: 16px;
  }

  .appointment {
    padding: 60px 0;
  }

  .appointment-content {
    grid-template-columns: 1fr 450px;
    padding: 30px;
    gap: 40px;
  }

  .appointment-left {
    padding: 25px;
  }

  .appointment-title {
    font-size: 30px;
  }

  .appointment-description {
    font-size: 16px;
  }

  .appointment-form {
    gap: 10px 6px;
    margin-top: 15px;
  }

  .form-input {
    padding: 15px 20px;
    font-size: 14px;
  }

  .appointment-btn {
    height: 48px;
    padding: 0 5px 0 20px;
    gap: 30px;
    font-size: 14px;
  }

  .appointment-btn svg {
    width: 36px;
    height: 36px;
  }

  .appointment-consent {
    font-size: 12px;
    padding: 15px 0;
    margin-top: 10px;
  }

  .appointment-consent input[type="checkbox"] {
    width: 14px;
    height: 14px;
  }

  .appointment-image {
    top: 15px;
    width: 550px;
    right: 15px;
  }

  .location-content {
    gap: 0;
    grid-template-columns: 1fr;
  }

  .location-info-content {
    width: 100%;
    border-radius: 0;
    position: relative;
    inset: 0;
    transform: translate(0, 0);
    background: var(--white);
    padding: 30px;
  }

  .location-title {
    font-size: 30px;
    margin-bottom: 30px;
  }

  .location-details {
    gap: 20px;
  }

  .location-address,
  .location-transport,
  .location-metro {
    gap: 12px;
  }

  .location-text {
    font-size: 16px;
    width: 45%;
  }

  .location-icon img {
    width: 20px;
    height: 20px;
  }


  .offer-title {
    font-size: 16px;
  }

  .offer-date {
    font-size: 14px;
  }

  .offer-text {
    font-size: 14px;
  }

  .hero-offer {
    padding: 10px;
  }

  .about-right {
    padding: 20px;
    border-radius: 15px;
  }

  .about-image img {
    border-radius: 15px;
  }

  .stat-number {
    font-size: 40px;
    line-height: 1;
  }

  .stat-item {
    gap: 10px;
  }

  .stat-text {
    font-size: 14px;
  }

  .about-title {
    font-size: 24px;
  }

  .about-title span {
    font-size: 24px;
  }

  .about-description {
    font-size: 14px;
  }

  .advantages-title {
    font-size: 24px;
  }
  .advantages-title span {
    font-size: 24px;
  }
  .advantages-description {
    font-size: 14px;
  }

  .advantages-grid {
    gap: 6px;
    display: grid;
  }

  .advantage-item {
    padding: 15px;
    border-radius: 15px;
  }

  .advantage-header {
    gap: 10px;
    margin-bottom: 15px;
  }

  .advantage-icon {
    width: 57px;
    height: 57px;
    border-radius: 15px;
  }

  .advantage-icon img {
    width: 37px;
    height: 37px;
  }

  .advantage-title {
    font-size: 18px;
  }

  .advantage-text {
    font-size: 14px;
  }

  .services-title {
    font-size: 24px;
  }
  .services-title span {
    font-size: 24px;
  }
  .services-description {
    font-size: 14px;
  }
  .services-grid {
    gap: 6px;
    margin-top: 30px;
  }

  .service-title {
    font-size: 18px;
  }

  .service-text {
    font-size: 14px;
  }

  .service-item:nth-child(2) .service-title {
    font-size: 18px;
    padding: 10px;
  }

  .service-item:nth-child(3) .service-title {
    font-size: 18px;
    padding: 10px;
  }

  .service-title svg {
    width: 34px;
    height: 34px;
  }

  .bonus-title {
    font-size: 24px;
  }

  .bonus-right {
    padding: 20px;
    border-radius: 15px;
  }

  .bonus-feature-text {
    font-size: 14px;
  }

  .bonus-btn {
    height: 44px;
    padding: 15px;
    font-size: 14px;
  }

  .bonus-btn svg {
    width: 34px;
    height: 34px;
  }

  .bonus-disclaimer {
    margin-top: 15px;
    font-size: 14px;
    padding-top: 25px;
  }

  .bonus-image {
    height: 332px;
  }

  .bonus-image img {
    height: 480px;
  }

  .bonus-title span {
    font-size: 24px;
  }
  .bonus-description {
    font-size: 14px;
  }
  .bonus-grid {
    gap: 6px;
  }

  .specialists-title {
    font-size: 24px;
  }

  .specialists-swiper {
    margin-top: 30px;
  }

  .specialists-title span {
    font-size: 24px;
  }
  .specialists-description {
    font-size: 14px;
  }

  .specialist-info {
    padding: 20px;
    border-radius: 0 0 15px 15px;
  }

  .specialist-experience {
    font-size: 14px;
    padding: 10px;
    border-radius: 15px;
  }

  .specialist-name {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .specialist-position {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .specialist-btn {
    font-size: 14px;
    padding: 10px;
    height: 44px;
  }

  .specialist-image img {
    height: 270px;
    width: 100%;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
  }

  .arrow-btn svg {
    width: 54px;
  }

  .arrow-btn {
    width: fit-content;
    padding: 0 15px;
    height: 44px;
  }

  .arrow-btn > div {
    height: 14px;
  }

  .specialist-btn svg {
    width: 34px;
    height: 34px;
  }
}


@media screen and (max-width: 1024px) {
  .hero-image{
    display: none;
  }

  .hero-offer{
    position: relative;
    inset: 0;
    width: fit-content;
  }

  .hero-content{
    flex-direction: column;
    gap: 15px;
  }

  .advantages-grid{
    grid-template-columns: 1fr 1fr;
  }

  .bonus-left{
    display: none;
  }

  .promo-badge{
    position: relative;
    inset: 0;
  }

  .before-after-content{
    grid-template-columns: 1fr;
  }

  .appointment-image{
    display: none;
  }

  .appointment-content{
    display: flex;
    width: 100%;

  }

  .appointment-left{
    width: 100%;
  }

  .doctor-profile-wrapper {
 
    flex-direction: column;
  }
}

@media screen and (max-width: 768px) {
  .about-content {
    display: flex
;
    gap: 10px;
    flex-direction: column;
}

.advantages-grid{
    grid-template-columns: 1fr;
}

.services-grid{
  display: flex;
  flex-direction: column;
}


.location-text{
  width: 100%;
}

.appointment-right{
  display: none;
}

.appointment{
  padding: 30px 0;
}

.appointment-content{
  padding: 15px;
}

.appointment-title{
  font-size: 24px;
}

.appointment-description{
  font-size: 14px;
}

.form-input{
  padding: 15px 20px;
}

.form-group{
  width: 100%;
  flex: 1 1 100%;

}

.appointment-btn{
  width: 100%;
  justify-content: space-between;
}

.arrow-btn{
  margin-top: 15px;
}

.case-study{
  padding: 0;
}

.before-after , .reviews{
  padding: 30px 0 0;
}

.reviews{
  margin-top: 30px;
}

.achievement-number{
  font-size: 36px;
  line-height: 1.2;
}

.achievement-card{
  gap: 15px;
}

.doctor-profile-wrapper{
  padding: 15px;
}

.hero-form-input, .hero-form-btn{
  width: 100%;
  justify-content: space-between;
}

.hero-content{
  padding: 30px 0;
  margin-bottom: 30px;
}

.advantages{
  padding: 30px 0 0;
}

.services , .pricing{
  padding: 30px 0 30px;
  margin-top: 30px;
}

.pricing-accordion{
  display: flex;
  flex-direction: column;
}

.accordion-item{
  flex-shrink: 0;
}

.service-name{
flex-shrink: 0;
width: 350px;
}

    

.promo-badge{
  width: 100%;
}

.service-price{
  flex-shrink: 0;
}

.accordion-content{
  overflow: scroll;
  gap: 10px;
}

.service-row{
  gap:30px;
  justify-content: space-between;
}

.bonus , .specialists{
  padding: 30px 0 0;
}

.bonus-content{
  padding: 15px;
}

}

.leistungen{
  padding: 80px 0 0;
}


.leistungen-title {
  font: 800 36px var(--second-family);
  color: var(--text-primary);
  margin-bottom: 15px;
}

.leistungen-title span {
  font: 800 36px var(--second-family);
  color: var(--primary-light);
}

.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.cycle{
  margin-bottom: 45px;
}

.leistungen-grid{
  position: relative;
}

.leistungen-grid::after{
  content: '';
  display: block;
  width: 100%;
  z-index: -1;
  height: 1px;
  position: absolute;
  opacity: 0.2;
  top: 21px;
  left: 0;
  background-color: #000;
}


.leistung-number {
  font-weight: 500;
  font-size: 27px;
  line-height: 50%;
  letter-spacing: 0.01em;
  color: #1e3a8a;
  margin-bottom: 20px;
}

.leistung-title {
  font-weight: 300;
  font-size: 25px;
  line-height: 132%;
  color: #4b4b4b;
  margin-bottom: 15px;
}

.leistung-description {
  font-weight: 300;
  font-size: 17px;
  line-height: 154%;
  color: #767676;
}

@media (max-width: 768px) {
  .leistungen-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .leistung-item {
    padding: 20px;
  }
  
  .leistungen-title {
    font-size: 28px;
  }
  
  .leistungen-title span {
    font-size: 28px;
  }
}

/* Wissensbibliothek Single Article Styles */
.knowledge-article {
  padding: 60px 0;
}

.article-header {
  text-align: center;
  margin-bottom: 50px;
}

.article-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 48px;
  line-height: 120%;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.article-excerpt {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto;
}

.article-content {
  max-width: 900px;
  margin: 0 auto 50px;
  background: white;
  padding: 50px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.article-content h2 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 32px;
  line-height: 130%;
  color: var(--primary-color);
  margin: 40px 0 20px;
}

.article-content h2:first-child {
  margin-top: 0;
}

.article-content h3 {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 24px;
  line-height: 130%;
  color: var(--primary-color);
  margin: 30px 0 15px;
}

.article-content p {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.article-content ul,
.article-content ol {
  margin: 20px 0;
  padding-left: 30px;
}

.article-content li {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.article-content blockquote {
  border-left: 4px solid var(--primary-color);
  padding: 20px 30px;
  margin: 30px 0;
  background: var(--bg-pale);
  font-style: italic;
  font-size: 18px;
  line-height: 150%;
  color: var(--text-secondary);
}

.article-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
}

.article-meta {
  max-width: 900px;
  margin: 0 auto;
  padding: 30px 0;
  border-top: 1px solid var(--border-light);
}

.article-categories {
  margin-bottom: 20px;
}

.article-categories strong {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  color: var(--text-primary);
  margin-right: 10px;
}

.category-link {
  display: inline-block;
  background: var(--primary-color);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 14px;
  margin-right: 10px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.category-link:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

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

.back-link {
  display: inline-flex;
  align-items: center;
  color: var(--primary-color);
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-color);
}

.back-link:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

@media (max-width: 768px) {
  .article-title {
    font-size: 32px;
  }
  
  .article-excerpt {
    font-size: 18px;
  }
  
  .article-content {
    padding: 30px 20px;
    margin: 0 15px 30px;
  }
  
  .article-content h2 {
    font-size: 24px;
  }
  
  .article-content h3 {
    font-size: 20px;
  }
  
  .back-link {
    padding: 12px 24px;
    font-size: 14px;
  }
}

/* News Section */
.news {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.news-header {
  text-align: center;
  margin-bottom: 60px;
}

.news-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.news-item {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.news-image {
  position: relative;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.news-item:hover .news-image img {
  transform: scale(1.05);
}

.news-content {
  padding: 30px;
}

.news-meta {
  margin-bottom: 15px;
}

.news-date {
  font-family: var(--second-family);
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

.news-item-title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 15px;
}

.news-item-title a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.news-item-title a:hover {
  color: var(--primary-color);
}

.news-excerpt {
  font-family: var(--second-family);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.news-read-more {
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 14px;
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.news-read-more:hover {
  color: var(--primary-dark);
}

@media (max-width: 768px) {
  .news {
    padding: 60px 0;
  }
  
  .news-title {
    font-size: 36px;
  }
  
  .news-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .news-content {
    padding: 20px;
  }
  
  .news-item-title {
    font-size: 18px;
  }
}

/* Single Post Styles */


.post-header {
  margin-bottom: 50px;
}

.post-meta {
  margin-bottom: 20px;
}

.post-date {
  font-family: var(--second-family);
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

.post-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 30px;
}

.post-featured-image {
  margin-bottom: 40px;
}

.post-featured-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
}

.post-content {
  font-family: var(--second-family);
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: 50px;
}

.post-content h2 {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 28px;
  margin: 40px 0 20px 0;
  color: var(--text-primary);
}

.post-content h3 {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 24px;
  margin: 30px 0 15px 0;
  color: var(--text-primary);
}

.post-content p {
  margin-bottom: 20px;
}

.post-navigation {
  border-top: 1px solid var(--border-light);
  padding-top: 40px;
}

.post-navigation .nav-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.post-navigation .nav-previous,
.post-navigation .nav-next {
  flex: 1;
}

.post-navigation .nav-next {
  text-align: right;
}

.post-navigation a {
  display: inline-block;
  padding: 12px 24px;
  background: var(--primary-color);
  color: var(--white);
  text-decoration: none;
  border-radius: 8px;
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.post-navigation a:hover {
  background: var(--primary-dark);
}

/* Archive Posts Styles */
.archive-posts {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.archive-header {
  text-align: center;
  margin-bottom: 60px;
}

.archive-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.archive-description {
  font-family: var(--second-family);
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.post-item {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.post-image {
  position: relative;
  overflow: hidden;
}

.post-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.post-item:hover .post-image img {
  transform: scale(1.05);
}

.post-content {
  padding: 30px;
}

.post-meta {
  margin-bottom: 15px;
}

.post-date {
  font-family: var(--second-family);
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

.post-title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 15px;
}

.post-title a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.post-title a:hover {
  color: var(--primary-color);
}

.post-excerpt {
  font-family: var(--second-family);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.post-read-more {
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 14px;
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.post-read-more:hover {
  color: var(--primary-dark);
}

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

.posts-navigation .nav-links {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.posts-navigation a {
  display: inline-block;
  padding: 12px 24px;
  background: var(--primary-color);
  color: var(--white);
  text-decoration: none;
  border-radius: 8px;
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.posts-navigation a:hover {
  background: var(--primary-dark);
}

.no-posts {
  padding: 80px 0;
  text-align: center;
  background-color: var(--bg-light);
}

.no-posts h1 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 36px;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.no-posts p {
  font-family: var(--second-family);
  font-size: 18px;
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .single-post {
    padding: 60px 0;
  }
  
  .post-title {
    font-size: 36px;
  }
  
  .post-featured-image img {
    height: 250px;
  }
  
  .post-content {
    font-size: 16px;
  }
  
  .post-content h2 {
    font-size: 24px;
  }
  
  .post-content h3 {
    font-size: 20px;
  }
  
  .archive-posts {
    padding: 60px 0;
  }
  
  .archive-title {
    font-size: 36px;
  }
  
  .archive-description {
    font-size: 16px;
  }
  
  .posts-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .post-content {
    padding: 20px;
  }
  
  .post-title {
    font-size: 18px;
  }
  
  .post-navigation .nav-links {
    flex-direction: column;
    gap: 20px;
  }
  
  .post-navigation .nav-next {
    text-align: center;
  }
}




