/* Хедер */
.header {
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  padding: 20px 0;
}

.header-container {
  max-width: 1200px;
  margin: auto;
  padding: 0px 20px;
  /* Додано px */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Базові стилі */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background-color: #f9f9f9;
  color: #0b2250;
  line-height: 1.6;
}

.logo img {
  width: 180px;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-list a {
  text-decoration: none;
  color: #001e5b;
  font-size: 18px;
  font-weight: 600;
  transition: color 0.3s;
}

.nav-list a:hover {
  color: #eacb6c;
}




html {
  scroll-behavior: smooth;
}











































body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f5f7fe;
  color: #0A2156;
}

/* Wrapper для блоку з текстом */
.split-wrapper {
  padding: 60px 80px;
  background-color: #fff;
}

/* Контейнер зліва і справа */
.split-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.left-text {
  flex: 1;
  min-width: 280px;
}

.left-text h1 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 1.2;
  margin: 0;
  font-family: 'Feature Display', serif;
  font-weight: 500;
}

.right-text {
  flex: 1;
  min-width: 280px;
}

.right-text p {
  font-size: 18px;
  margin-bottom: 20px;
}

.learn-more-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #1642ff;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.learn-more-button:hover {
  background-color: #0025d0;
}

/* === КАРУСЕЛЬ НА ВСЮ ШИРИНУ === */
.fullscreen-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 40px;
}

.carousel-track-full {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.carousel-track-full img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

/* Кнопки */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  font-size: 32px;
  padding: 10px 16px;
  cursor: pointer;
  z-index: 10;
  border-radius: 6px;
}

.carousel-btn.left {
  left: 20px;
}

.carousel-btn.right {
  right: 20px;
}

.carousel-btn:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

























































body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  color: #001b5e;
}

.ael-intro {
  background-color: #f4f7ff;
  /* світло-блакитний фон */
  padding: 80px 20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.intro-text p {
  font-size: 20px;
  max-width: 900px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

.features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.feature-box {
  background-color: #fff;
  flex: 1 1 300px;
  max-width: 360px;
  padding: 40px 30px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 50, 0.04);
  text-align: left;
  transition: all 0.3s;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 100, 0.08);
}

.icon {
  font-size: 32px;
  color: #003bff;
  margin-bottom: 20px;
}

.feature-box h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #001b5e;
}

.feature-box p {
  font-size: 14px;
  color: #001b5e;
  line-height: 1.5;
}




body {
  margin: 0;
  font-family: 'Inter', sans-serif;
}

.mission-section {
  background-color: #0a1f56;
  padding: 80px 60px;
  color: #ffffff;
  gap: 24px 80px;
}

.mission-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.mission-text {
  flex: 1;
  min-width: 300px;
}

.mission-text h1 {
  font-size: 36px;
  line-height: 1.4;
  margin-bottom: 24px;
}

.mission-text p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
  color: #d3e0ff;
}

.mission-image {
  flex: 1;
  min-width: 300px;
  text-align: right;
}

.mission-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.learn-more-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #3d66ff;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.learn-more-button:hover {
  background-color: #244cff;
}






















/* Загальні налаштування */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #F5F7FE;
}

/* Секція FAQ */
.faq-section {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  background-color: #f1f5ff;
  padding: 80px 350px;
  /* Зменшено з 120px */
  font-family: 'Segoe UI', sans-serif;
  gap: 29px;
  /* Відстань між лівим і правим блоками */
}

/* Ліва частина */
.faq-left {
  width: 300px;
  flex-shrink: 0;
}

.faq-left h2 {
  font-size: 36px;
  color: #0A2156;
  margin-bottom: 20px;
}

.faq-left p {
  font-size: 16px;
  color: #0A2156;
  margin-bottom: 30px;
}

.contact-btn {
  display: inline-block;
  padding: 12px 28px;
  background-color: #0E43FF;
  color: white;
  text-decoration: none;
  font-size: 15px;
  border-radius: 2px;
  transition: background-color 0.3s ease;

}

.contact-btn:hover {
  background-color: #0025d0;
}

/* Права частина */
.faq-right {
  flex: 1;
  max-width: 800px;
}

/* Один елемент FAQ */
.faq-item {
  border-bottom: 1px solid #C2D0E8;
  padding: 12px 0;
}

/* Кнопка питання */
.faq-question {
  background: none;
  border: none;
  font-size: 16px;
  color: #0A2156;
  text-align: left;
  width: 100%;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
}

.faq-question .arrow {
  display: inline-block;
  transition: transform 0.3s ease;
  font-size: 18px;
}

/* Розворот стрілки */
.faq-item.open .faq-question .arrow {
  transform: rotate(180deg);
}

/* Відповідь */
.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  font-size: 15px;
  color: #0A2156;
  padding-right: 20px;
}

/* Відображення відповіді */
.faq-item.open .faq-answer {
  max-height: 1000px;
  /* Достатньо велике значення */
  opacity: 1;
  padding-top: 16px;
  padding-bottom: 16px;
}



/* Адаптивність під телефон */
@media (max-width: 768px) {
  .faq-section {
    flex-direction: column;
    padding: 40px 20px; /* Менші відступи з боків */
    gap: 40px;
  }

  .faq-left {
    width: 100%;
    text-align: center;
  }

  .faq-left h2 {
    font-size: 28px;
  }

  .faq-left p {
    font-size: 15px;
  }

  .contact-btn {
    width: 100%;
    text-align: center;
  }

  .faq-right {
    max-width: 100%;
    width: 100%;
  }

  .faq-question {
    font-size: 15px;
  }

  .faq-answer {
    font-size: 14px;
  }
}











































.footer {
  background-color: #0c1c3d;
  color: #fff;
  font-family: sans-serif;
  padding: 40px 20px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-left {
  max-width: 600px;
}

.footer-left .logo {
  height: 80px;
  margin-bottom: 20px;
}

.footer-left p {
  font-size: 14px;
  line-height: 1.6;
  color: #ccc;
}

.footer-right {
  display: flex;
  align-items: center;
}

.linkedin-link {
  display: flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.linkedin-icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.footer-nav {
  text-align: center;
  margin: 30px 0 10px;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
  font-size: 14px;
}

.footer-bottom {
  border-top: 1px solid #22314f;
  margin-top: 20px;
  padding-top: 20px;
  text-align: center;
  color: #888;
  font-size: 13px;
}

.footer-links {
  margin-top: 10px;
}

.footer-links a {
  color: #bbb;
  margin: 0 10px;
  text-decoration: none;
  font-size: 13px;
}

.footer-links a:hover {
  text-decoration: underline;
}