* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  background: #f9fafb;
  color: #111827;
  line-height: 1.5;
  scroll-behavior: smooth;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
  box-shadow: 0 12px 24px -12px rgba(0, 0, 0, 0.1);
}

/* =======================
   NAVIGATION - НЕ НАЛЕЗАЕТ
   ======================= */
nav {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.05), 0 4px 16px rgba(0, 0, 0, 0.02);
  position: sticky;
  top: 0;
  z-index: 100;
  height: auto;
  min-height: 70px;
  padding: 0 16px;
}

.nav-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  position: relative;
}

.brand-logo {
  position: relative !important;
  left: auto !important;
  transform: none !important;
  font-size: 1.3rem;
  font-weight: 600;
  background: linear-gradient(135deg, #1e3c72 0%, #2b4c7c 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  white-space: nowrap;
}

.sidenav-trigger {
  display: none;
  color: #1e293b;
}

.sidenav-trigger i {
  font-size: 28px;
}

nav ul.right {
  display: flex;
  gap: 8px;
  margin: 0;
  height: auto;
}

nav ul.right li {
  float: none;
  display: inline-block;
}

nav ul.right li a {
  color: #1f2937;
  font-weight: 500;
  border-radius: 40px;
  padding: 8px 18px;
  transition: 0.2s;
}

nav ul.right li a:hover {
  background: #eef2ff;
  color: #1e3c72;
}

.sidenav {
  background: #ffffff;
  padding-top: 20px;
  width: 280px;
}

.sidenav li a {
  color: #1f2937;
  font-weight: 500;
  padding: 14px 24px;
}

@media (max-width: 992px) {
  .brand-logo {
    font-size: 1rem;
  }
  
  .sidenav-trigger {
    display: block;
  }
  
  nav ul.right {
    display: none;
  }
}

@media (min-width: 993px) {
  .sidenav-trigger {
    display: none !important;
  }
}

/* =======================
   HERO SECTION
   ======================= */
.hero {
  position: relative;
  border-radius: 0 0 48px 48px;
  overflow: hidden;
  background-size: cover !important;
  background-position: center !important;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.25rem;
  color: white;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, #1e3c72 0%, #2b4c7c 100%);
  color: white;
  padding: 12px 32px;
  border-radius: 40px;
  font-weight: 600;
  border: none;
  transition: all 0.25s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  display: inline-block;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.btn-secondary {
  background: transparent;
  border: 2px solid white;
  color: white;
  padding: 12px 32px;
  border-radius: 40px;
  font-weight: 600;
  transition: all 0.25s ease;
  cursor: pointer;
  display: inline-block;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* =======================
   TESTIMONIALS SLIDER
   ======================= */
.testimonials {
  background: linear-gradient(135deg, #1e3c72 0%, #2b4c7c 100%);
  border-radius: 48px;
  margin: 40px 0;
  padding: 70px 0;
}

.testimonials h2 {
  color: white;
  text-align: center;
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 48px;
}

.slider-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 32px;
}

.testimonial-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
  flex: 0 0 100%;
  padding: 48px 32px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border-radius: 32px;
  text-align: center;
  box-sizing: border-box;
}

.testimonial-slide blockquote {
  margin: 0;
}

.testimonial-slide p {
  font-size: 1.2rem;
  font-style: italic;
  color: white;
  line-height: 1.6;
  margin-bottom: 24px;
}

.testimonial-slide cite {
  font-style: normal;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: 0.2s;
  color: #1e3c72;
  font-size: 1.5rem;
  font-weight: bold;
}

.slider-btn:hover {
  background: #f8fafc;
  transform: translateY(-50%) scale(1.05);
}

.slider-btn.prev {
  left: 16px;
}

.slider-btn.next {
  right: 16px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: 0.2s;
}

.dot.active {
  background: white;
  width: 28px;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .slider-btn {
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
  }
  
  .slider-btn.prev {
    left: 8px;
  }
  
  .slider-btn.next {
    right: 8px;
  }
  
  .testimonial-slide {
    padding: 24px;
  }
  
  .testimonial-slide p {
    font-size: 1rem;
  }
}

/* =======================
   SERVICES TABLE
   ======================= */
.services-section {
  background: white;
  padding: 70px 0;
  border-radius: 48px;
  margin: 40px 0;
}

.services-section h2 {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 40px;
  color: #1e293b;
}

.highlight {
  background: white;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.highlight thead th {
  background: linear-gradient(135deg, #1e3c72 0%, #2b4c7c 100%);
  color: white;
  font-weight: 600;
  padding: 16px;
}

.highlight tbody td {
  padding: 16px;
  border-bottom: 1px solid #e5e7eb;
  color: #4b5563;
}

.highlight tbody tr:hover td {
  background: #f8fafc;
}

/* =======================
   ADVANTAGES SECTION
   ======================= */
#our-advantages {
  background: #f1f5f9;
  padding: 70px 0;
  border-radius: 48px;
  margin: 40px 0;
}

#our-advantages .section-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 48px;
  color: #1e293b;
}

.advantage-item {
  text-align: center;
  padding: 24px;
  transition: all 0.25s ease;
}

.advantage-item:hover {
  transform: translateY(-6px);
}

.advantage-item .icon {
  margin-bottom: 20px;
}

.advantage-item .icon i {
  font-size: 2.5rem;
  color: #1e3c72;
}

.advantage-item h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: #1e293b;
}

.advantage-item p {
  color: #4b5563;
  line-height: 1.5;
}

/* =======================
   CONTACT FORM
   ======================= */
#contact-form {
  background: white;
  padding: 70px 0;
  border-radius: 48px;
  margin: 40px auto;
}

