/* start global classes */
:root {

  /* body bg color */
  --bodyColor: #F7F7F7;

  /* primary brand color */
  --primary-color: #1F1F1F;

  /* white color */
  --white: #fff;

  /* grey color */
  --grey: #656565;

  /* border radius */
  --border-radius: 0;
}

body.dark-mode {

  /* body bg color */
  --bodyColor: #161616;

  /* primary brand color */
  --primary-color: #eeeeee;

  /* white color */
  --white: #111111;

  /* grey color */
  --grey: #b9b9b9;
}

.header-clark {
  background: #7abb02;
  border-bottom: 2px solid #1e3d59;
  font-family: 'Segoe UI', sans-serif;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 22px;
  font-weight: 600;
  color: #1e3d59;
}

.logo img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

nav ul li a {
  text-decoration: none;
  color: #1e3d59;
  font-size: 16px;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #ff6f61;
}

/* Mobile */
.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  width: 28px;
  height: 22px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  display: block;
  height: 3px;
  background: #1e3d59;
  border-radius: 2px;
  content: '';
  transition: all 0.3s;
}

.nav-toggle-label span::before {
  transform: translateY(-8px);
}

.nav-toggle-label span::after {
  transform: translateY(5px);
}

@media (max-width: 768px) {
  nav {
    position: absolute;
    top: 65px;
    right: 0;
    width: 220px;
    background: #f8f9fa;
    border-left: 2px solid #1e3d59;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1000;

  }

  nav ul {
    flex-direction: column;
    gap: 0;
    background-color: #7abb02;

  }

  nav ul li {
    border-bottom: 1px solid #ddd;
  }

  nav ul li a {
    display: block;
    padding: 12px 20px;
  }

  .nav-toggle:checked~nav {
    transform: translateX(0);
  }

  .nav-toggle-label {
    display: flex;
    margin-top: 10px;
  }
}

.switch-button {
  border-radius: var(--border-radius);
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  outline: none;
  width: 45px;
  height: 45px;
  padding: 1rem;
  border: .5px solid var(--grey);
}

#mode-icon {
  color: var(--primary-color);
}

.hero-header-v2 {
  background-color: var(--color-blue-dark);
  /* Темний фон для контрасту */
  color: white;
  position: relative;
  overflow: hidden;
}

.--full-height-section {
  min-height: 80vh;
  /* Використання vh для сучасного банера */
  display: flex;
  align-items: center;
}

.hero__layout-flex {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 60px 0;
}

.hero__content-side {
  flex: 1;
  max-width: 55%;
}

.hero__media-side {
  flex: 1;
  max-width: 45%;
}

.headline-display {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 15px;
}

.HoIjU4UcvP {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 25px;
}

.__text-gradient-primary {
  /* Імітація текстового градієнта */
  color: var(--color-warning);
}

