    body {
      margin: 0;
      font-family: Arial, sans-serif;
      line-height: 1.6;
      color: #222;
    }

html {
  scroll-behavior: smooth;
}

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

header {
      background: #f9f9f9;
      border-bottom: 1px solid #ddd;
    }

header>.container {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  align-items: center;
}

    .logo {
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: bold;
      font-size: 20px;
      transition: color 0.3s ease;
    }

    .logo img {
      width: 40px;
      height: auto;
    }

    nav {
      display: flex;
      gap: 20px;
    }

    nav a {
      text-decoration: none;
      color: #222;
    }

    .btn {
      padding: 8px 14px;
      background: #0077ff;
      color: #fff;
      border-radius: 6px;
      text-decoration: none;
      font-size: 14px;
      transition: background 0.2s;
    }

    .btn:hover {
      background: #005fcc;
    }

    /* Адаптив */
    @media (max-width: 768px) {
      nav {
        display: none; /* потім можна замінити на бургер */
      }
      .header-inner {
        flex-wrap: wrap;
        gap: 10px;
      }
      .btn {
        width: 100%;
        text-align: center;
      }
    }

nav a {
  text-decoration: none;    
  color: #222;
  font-size: 17px;
  font-weight: 500;
  transition: color 0.3s ease; 
}

nav a:hover,
nav a:focus,
.logo:hover,
.logo:focus {
  color: #0077ff;             
}

nav a:active,
.logo:active {
  color: #005fcc;           
}



    section {
      margin-bottom: 50px;
    }

    .hero {
  background: linear-gradient(135deg, #eef6ff, #d6e8ff);
  text-align: center;
  padding: 70px 20px;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 20px;
  color: #222;
}

.hero h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #333;
}

.hero p {
  font-size: 18px;
  margin-bottom: 40px;
  color: #555;
}

.position-left {
  text-align: left;
}

/* Button */
.btn {
  display: inline-block;
  padding: 12px 24px;
  background: #0077ff;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-size: 16px;
  transition: background 0.2s;
}

.btn:hover {
  background: #005fcc;
}

.btn-big {
  font-size: 18px;
  padding: 16px 32px;
}

/* бургер за замовчуванням прихований */
/* бургер */
.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1103;
  /* вище overlay */
}

.burger span {
  display: block;
  width: 28px;
  height: 3px;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* бургер → хрестик */
.burger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.open span:nth-child(2) {
  opacity: 0;
}

.burger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -8px);
}

/* overlay (затемнення) */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* мобільне меню */
@media (max-width: 768px) {
  nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    background: #f9f9f9;
    position: absolute;
    top: -300px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);

    transition: top 0.3s ease;
    z-index: 1102;
  }

  .btn-nav {
    display: none;
  }

  nav.active {
    top: 60px;
    /* прямо під хедером */
  }

  nav a {
    font-size: 18px;
    padding: 8px 0;
    color: #333;
    border-bottom: 1px solid #eee;
    width: 100%;
    text-align: center;
    transition: color 0.2s;
  }

  nav a:hover {
    color: #0077ff;
  }

  nav a:last-child {
    border-bottom: none;
  }

  .burger {
    display: flex;
  }
}

/* Adaptive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 32px;
  }

  .hero h2 {
    font-size: 22px;
  }

  .hero p {
    font-size: 16px;
  }

  .btn-big {
    width: 100%;
    max-width: 320px;
  }
}

    #free {
      background: #eef6ff;
      padding: 40px;
      border-radius: 12px;
    }

/* Skills section */
.skills {
  background: #fff;
  text-align: left;
}

.skills p {
  font-size: 21px;
  color: #333;
  margin-bottom: 20px;
  max-width: 950px;
  line-height: 1.6;
}

.skills p:last-child {
  margin-bottom: 0;
}

/* Adaptive */
@media (max-width: 768px) {
  .skills p {
    font-size: 16px;
  }
}

/* Features section */
.features {
  background: linear-gradient(135deg, #eef6ff, #d6e8ff);
  padding: 70px 20px;
}

.section-title {
  text-align: center;
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #1a1a1a;
  letter-spacing: -0.5px;
  margin-top: 0;
}

/* дві колонки */
.features-columns {
  display: flex;
  gap: 60px;
  justify-content: center;
  align-items: flex-start;
}

.features-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  /* заголовок зверху */
  gap: 15px;
  padding: 25px 25px;
  background: #fff;
  border-radius: 12px;
  border: 2px solid #e0e7ff;
  /* рамка по всьому периметру */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(0, 119, 255, 0.15);
  border-color: #0077ff;
}