#contact-form h2 {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 40px;
  color: #1e293b;
}

.input-field input,
.input-field textarea {
  border-bottom: 1px solid #cbd5e1 !important;
  box-shadow: none !important;
  color: #0f172a;
}

.input-field label {
  color: #5b6e8c;
}

.btn {
  background: linear-gradient(135deg, #1e3c72 0%, #2b4c7c 100%);
  border-radius: 40px;
  height: 48px;
  line-height: 48px;
  padding: 0 32px;
  font-weight: 500;
  width: auto;
  transition: all 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(30, 60, 114, 0.3);
}

/* =======================
   MAP SECTION
   ======================= */
section[style*="height:439px;"] {
  margin: 48px 0;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.1);
  display: flex !important;
  flex-wrap: wrap;
}

section[style*="height:439px;"] > div:first-child {
  flex: 1;
  min-height: 400px;
}

section[style*="height:439px;"] iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
}

section[style*="height:439px;"] > div:last-child {
  flex: 1;
  background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%) !important;
}

section[style*="height:439px;"] h1 {
  font-size: 2rem;
  color: #1e3c72;
  line-height: 1.3;
  padding: 24px;
  text-align: center;
}

/* =======================
   ABOUT SECTION
   ======================= */
#about {
  background: white;
  border-radius: 48px;
  margin: 40px 0;
  padding: 70px 0;
}

#about h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 24px;
}

#about p {
  color: #4b5563;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

#about .responsive-img {
  border-radius: 28px;
  transition: transform 0.3s ease;
}

#about .responsive-img:hover {
  transform: scale(1.01);
}

/* =======================
   FOOTER
   ======================= */
.page-footer {
  background: #0f172a !important;
  border-radius: 48px 48px 0 0;
  margin-top: 48px;
  padding: 48px 0 0;
}

.page-footer h5 {
  color: white;
  font-weight: 600;
  margin-bottom: 20px;
}

.page-footer p,
.page-footer li,
.page-footer a {
  color: #cbd5e1;
  transition: color 0.2s ease;
}

.page-footer a:hover {
  color: #60a5fa !important;
}

.footer-copyright {
  background: rgba(0, 0, 0, 0.2);
  padding: 20px 0;
  margin-top: 32px;
  color: #94a3b8;
  text-align: center;
}

/* =======================
   COOKIE BANNER
   ======================= */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: #1f2937;
  backdrop-filter: blur(16px);
  color: #f3f4f6;
  padding: 20px 28px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  z-index: 1000;
  box-shadow: 0 25px 40px -12px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.4s ease, opacity 0.4s ease;
  transform: translateY(0);
  opacity: 1;
}

.cookie-banner.hide {
  transform: translateY(150%);
  opacity: 0;
  pointer-events: none;
}

.cookie-banner p {
  margin: 0;
  flex: 2;
  font-size: 0.9rem;
  line-height: 1.5;
}

.cookie-banner button {
  background: linear-gradient(135deg, #1e3c72 0%, #2b4c7c 100%);
  color: white;
  border: none;
  padding: 10px 28px;
  border-radius: 40px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.cookie-banner button:hover {
  transform: scale(0.98);
  opacity: 0.9;
}

/* =======================
   MODAL
   ======================= */
.modal {
  border-radius: 32px;
  max-width: 500px;
  width: 90%;
}

.modal .modal-content {
  padding: 32px;
  border-radius: 32px;
}

.modal h4 {
  margin-bottom: 24px;
  color: #1e293b;
}

.modal .btn {
  width: 100%;
  margin-top: 16px;
}

.modal-close {
  margin-top: 16px;
  width: 100%;
  background: #e5e7eb;
  border-radius: 40px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  display: block;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.modal-close:hover {
  background: #cbd5e1;
}

#thank-modal .modal-content {
  text-align: center;
}

#thank-modal .btn-secondary {
  background: linear-gradient(135deg, #1e3c72 0%, #2b4c7c 100%);
  color: white;
  border: none;
  padding: 12px 28px;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.2s ease;
}

#thank-modal .btn-secondary:hover {
  transform: translateY(-2px);
}

/* =======================
   RESPONSIVE
   ======================= */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .btn-primary, .btn-secondary {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .cookie-banner {
    flex-direction: column;
    text-align: center;
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 20px;
  }
  
  .cookie-banner button {
    width: 100%;
  }
  
  section[style*="height:439px;"] {
    flex-direction: column;
    height: auto !important;
  }
  
  section[style*="height:439px;"] iframe {
    height: 300px;
  }
  
  section[style*="height:439px;"] h1 {
    font-size: 1.5rem;
    padding: 24px;
  }
  
  .advantage-item {
    margin-bottom: 20px;
  }
  
  #about .row {
    flex-direction: column;
    gap: 32px;
  }
}







 .cookie-banner {
            position: fixed;
            bottom: 10px;
            right: 10px;
            width: 300px;
            background-color: #444;
            color: #fff;
            padding: 20px;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
            border-radius: 8px;
            box-sizing: border-box;
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
        }
        .cookie-banner.show {
            opacity: 1;
        }
        .cookie-banner p {
            margin: 0;
            margin-bottom: 10px;
            font-size: 14px;
        }
        .cookie-banner button {
            background-color: #007bff;
            color: white;
            border: none;
            padding: 10px 15px;
            cursor: pointer;
            border-radius: 5px;
            transition: background-color 0.3s ease;
        }
        .cookie-banner button:hover {
            background-color: #0056b3;
        }
* {
    background-size: cover;
    background-position: center center;
}
body {
	margin: 0px;
}