.podGSKgKh4 {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.b5plR0VgIY {
  display: flex;
  gap: 15px;
}

.TGXi9BOAoz {
  padding: 12px 25px;
  border-radius: 10px;
  /* Сучасний скруглений стиль */
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s;
}

.TGXi9BOAoz.--style-filled-primary {
  background-color: #7abb02;
  color: white;
  border: 2px solid var(--color-primary);
}

.TGXi9BOAoz.--style-filled-primary:hover {
  background-color: var(--color-info);
  border-color: var(--color-info);
}

.TGXi9BOAoz.--style-outline-light {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.TGXi9BOAoz.--style-outline-light:hover {
  background-color: white;
  color: var(--color-blue-dark);
}

.figure__image-responsive {
  width: 100%;
  height: auto;
  display: block;
}

.__border-rounded-soft {
  border-radius: 12px;
}

/* Адаптивність банера */
@media (max-width: 992px) {
  .hero__layout-flex {
    flex-direction: column;
    text-align: center;
  }

  .hero__content-side,
  .hero__media-side {
    max-width: 100%;
    flex: none;
  }

  .b5plR0VgIY {
    justify-content: center;
  }

  .headline-display {
    font-size: 2.5rem;
  }
}

/* Базові стилі та шрифти */
:root {
  --color-primary: #007bff;
  --color-secondary: #6c757d;
  --color-success: #28a745;
  --color-info: #17a2b8;
  --color-warning: #ffc107;
  --color-danger: #dc3545;
  --color-blue-dark: #003366;
  --color-grey-dark: #343a40;
  --color-light-alpha: rgba(255, 255, 255, 0.85);
  --bg-dark-texture: #212529;
  --bg-off-white: #f8f9fa;
  --spacing-30: 30px;
}



.site-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Секція та Заголовки */
.content-section {
  padding: 80px 0;
}

.zeOWkA7SfV {
  padding: 100px 0;
}

.SO4xgpwNE6 {
  font-size: 2.5rem;
  font-weight: 700;
}

.title-secondary {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.subtitle-text {
  font-size: 1.15rem;
  max-width: 800px;
  margin: 15px auto 0;
}

.cvA0FnlygN.__center-aligned {
  text-align: center;
  margin-bottom: 60px;
}

/* ----------------------------------------------------------
   FEATURE GRID СТИЛІ
   ---------------------------------------------------------- */
.oEDfGKg6lL {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-30);
}

.feature-card {
  padding: 40px;
  border-radius: 12px;
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
}

.card--gradient-blue {
  background: linear-gradient(135deg, #007bff, #003366);
  border: 1px solid #0056b3;
}

.card--gradient-green {
  background: linear-gradient(135deg, #28a745, #1d7b30);
  border: 1px solid #1e7e34;
}

.card--gradient-purple {
  background: linear-gradient(135deg, #6f42c1, #563d7c);
  border: 1px solid #5a3d8c;
}

.card__icon-box {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 50%;
  margin-bottom: 20px;
  color: white;
  /* Іконки білі */
}

.gygAy7P76Q {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

/* ----------------------------------------------------------
   ABOUT US СТИЛІ (MEDIA BLOCK)
   ---------------------------------------------------------- */
.P8LNeMAfnL {
  display: flex;
  gap: 50px;
  align-items: center;
}

.P8LNeMAfnL.__split-layout>* {
  flex: 1;
}

.P8LNeMAfnL.__split-layout-reverse {
  flex-direction: row-reverse;
}

.DoUziqjGC6 {
  position: relative;
}

.ljwMFiNZOE {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.image-caption {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.6);
  padding: 5px 15px;
  border-radius: 4px;
  font-size: 0.9rem;
}

.button-action {
  display: inline-block;
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s;
  margin-top: 20px;
}

.button-action.--style-filled-blue {
  background-color: #7abb02;
  color: white;
}

.button-action.--style-filled-blue:hover {
  background-color: var(--color-blue-dark);
}

/* ----------------------------------------------------------
   SERVICE CARD STACK (Секція 4)
   ---------------------------------------------------------- */
.service-card-stack {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
}

.service-card {
  padding: 25px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  border-left: 8px solid;
  height: 100%;
  /* Для рівномірної висоти */
}

.card__header-box {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.gygAy7P76Q {
  color: #e6e6e6;
}

.utility-icon {
  font-size: 1.5rem;
}

.wcgMyExX1x {
  border-color: var(--color-info);
}

.--border-left-thick-warning {
  border-color: var(--color-warning);
}

.nTMDZR7kW5 {
  border-color: var(--color-success);
}

.CtPL0VoanP {
  border-color: var(--color-primary);
}

.--border-left-thick-danger {
  border-color: var(--color-danger);
}

.nPc1LMRTQI {
  border-color: var(--color-secondary);
}


/* ----------------------------------------------------------
   INSIGHTS ARCHIVE (Секція 5)
   ---------------------------------------------------------- */
.list-article-stack {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.media-list-item {
  display: flex;
  background-color: #343a40;
  /* Темний фон для статті */
  border-radius: 8px;
  overflow: hidden;
  color: white;
  border-left: 5px solid;
}

.item__media-side {
  width: 30%;
  flex-shrink: 0;
}

.item__text-side {
  padding: 25px 35px;
}

.item__title {
  font-size: 1.7rem;
  margin-top: 0;
  margin-bottom: 10px;
}

.suUphcEkO8 {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.--border-left-primary {
  border-color: var(--color-primary);
}

.--border-left-success {
  border-color: var(--color-success);
}

.--border-left-info {
  border-color: var(--color-info);
}


/* Адаптивність (для невеликих екранів) */
@media (max-width: 992px) {
  .P8LNeMAfnL {
    flex-direction: column;
  }

  .P8LNeMAfnL.__split-layout-reverse {
    flex-direction: column;
  }

  .item__media-side {
    width: 100%;
    height: 200px;
  }

  .media-list-item {
    flex-direction: column;
  }
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Outfit', sans-serif;
  color: var(--primary-color);
  background-color: var(--bodyColor);
  text-align: left;
  position: relative;
  overflow-x: hidden;
  width: 100%;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
  height: 100%;
}

::selection {
  color: var(--white);
  background-color: var(--primary-color);
}

.grey-text {
  color: var(--grey, #cecece) !important;
}

.b-radius {
  border-radius: var(--border-radius);
}

.heading-1,
.heading-2,
.heading-3 {
  color: var(--primary-color);
  text-transform: capitalize;
}

.heading-1 {
  font-size: 48px;
  font-weight: bold;
  line-height: normal;
}

.heading-2 {
  font-size: 26px;
  font-weight: bold;
}

.heading-3 {
  font-size: 20px;
  font-weight: 600;
}


.body-1 {
  font-size: 18px;
  font-weight: 300;
  color: var(--grey);
  font-family: 'Outfit', sans-serif;
}

.body-2 {
  font-size: 16px;
  font-weight: 300;
  color: var(--grey);
  font-family: 'Outfit', sans-serif;
}

.breadcrubs .content,
.breadcrubs .content .container {
  background-color: #7abb02 !important;
  color: var(--bodyColor) !important;
}

.breadcrubs .content h1 {
  color: var(--white);
}

.breadcrubs .content p {
  color: #b4b1b1;
}

a {
  text-decoration: none;
  color: var(--primary-color);
}

input,
textarea {
  font-family: 'Outfit', sans-serif !important;
}

.gap-8 {
  gap: 8px;
}

.gap-16 {
  gap: 16px;
}

.gap-32 {
  gap: 32px;
}

.zktla1nIXx {
  gap: 64px;
}

.bg-box {
  background-color: var(--white);
  border-radius: var(--border-radius);
  border: var(--grey) .5px solid;
}

@media (max-width: 990px) {
  .heading-1 {
    font-size: 36px;
  }

  .heading-2 {
    font-size: 24px;
  }

  .heading-3 {
    font-size: 18px;
  }

  .body-1 {
    font-size: 16px;
  }

  .body-2 {
    font-size: 14px;
  }

  .gap-8 {
    gap: 4px;
  }

  .gap-16 {
    gap: 8px;
  }

  .gap-32 {
    gap: 16px;
  }

  .padding-32 {
    padding: 16px;
  }

  .padding-16 {
    padding: 8px;
  }

  .padding-8 {
    padding: 4px;
  }

  .icon-lg {
    font-size: 48px;
  }

  .icon-md {
    font-size: 32px;
  }

  .icon-sm {
    font-size: 26px;
  }

  .section {
    padding-block: 3rem;
  }

}

a {
  text-decoration: none;
  text-transform: capitalize;
}

.w-fit {
  width: fit-content;
}

.padding-32 {
  padding: 32px;
}

.padding-16 {
  padding: 16px;
}

.padding-8 {
  padding: 8px;
}

.icon-lg {
  font-size: 48px;
}

.icon-md {
  font-size: 32px;
}

.icon-sm {
  font-size: 24px;
}

p {
  color: var(--grey);
  font-family: 'Outfit', sans-serif;
}

.section {
  padding-block: 6rem;
}



input,
textarea {
  border: 0;
  outline: 0;
  color: var(--grey);
  background-color: var(--white);
}

/* start buttons style */
.btn,
.btn-outline {
  background-color: #7abb02;
  color: var(--white);
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  border-radius: var(--border-radius);
  padding: 10px 28px;
  font-size: 16px;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  text-transform: capitalize;
  align-items: center;
  text-align: center;
  letter-spacing: .5px;
  outline: none;
  font-weight: bold;
  transition: all 0.3s ease-in-out 0s;
  cursor: pointer;
  z-index: 1;
  transition: color 300ms ease-in-out;
}


.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border: .5px solid var(--primary-color);
}

.btn:hover {
  color: var(--primary-color);
  border: .5px solid var(--primary-color);
}

.learn-more {
  text-transform: capitalize;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  font-size: 18px;
  font-family: 'Outfit', sans-serif;
  font-weight: bold;
  cursor: pointer;
  border: none;
  background-color: transparent;
}

.learn-more i {
  font-size: 22px;
  margin-left: 8px;
}

.learn-more:hover {
  letter-spacing: 1.5px;
  transition: all .5s;
  color: var(--grey);
}

/* end main button style */


ul {
  list-style: none;
}

img {
  width: 100%;
}


/* end global classes */

/* ==== start  preloader style  ===== */

.pace {
  pointer-events: none;
  user-select: none;
  z-index: 9999;
  position: fixed;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 400px;
  border: 0px;
  height: 1.5px;
  overflow: hidden;
  background: var(--grey);
}

.pace .pace-progress {
  box-sizing: border-box;
  transform: translate3d(0, 0, 0);
  max-width: 400px;
  position: fixed;
  z-index: 2000;
  display: block;
  position: absolute;
  top: 0;
  right: 100%;
  height: 100%;
  width: 100%;
  background: var(--bodyColor);
}

.pace.pace-inactive {
  display: none;
}

#preloader {
  z-index: 999;
  width: 100%;
  height: 100vh;
  background: var(--primary-color);
  overflow: hidden;
  position: fixed;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.p {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 32px;
  color: var(--bodyColor);
}

/* ==== end  preloader style  ===== */

/* ======== start scroll-to-top button style  =========== */

#progress {
  position: fixed;
  bottom: 20px;
  right: 10px;
  height: 70px;
  width: 70px;
  display: none;
  place-items: center;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 999;
}

#progress i {
  color: var(--grey);
  font-size: 20px;
}

#progress-value {
  display: block;
  height: calc(100% - 15px);
  width: calc(100% - 15px);
  border-radius: 50%;
  display: grid;
  background-color: var(--bodyColor);
  place-items: center;
  font-size: 35px;
  color: var(--blueColor);
}

/* ======== end scroll-to-top button style  =========== */

/*================== start navbar section ==================*/

.navbar-toggler,
.navbar-toggler:active,
.navbar-toggler:focus {
  border: none;
}

.header {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 99;
  width: 100%;
}

.navbar {
  background-color: rgba(245, 245, 245, 0.678);
  backdrop-filter: blur(8px);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 99;
  width: 100%;
}

.dark-mode .navbar {
  background-color: rgba(22, 22, 22, 0.623);
}

.navbar i {
  font-size: 20px;
  color: var(--grey);
}

.navbar>* {
  z-index: 999;
}

.navbar .logo {
  width: 9rem;
}

.navbar ul li a {
  font-weight: 600;
  color: var(--grey);
  font-family: 'Outfit', sans-serif;
}

.navbar ul li a:hover,
.navbar ul li a.active {
  color: var(--primary-color) !important;
}

.navbar i {
  font-size: 24px;
  color: var(--grey);
  z-index: 999 !important;
}



/*================== End navbar section ==================*/

/*================== start hero section ==================*/
.hero {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}


.hero .heading-hero {
  font-size: 56px;
}


@media (max-width: 990px) {
  .hero .heading-hero {
    font-size: 40px;
  }
}

@media (max-width: 720px) {
  .hero .heading-1 {
    font-size: 30px;
  }
}

/*================== end hero section =====================*/

.cta {
  height: 450px;
}

.cta h2,
.cta p {
  z-index: 9;
}

.cta img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.cta .backdrop {
  background-color: rgba(245, 245, 245, 0.39);
  backdrop-filter: blur(8px);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 1;
  left: 0;
}

/*============== Start testimonials section ==========*/

.testimonials i {
  font-size: 20px;
  color: rgb(223, 223, 0);
}

.testimonials .img {
  width: 55px;
  height: 55px;
}

/*============== End testimonials section ==========*/


/*============== start FAQ section ==========*/


.faq .btn {
  padding: 0;
  margin: 0;
  width: 100%;
  background-color: transparent !important;
  border: none !important;
}

.rotate-icon {
  transition: transform 0.3s ease-in-out;
}

.rotate-icon.rotated {
  transform: rotate(180deg);
}

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

/* Heading */
h2 {
  text-align: center;
  margin: 50px 0 30px;
  font-size: 2.5rem;
  color: #34495e;
  position: relative;
}


/* Services Section */
.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 0 20px;
}

.service-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s, box-shadow 0.4s;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-content {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-content h3 {
  margin: 0 0 12px;
  color: #7abb02;
  font-size: 1.5rem;
}

.service-content p {
  flex: 1;
  line-height: 1.6;
}

.gjj0MS9RCP {
  font-weight: 700;
  color: #c0392b;
  margin: 15px 0;
  font-size: 1.1rem;
}

.btn {
  display: inline-block;
  background: #7abb02;
  color: #fff;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 12px;
  transition: all 0.3s;
  text-align: center;
}

.btn:hover {
  background: #d35400;
  transform: translateY(-2px);
}

/* Pricing Plans */
.plans-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin: 80px 20px;
}

.plan-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  flex: 1 1 300px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s, box-shadow 0.4s;
}

.plan-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.plan-card h3 {
  margin-top: 0;
  color: #7abb02;
  font-size: 1.8rem;
}

.plan-card ul {
  margin: 20px 0;
  padding-left: 20px;
}

.plan-card ul li {
  margin-bottom: 10px;
  position: relative;
  font-size: 0.95rem;
}

.plan-card ul li::before {
  content: "✔";
  color: #7abb02;
  position: absolute;
  left: -20px;
}

/* Reviews */
.mGSRI2nP59 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 0 20px;
}

.review-card {
  background: #fff;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s, box-shadow 0.4s;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.avatar {
  width: 50px;
  height: 50px;
  background: #7abb02;
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
}

.mGSRI2nP59 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 0 20px;
}

.review-card {
  background: #fff;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s, box-shadow 0.4s;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.avatar {
  width: 50px;
  height: 50px;
  background: #7abb02;
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
}

/* Mobile Version */
@media (max-width: 767px) {
  .mGSRI2nP59 {
    grid-template-columns: 1fr;
    /* один відгук на ряд */
    gap: 20px;
    padding: 0 10px;
  }

  .review-card {
    padding: 20px;
    border-radius: 15px;
  }

  .review-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .avatar {
    width: 45px;
    height: 45px;
    font-size: 1rem;
    margin-right: 0;
  }
}

/* Accordion */
.accordion {
  max-width: 1200px;
  margin: 80px auto;
}

.accordion-item {
  margin-bottom: 20px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.accordion-item input {
  display: none;
}

.accordion-item label {
  display: flex;
  justify-content: space-between;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: bold;
  background-color: #7abb02;
  color: #fff;
  transition: background 0.3s;
  user-select: none;
}

.accordion-item label:hover {
  background-color: #d35400;
}

.accordion-item label .icon {
  transition: transform 0.3s;
  font-size: 1.3rem;
}

.accordion-item input:checked+label .icon {
  transform: rotate(45deg);
}

.accordion-item .content {
  max-height: 0;
  overflow: hidden;
  background-color: #fefcf7;
  transition: max-height 0.5s ease, padding 0.5s ease;
  padding: 0 25px;
}

.accordion-item input:checked~.content {
  max-height: 300px;
  padding: 18px 25px;
}

.accordion-item .content p {
  margin: 0;
  line-height: 1.6;
}

/*============== End FAQ section ==========*/

/*============== Start contact section ==========*/

.contact input,
.contact textarea {
  background-color: var(--bodyColor);
  border: solid var(--grey) .5px;
}

.contact .container {
  background-color: var(--white);
  border-radius: var(--border-radius);
}

.contact .icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: var(--border-radius);
}

.done-msg {
  color: var(--white);
  font-family: 'Outfit', 'sans serif';
}

.toast-success {
  background-color: #0d9700 !important;
  opacity: 1 !important;
}

.toast-error {
  background-color: #8b0500 !important;
  opacity: 1 !important;
}

.toast {
  border-radius: var(--border-radius) !important;
  color: #F7F7F7 !important;
  font-family: 'Outfit', sans-serif;
  box-shadow: none !important;
}

.contact-map {
  width: 100%;
  height: 300px;
}

/*============== End contact section ==========*/

/*============== start Footer section ==========*/

.footer {
  background-color: var(--primary-color);
  color: var(--bodyColor);
}

.footer p {
  color: var(--bodyColor);
}

.footer h2 {
  color: var(--bodyColor);
}

.footer-link {
  font-size: 16px;
  color: var(--grey);
  font-family: 'Outfit', sans-serif;
}

.footer a {
  font-size: 16px;
  font-family: 'Outfit', sans-serif;
  color: var(--bodyColor);
}


.copy {
  font-size: 14px;
  color: var(--bodyColor);
}

.fzf {
  height: 95vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Modern footer styles */
.prime-footer {
  background: linear-gradient(145deg, #1c2526 0%, #2d3839 100%);
  color: #e6e6e6;
  padding: 70px 0 40px;
  font-family: 'Roboto', sans-serif;
  position: relative;
  overflow: hidden;
}

.prime-footer-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.prime-footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.MydD9R2Lw7 {
  display: flex;
  flex-direction: column;
}

.MTXO3xQaDM {
  font-size: 2.2em;
  font-weight: 800;
  color: #e6e6e6;
  text-decoration: none;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

.MTXO3xQaDM:hover {
  color: #00b7eb;
}

.yU7kZPfXss {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.yU7kZPfXss img {
  height: 40px;
  width: 40px;
  margin-right: 15px;
}

.yU7kZPfXss span {
  font-size: 2em;
  font-weight: 700;
  color: #e6e6e6;
}

.prime-description {
  font-size: 1em;
  max-width: 320px;
  margin-bottom: 25px;
  line-height: 1.7;
}

.prime-contact-entry {
  font-size: 0.95em;
  margin-bottom: 12px;
}

.prime-contact-anchor {
  color: #e6e6e6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.prime-contact-anchor:hover {
  color: #00b7eb;
}

.prime-social-cluster {
  display: flex;
  gap: 20px;
  margin-top: 25px;
}

.prime-social-cluster svg {
  width: 28px;
  height: 28px;
  fill: #e6e6e6;
  transition: fill 0.3s ease, transform 0.3s ease;
}

.prime-social-cluster svg:hover {
  fill: #00b7eb;
  transform: scale(1.1);
}

.prime-nav-segment {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.prime-nav-anchor {
  color: #e6e6e6;
  text-decoration: none;
  font-size: 1em;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.prime-nav-anchor:hover {
  color: #00b7eb;
  padding-left: 5px;
}

.prime-divider {
  border: none;
  border-top: 1px solid #3a4647;
  margin: 0;
}

.prime-copyright-zone {
  text-align: center;
  padding-top: 25px;
  font-size: 0.9em;
  color: #b0b0b0;
}

/* Desktop enhancements */
@media (min-width: 993px) {
  .prime-footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
    align-items: start;
  }

  .MydD9R2Lw7 {
    padding-right: 30px;
  }

  .prime-nav-segment {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .prime-nav-anchor {
    font-size: 1.1em;
  }

  .prime-footer-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, #00b7eb, transparent);
  }
}

/* Responsive adaptations for smaller screens */
@media (max-width: 992px) {
  .prime-footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .MydD9R2Lw7 {
    align-items: center;
  }

  .yU7kZPfXss {
    justify-content: center;
  }

  .prime-description {
    max-width: 100%;
  }

  .prime-social-cluster {
    justify-content: center;
  }

  .prime-nav-segment {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
}

@media (max-width: 576px) {

  .MTXO3xQaDM,
  .yU7kZPfXss span {
    font-size: 1.8em;
  }

  .prime-description,
  .prime-contact-entry {
    font-size: 0.9em;
  }

  .prime-nav-anchor {
    font-size: 0.95em;
  }

  .prime-social-cluster svg {
    width: 24px;
    height: 24px;
  }
}

.uni-contact-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f6f8fa 0%, #e0e7ff 100%);
  font-family: 'Poppins', sans-serif;
}

.UdSUV4Km7I {
  max-width: 1200px;
  margin: 0 auto;
}

.IedjN5VXkE {
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.uni-contact-subtitle {
  font-size: 1rem;
  color: #555;
  margin-bottom: 32px;
  line-height: 1.6;
}

.uni-contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}

.uni-contact-list li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 16px;
}

.uni-contact-label {
  font-weight: 600;
  width: 100px;
  color: #1a1a1a;
}

.P6APKFbVPs {
  color: #3b82f6;
  text-decoration: none;
  transition: all 0.3s ease;
}

.P6APKFbVPs:hover {
  text-decoration: underline;
}

.kGTQuhfwcO {
  margin-top: 24px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.CxjASM0cWB {
  background: #fff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.GKAQcxjqaV {
  font-size: 1.8rem;
  margin-bottom: 24px;
  color: #1a1a1a;
}

.uni-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.uni-form-input {
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid #d1d5db;
  width: 100%;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.uni-form-input:focus {
  border-color: #3b82f6;
  outline: none;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.uni-form-btn {
  background-color: #7abb02;
  color: #fff;
  font-weight: 600;
  padding: 14px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.uni-form-btn:hover {
  background-color: #2563eb;
}


/*============== End Footer section ==========*/