.features h3 {
  font-size: 20px;
  font-weight: 600;
  color: #0077ff;
  margin: 0;
  display: inline-block;
  /* ширина тільки по тексту */
  position: relative;
  align-self: flex-start;
  /* забороняє розтягування по flex */
}

.features h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  /* тепер рівно по довжині тексту */
  height: 3px;
  background: #0077ff;
  border-radius: 2px;
}

.feature-item p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin: 0;
}

/* Adaptive */
@media (max-width: 992px) {
  .features-columns {
    flex-direction: column;
    gap: 30px;
  }

  .feature-item {
    padding: 18px;
  }

  .features h3 {
    font-size: 18px;
  }

  .feature-item p {
    font-size: 15px;
  }
}

/* Audience section */
.audience {
  padding: 30px 20px;
  text-align: center;
}

.audience .section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #1a1a1a;
  margin-top: 0;
}

.audience-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 900px;
  text-align: left;
}

.audience-list li {
  font-size: 20px;
  line-height: 1.7;
  margin-bottom: 25px;
  padding-left: 35px;
  position: relative;
  color: #333;
}

.audience-list li::before {
  content: "✔";
  color: #0077ff;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.audience-list li:last-child {
  margin-bottom: 0;
}

/* Adaptive */
@media (max-width: 768px) {
  .audience .section-title {
    font-size: 28px;
  }

  .audience-list li {
    font-size: 18px;
  }
}

/* Benefits section */
.benefits {
  background: linear-gradient(135deg, #eef6ff, #d6e8ff);
  padding: 70px 20px;
}

.benefits .section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 60px;
  color: #1a1a1a;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.benefit-card {
  border-radius: 16px;
  padding: 30px 25px;
  color: #1a1a1a;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.benefit-card .icon {
  font-size: 36px;
  margin-bottom: 15px;
}

.benefit-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  display: inline-block;
  position: relative;
}

.benefit-card h3::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  margin-top: 8px;
  border-radius: 2px;
}

/* Different styles for each block */
.benefit-card.blue {
  background: #eaf3ff;
  border: 2px solid #c9dfff;
}

.benefit-card.blue h3 {
  color: #0056d2;
}

.benefit-card.blue h3::after {
  background: #0056d2;
}

.benefit-card.green {
  background: #e9f9f0;
  border: 2px solid #c3ebd6;
}

.benefit-card.green h3 {
  color: #008f5d;
}

.benefit-card.green h3::after {
  background: #008f5d;
}

.benefit-card.yellow {
  background: #fff9e5;
  border: 2px solid #ffe6a1;
}

.benefit-card.yellow h3 {
  color: #d48806;
}

.benefit-card.yellow h3::after {
  background: #d48806;
}

.benefit-card p,
.benefit-card li {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.benefit-card ul {
  padding-left: 20px;
  margin: 0 0 20px;
}

.benefit-card .note {
  font-size: 14px;
  color: #555;
  margin-top: 10px;
  font-style: italic;
}

/* Courses section */
.courses {
  padding: 30px 20px;
}

.courses .section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 60px;
  color: #1a1a1a;
}

.timeline {
  position: relative;
  margin: 0 auto;
  max-width: 900px;
  padding-left: 100px;
  /* место для линии и точек */
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50px;
  width: 4px;
  background: #0077ff;
}

.course {
  position: relative;
  margin-bottom: 70px;
}

.course:last-child {
  margin-bottom: 0;
}

.dot-label {
  position: absolute;
  left: -128px;
  top: 3px;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateY(0);
  /* точка на уровне заголовка */
}

.meta {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.dot {
  width: 20px;
  height: 20px;
  background: #0077ff;
  border-radius: 50%;
  border: 4px solid #f4f8ff;
  flex-shrink: 0;
}

.label {
  font-weight: 600;
  font-size: 18px;
  color: #0077ff;
}

.course-content h3 {
  font-size: 22px;
  color: #0077ff;
  margin-bottom: 3px;
}

/* Extras section */
.extras {
  background: #f4f8ff;
  padding: 70px 20px;
}

.extras .section-title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #1a1a1a;
}

.extras-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.extra-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 600;
}

