/* ==========================
   HERO
========================== */
.about-hero {
  background: #e3f5f9;
  text-align: center;
  padding: 70px 20px 60px;
}
.about-hero h1 {
  color: #005385;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}
.about-hero p {
  color: #333;
  font-size: 18px;
  margin: 0;
}

/* ==========================
   MAIN CONTENT
========================== */
.about-main {
  width: min(1000px, 92%);
  margin: 60px auto;
  font-family: 'Poppins', sans-serif;
  margin-left: calc(50% - 440px); /* выравниваем текст ближе к логотипу */
}

/* --- Секция --- */
.about-section {
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}
.about-section.reverse {
  grid-template-columns: 1fr 2fr;
}

.about-text h2 {
  color: #005385;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 6px;
}

.about-text p,
.about-text li {
  font-size: 16px;
  line-height: 1.55;
  color: #222;
  margin-top: 4px;
  margin-bottom: 8px;
}

.about-text ul {
  margin: 8px 0 14px 25px;
  padding: 0;
}

/* ==========================
   FACT CIRCLE
========================== */
.about-fact {
  text-align: center;
}
.about-fact .circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1px solid rgb(0, 182, 208);
  background: rgb(227, 245, 249);
  color: #000;
  font-size: 32px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
  transition: transform 0.3s ease;
}
.about-fact p {
  font-size: 18px;
  color: #111;
  font-weight: 600;
  margin: 0;
}
.about-fact:hover .circle {
  transform: scale(1.05);
}

/* ==========================
   CONTACT INVITE
========================== */
.about-contact-invite {
  background: #e3f5f9;
  text-align: center;
  padding: 50px 20px 60px;
}
.about-contact-invite p {
  font-size: 17px;
  margin-bottom: 24px;
  color: #0b0b0b;
}
.about-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* белые кнопки */
.btn-outline {
  display: inline-block;
  height: 40px;
  line-height: 40px;
  padding: 0 28px;
  background: #fff;
  color: #005385;
  font-size: 16px;
  font-weight: 500;
  border-radius: 2px;
  text-decoration: none;
  border: 1px solid #005385;
  transition: all 0.25s ease;
}
.btn-outline:hover {
  background: #005385;
  color: #fff;
}
.about-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* синяя */
.btn-blue {
  display: inline-block;
  height: 40px;
  line-height: 40px;
  padding: 0 28px;
  background: #005385;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.25s ease;
  border: 1px solid #005385;
}
.btn-blue:hover {
  background: #fff;
  color: #005385;
}

/* белые */
.btn-outline {
  display: inline-block;
  height: 40px;
  line-height: 40px;
  padding: 0 28px;
  background: #fff;
  color: #005385;
  font-size: 16px;
  font-weight: 500;
  border-radius: 2px;
  text-decoration: none;
  border: 1px solid #005385;
  transition: all 0.25s ease;
}
.btn-outline:hover {
  background: #005385;
  color: #fff;
}

/* ==========================
   ADAPTIVE
========================== */
@media (max-width: 768px) {
  .about-main {
    margin-left: auto;
  }

  /* каждая секция — вертикально, по центру */
  .about-section,
  .about-section.reverse {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  /* порядок элементов: у reverse — наоборот */
  .about-section.reverse {
    flex-direction: column; /* на мобилках одинаковый порядок */
  }

  .about-fact {
    margin-bottom: 10px;
  }

  .about-text {
    order: 2;
  }

  .about-circle {
    order: 1;
  }
}