.extra-left {
  flex: 0 0 250px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.extra-left .icon {
  font-size: 36px;
}

.extra-left h3 {
  font-size: 20px;
  font-weight: 600;
  color: #0077ff;
}

.extra-right {
  flex: 1;
}

.extra-right p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}

/* Adaptive */
@media (max-width: 768px) {
  .extras .section-title {
    font-size: 26px;
  }

  .extra-item {
    flex-direction: column;
    gap: 15px;
  }

  .extra-left {
    flex: unset;
    align-items: center;
    text-align: center;
  }

  .extra-left h3 {
    font-size: 18px;
  }

  .extra-right p {
    font-size: 15px;
    text-align: center;
  }
}

/* Author section */
.author-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.author-photo {
  text-align: center;
}

.author-photo img {
    width: 200px;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    display: block;
    margin: 0 auto 15px;
}

.author-name {
  font-size: 18px;
  font-weight: 600;
  color: #444;
  margin-top: 8px;
  letter-spacing: 1px;
  font-family: "Segoe UI", sans-serif;
}

/* адаптив */
@media (max-width: 768px) {
  .author-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .author-info h3 {
    text-align: center;
  }

  .author-info ul li {
    text-align: center;
  }
}

.testimonials {
      background: linear-gradient(135deg, #eef6ff, #d6e8ff);
  padding: 70px 20px;
  text-align: center;
}

.testimonials .section-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #111;
}

.slider {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  overflow: hidden;
  /* 👈 додаємо, щоб не було видно сусідніх відгуків */
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.slide {
  min-width: 100%;
  padding: 30px 20px;
  box-sizing: border-box;
}

.slide p {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #333;
}

.slide h4 {
  font-size: 19px;
  font-weight: 800;
  color: #000000;
}

/* стрелки */
.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 28px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  padding: 10px;
}

.prev {
  left: 0;
}

.next {
  right: 0;
}

/* точки */
.dots {
  text-align: center;
  margin-top: 15px;
}

.dots button {
  width: 10px;
  height: 12px;
  margin: 0 5px;
  border-radius: 50%;
  border: none;
  background: #ccc;
  cursor: pointer;
}

.dots button.active {
  background: #000000;
}

/* адаптив */
@media (max-width: 768px) {
  .slide p {
    font-size: 16px;
  }

  .slide h4 {
    font-size: 16px;
  }
}

.trial {
  color: #fff;
  text-align: center;
  padding: 30px 20px;
  border-radius: 12px;
  margin: 60px auto;
}

.trial h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.trial p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 35px;
  line-height: 1.6;
}

.btn-free {
  display: inline-block;
  padding: 14px 34px;
  background: #fff;
  color: #0077ff;
  font-size: 18px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
}

.btn-free:hover {
  background: #f2f2f2;
  transform: translateY(-2px);
}

.trial-background {
  background: linear-gradient(135deg, #0077ff, #00c6ff);
  border-radius: 16px;
  padding: 60px 30px;
  text-align: center;
  color: #fff;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.trial-background h2 {
  margin-top: 0;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.trial-background p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 35px;
}

.trial-background .btn-free {
  display: inline-block;
  padding: 14px 34px;
  background: #fff;
  color: #0077ff;
  font-size: 18px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
}

.trial-background .btn-free:hover {
  background: #f2f2f2;
  transform: translateY(-2px);
}

/* Adapt*

    /* Footer */
footer {
  display: flex;
justify-content: space-around;
  align-items: flex-start;
  background: #000000;
  padding: 30px 40px;
  border-top: 1px solid #222;
  flex-wrap: wrap;
  font-family: "Inter", "Segoe UI", Roboto, sans-serif;
}

.footer-info {
  max-width: 60%;
}

.footer-info p {
  margin: 0 0 8px;
  /* менші відступи */
  color: #d9d9d9;
  font-size: 14px;
  /* менший розмір */
  line-height: 1.4;
  /* щільніше */
  font-weight: 400;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  /* менші відступи */
}

.footer-links a {
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  text-decoration: underline;
  /* завжди підкреслені */
}

.policy {
  background: #fff;
  padding: 40px 20px;
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #222;
}

.policy .container {
  max-width: 800px;
  margin: 0 auto;
}

.policy h1 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #000;
}

.policy .details {
  font-size: 14px;
  color: #555;
  margin-bottom: 30px;
}

.policy h2 {
  font-size: 20px;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #0077ff;
}

.policy p {
  margin-bottom: 15px;
  font-size: 15px;
}

.policy ul {
  margin: 0 0 20px 20px;
  padding: 0;
  font-size: 15px;
}

.policy a {
  color: #0077ff;
  text-decoration: underline;
}

.offer {
  background: #fff;
  padding: 40px 20px;
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #222;
}

.offer .container {
  max-width: 800px;
  margin: 0 auto;
}

.offer h1 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #000;
}

.offer h2 {
  font-size: 20px;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #0077ff;
}

.offer p {
  margin-bottom: 15px;
  font-size: 15px;
}

.offer ul {
  margin: 0 0 20px 20px;
  padding: 0;
  font-size: 15px;
}

.about {
  background: #fff;
  padding: 40px 20px;
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #222;
}

.about .container {
  max-width: 800px;
  margin: 0 auto;
}

.about h1 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #000;
}

.about h2 {
  font-size: 20px;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #0077ff;
}

.about p {
  margin-bottom: 15px;
  font-size: 15px;
}

.about ul {
  margin: 0 0 20px 20px;
  padding: 0;
  font-size: 15px;
}

.faq {
  background: #fff;
  padding: 40px 20px;
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #222;
}

.faq .container {
  max-width: 800px;
  margin: 0 auto;
}

.faq h1 {
  font-size: 28px;
  margin-bottom: 25px;
  color: #000;
}

.faq h2 {
  font-size: 18px;
  margin-top: 25px;
  margin-bottom: 10px;
  color: #0077ff;
}

.faq p {
  margin-bottom: 15px;
  font-size: 15px;
}

.tests {
  background: #f9f9f9;
  padding: 60px 20px;
}

.tests .container {
  max-width: 900px;
  margin: 0 auto;
}

.tests h1 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 20px;
  color: #222;
}

.tests .intro {
  text-align: center;
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
  line-height: 1.6;
}

.test-block {
  background: #fff;
  border-radius: 12px;
  padding: 25px 30px;
  margin-bottom: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.test-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.test-block h2 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #0077ff;
}

.test-block p {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  margin: 0;
}

/* Адаптив */
@media (max-width: 600px) {
  .tests h1 {
    font-size: 26px;
  }

  .test-block {
    padding: 20px;
  }

  .test-block h2 {
    font-size: 18px;
  }

  .test-block p {
    font-size: 14px;
  }
}

/* Модальне вікно */
/* Заборона скролу сторінки, коли модалка відкрита */
body.no-scroll {
  overflow: hidden;
}

/* Модальне вікно (приховане за замовчуванням) */
.modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.97);
  width: 90%;
  max-width: 520px;
  background: #fff;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
  z-index: 10001;
  /* вище оверлею та будь-яких заголовків */
}

.modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

/* Титул і поля */
.modal h2 {
  margin-bottom: 18px;
  font-size: 22px;
  color: #222;
  text-align: center;
}

.modal input[type="email"] {
  width: 94%;
  padding: 12px 14px;
  margin: 8px 0 16px;
  border: 1px solid #dcdcdc;
  border-radius: 8px;
  font-size: 16px;
}

/* Чекбокси */
.checkboxes {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
  font-size: 14px;
  margin-bottom: 15px;
}

.checkbox-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
  color: #333;
  cursor: pointer;
}

.checkbox-item input {
  margin-top: 2px;
  flex-shrink: 0;
}

/* Кнопка */
.btn-submit {
  width: 100%;
  padding: 12px 16px;
  background: #0077ff;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background .2s ease;
}

.btn-submit:hover {
  background: #005fcc;
}

/* Хрестик */
.modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 24px;
  cursor: pointer;
  color: #777;
}

.modal-close:hover {
  color: #000;
}

/* Затемнення всієї сторінки */
#modalOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .6);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s;
  z-index: 10000;
}

#modalOverlay.active {
  opacity: 1;
  visibility: visible;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, -45%);
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

.checkboxes {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 15px;
}

.checkbox-item {
  display: flex;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.5;
  color: #333;
  cursor: pointer;
}

.checkbox-item input {
  margin-top: 3px;
  /* вирівнюємо по першому рядку тексту */
  flex-shrink: 0;
}

.author-info ul li {
  font-size: 19px;
  max-width: 370px;
}

.author-info ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

@media (max-width: 600px) {
  .author-photo {
    text-align: center;
    display: block;
    margin: 0 auto;
  }
}