@charset "UTF-8";

* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

aside,
nav,
footer,
header,
section {
  display: block;
}

body {
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

.container {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

body {
  font-family: "Open Sans", serif;
}

body.locked {
  overflow: hidden;
}

body.dark {
  background: #242424;
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  font-size: 16px;
  font-weight: bold;
  color: #ffffff;
  background-color: #0b74de;
  text-align: center;
  text-decoration: none;
  border-radius: 5px;
  border: 2px solid transparent;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn:hover {
  background-color: #055cb8;
  /* Темніший фон */
  -webkit-box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
          box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
  /* Збільшення тіні */
  -webkit-transform: translateY(-3px) scale(1.05);
      -ms-transform: translateY(-3px) scale(1.05);
          transform: translateY(-3px) scale(1.05);
  /* Підняття та збільшення */
  border-color: #ffffff;
  /* Додавання білої обводки */
}

.btn:focus {
  outline: none;
  -webkit-box-shadow: 0 0 8px rgba(11, 116, 222, 0.5);
          box-shadow: 0 0 8px rgba(11, 116, 222, 0.5);
  /* Світіння при фокусі */
}

.btn:active {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  /* Повернення на місце при кліці */
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  /* Зменшення тіні */
}

@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fade {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.header {
  background: transparent;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 2;
  padding: 15px 30px;
  -webkit-transition: background 0.3s ease;
  -o-transition: background 0.3s ease;
  transition: background 0.3s ease;
}

.header.scrolled {
  background: rgba(0, 0, 0, 0.8);
  /* Темний фон */
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  /* Тінь для акценту */
}

.navbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  z-index: 3;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
}

.menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

.menu__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.menu .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(255, 255, 255, 0.9);
  list-style: none;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  -o-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu .dropdown li {
  padding: 5px 20px;
  background: rgba(240, 240, 240, 0.9);
  -webkit-transition: background 0.3s;
  -o-transition: background 0.3s;
  transition: background 0.3s;
}

.menu .dropdown li a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}

.menu .dropdown li:hover {
  background: rgba(224, 224, 224, 0.9);
}

.menu .dropdown li a:hover {
  color: #43adff;
}

.menu__item:hover .dropdown {
  display: block;
  opacity: 1;
  visibility: visible;
}

.menu__item-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-transition: 0.5s color;
  -o-transition: 0.5s color;
  transition: 0.5s color;
  color: #cecdcd;
  text-align: left;
  font-size: 14px;
  line-height: 18px;
}

.menu__item-link:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -5px;
  background: #ffffff;
  height: 3px;
  width: 100%;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transition: 0.5s -webkit-transform;
  transition: 0.5s -webkit-transform;
  -o-transition: 0.5s transform;
  transition: 0.5s transform;
  transition: 0.5s transform, 0.5s -webkit-transform;
}

.menu__item-link:hover {
  color: #ffffff;
}

.menu__item-link:hover:after {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.burger {
  display: none;
  background: transparent;
  z-index: 3;
}

.section__hero {
  background-image: url("../img/darkened_school.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding-top: 160px;
  padding-bottom: 120px;
  z-index: 1;
  height: 70vh;
  color: white;
  position: relative;
}

.hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.hero__item.left__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 700px;
          flex: 0 1 700px;
}

.hero__title {
  padding-bottom: 30px;
  color: #ffffff;
  text-align: left;
  vertical-align: text-top;
  font-size: 22px;
  letter-spacing: 0.2px;
  line-height: 36px;
  border-style: hidden;
  outline: none;
  margin-bottom: 0;
}

.hero__btn {
  display: inline-block;
  padding: 12px 25px;
  font-size: 16px;
  font-weight: bold;
  color: #ffffff;
  background-color: #0b74de;
  text-align: center;
  text-decoration: none;
  border-radius: 5px;
  border: 2px solid transparent;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hero__btn:hover {
  background-color: #055cb8;
  /* Темніший фон */
  -webkit-box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
          box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
  /* Збільшення тіні */
  -webkit-transform: translateY(-3px) scale(1.05);
      -ms-transform: translateY(-3px) scale(1.05);
          transform: translateY(-3px) scale(1.05);
  /* Підняття та збільшення */
  border-color: #ffffff;
  /* Додавання білої обводки */
}

.hero__btn:focus {
  outline: none;
  -webkit-box-shadow: 0 0 8px rgba(11, 116, 222, 0.5);
          box-shadow: 0 0 8px rgba(11, 116, 222, 0.5);
  /* Світіння при фокусі */
}

.hero__btn:active {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  /* Повернення на місце при кліці */
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  /* Зменшення тіні */
}

.sectiom__introduction {
  padding: 50px 0;
  background: #ffffff;
}

.introduction {
  padding-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}

.introduction__title {
  font-weight: bold;
  color: #0b0f19;
  text-align: center;
  font-size: 26px;
  line-height: 38px;
  margin-bottom: 20px;
}

.introduction__text {
  color: #919fae;
  text-align: center;
  font-size: 15px;
  line-height: 24px;
  padding-bottom: 15px;
  margin-bottom: 0;
}

.introduction__signature {
  text-align: center;
  color: #919fae;
  font-size: 14px;
  line-height: 22px;
  padding-top: 15px;
  margin-top: 10px;
}

.introduction__item {
  padding-top: 0;
}

.introduction__item.left__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 456px;
          flex: 0 1 456px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.introduction__item.right__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 585px;
          flex: 0 1 585px;
  text-align: center;
}

.image__container {
  width: 100%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.image__container img {
  max-width: 100%;
  height: auto;
  width: auto;
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: block;
}

.introduction .video__container {
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.introduction .video__container {
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.introduction .video__container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

#marquee-container {
  width: 100%;
  background-color: #43adff;
  padding: 10px 0;
}

#marquee {
  margin: 0 auto;
  max-width: 1200px;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  color: white;
  font-family: Arial, sans-serif;
  font-size: 18px;
}

#marquee span {
  display: inline-block;
  position: relative;
  -webkit-animation: marquee-loop 10s linear infinite;
          animation: marquee-loop 10s linear infinite;
}

@-webkit-keyframes marquee-loop {
  from {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }

  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes marquee-loop {
  from {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }

  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

.section__statistic {
  padding: 40px 0;
  background-color: #f8fbfc;
}

.statistic {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.statistic__item.left__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 450px;
          flex: 0 1 450px;
  border-right: 2px solid #707d8a;
  padding-right: 30px;
  padding-top: 20px;
}

.statistic__item.right__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 540px;
          flex: 0 1 540px;
}

.statistic__title {
  font-weight: bold;
  color: #0b0f19;
  text-align: left;
  font-size: 28px;
  line-height: 40px;
  margin-bottom: 25px;
}

.statistic__text {
  color: #4a5568;
  text-align: left;
  font-size: 16px;
  line-height: 28px;
  font-family: "Georgia", "Times New Roman", serif;
  max-width: 100%;
}

.stat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
}

.stat__item {
  background: -o-linear-gradient(315deg, #f8f9fb, #f9f9f9);
  background: linear-gradient(135deg, #f8f9fb, #f9f9f9);
  -webkit-box-shadow: 0 4px 8px rgba(87, 61, 219, 0.1);
          box-shadow: 0 4px 8px rgba(87, 61, 219, 0.1);
  -webkit-box-flex: 0;
      -ms-flex: 0 1 250px;
          flex: 0 1 250px;
  padding: 50px 20px;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
  -webkit-transition: color 0.3s, -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: color 0.3s, -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  -o-transition: transform 0.3s, box-shadow 0.3s, color 0.3s;
  transition: transform 0.3s, box-shadow 0.3s, color 0.3s;
  transition: transform 0.3s, box-shadow 0.3s, color 0.3s, -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
}

.stat__item:hover {
  -webkit-transform: translateY(-5px);
      -ms-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
          box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.stat__icon {
  margin-bottom: 20px;
}

.stat__title {
  padding: 20px 0 8px 0;
  color: #0b0f19;
  font-size: 20px;
  font-weight: bold;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}

.stat__title:hover {
  color: #1a2533;
}

.stat__text {
  color: #919fae;
  font-size: 12px;
  line-height: 24px;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}

.stat__text:hover {
  color: #707d8a;
}

.statistic__btn {
  display: inline-block;
  padding: 12px 25px;
  font-size: 16px;
  font-weight: bold;
  color: #ffffff;
  background-color: #0b74de;
  text-align: center;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.statistic__btn:hover {
  background-color: #055cb8;
  -webkit-box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
          box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
  -webkit-transform: translateY(-3px) scale(1.05);
      -ms-transform: translateY(-3px) scale(1.05);
          transform: translateY(-3px) scale(1.05);
  border-color: #ffffff;
}

.statistic__btn:focus {
  outline: none;
  -webkit-box-shadow: 0 0 8px rgba(11, 116, 222, 0.5);
          box-shadow: 0 0 8px rgba(11, 116, 222, 0.5);
}

.statistic__btn:active {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.section__advantages {
  padding: 40px 0;
}

.advantages {
  padding-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.advantages__title {
  font-weight: bold;
  color: #0b0f19;
  text-align: center;
  font-size: 30px;
  line-height: 48px;
  margin-bottom: 20px;
}

.advantages__title h3,
h3.advantages__title {
  font-size: 16px;
  line-height: 24px;
  font-weight: normal;
  margin-bottom: 10px;
}

.advantages__item {
  background: -o-linear-gradient(315deg, #ffffff, #f3f7fb);
  background: linear-gradient(135deg, #ffffff, #f3f7fb);
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 10px;
  border-radius: 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(33.333% - 40px);
          flex: 0 1 calc(33.333% - 40px);
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  -o-transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}

.advantages__item:hover {
  -webkit-transform: translateY(-5px);
      -ms-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
          box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.advn__title {
  color: #0b0f19;
  text-align: center;
  font-size: 16px;
  line-height: 48px;
}

/* Section News - Clean Design */
.section__news {
  padding: 60px 0;
  background: #ffffff;
  position: relative;
}

.section__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 50px;
  gap: 30px;
  flex-wrap: wrap;
}

.section__header-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 300px;
}

.section__title {
  color: #0b0f19;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}

.section__title-icon {
  font-size: 28px;
}

.section__subtitle {
  color: #6b7280;
  font-size: 15px;
  margin-top: 5px;
}

.news__search {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  min-width: 300px;
}

.news__search-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  background: #ffffff;
  padding: 6px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.news__search-form:focus-within {
  border-color: #3d94db;
  -webkit-box-shadow: 0 0 0 3px rgba(61, 148, 219, 0.1);
          box-shadow: 0 0 0 3px rgba(61, 148, 219, 0.1);
}

.news__search-input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 12px 20px;
  border: none;
  background: transparent;
  font-size: 15px;
  color: #0b0f19;
  outline: none;
}

.news__search-input::-webkit-input-placeholder {
  color: #9ca3af;
}

.news__search-input::-moz-placeholder {
  color: #9ca3af;
}

.news__search-input:-ms-input-placeholder {
  color: #9ca3af;
}

.news__search-input::placeholder {
  color: #9ca3af;
}

.news__search-btn {
  padding: 10px 20px;
  background: #3d94db;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.news__search-btn:hover {
  background: #0078ff;
}

.news {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.news__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.news__item.left__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 65%;
          flex: 0 1 65%;
  padding-right: 30px;
  border-right: 1px solid #e5e7eb;
}

.news__item.right__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 35%;
          flex: 0 1 35%;
  padding-left: 30px;
}

.news__section-header {
  margin-bottom: 30px;
}

.news__section-title {
  color: #0b0f19;
  font-size: 24px;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-bottom: 0;
}

.news__section-icon {
  font-size: 22px;
}

.news__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
}

/* News Post Item - Clean Card Design */
.post__item {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.post__item:hover {
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.post__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  text-decoration: none;
  color: inherit;
  padding: 20px;
}

.post__img-wrapper {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 200px;
          flex: 0 0 200px;
  height: 160px;
  border-radius: 12px;
  overflow: hidden;
  background: #f0f4f8;
}

.post__img {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.post__img-element {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.post__overlay {
  display: none;
}

.post__item:hover .post__img-element {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}

.post__badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(167, 139, 250, 0.95);
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 500;
  z-index: 2;
}

.post__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}

.post__title {
  color: #0b0f19;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
  -webkit-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post__item:hover .post__title {
  color: #0078ff;
}

.post__text {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.post__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid #e5e7eb;
}

.post__date {
  color: #9ca3af;
  font-size: 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}

.post__date svg {
  color: #3d94db;
}

.post__read-more {
  color: #3d94db;
  font-size: 13px;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.post__item:hover .post__read-more {
  color: #0078ff;
}

/* Events Section */
.events__header {
  margin-bottom: 30px;
}

.events__title {
  color: #0b0f19;
  font-size: 24px;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-bottom: 0;
}

.events__title-icon {
  font-size: 22px;
}

.events__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

/* Event Item - Clean Design */
.agenda__item {
  background: #ffffff;
  border-radius: 12px;
  padding: 16px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 16px;
}

.agenda__item:hover {
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.agenda__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px;
  text-decoration: none;
  color: inherit;
}

.agenda__icon-wrapper {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.agenda__icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  overflow: hidden;
  background: #f0f4f8;
  position: relative;
}

.agenda__icon-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.agenda__item:hover .agenda__icon-img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

.agenda__date-badge {
  position: absolute;
  bottom: -6px;
  right: -6px;
  background: #3d94db;
  color: #ffffff;
  padding: 3px 6px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 600;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  line-height: 1.2;
  min-width: 32px;
}

.agenda__date-day {
  font-size: 14px;
  font-weight: 800;
}

.agenda__date-month {
  font-size: 9px;
  text-transform: uppercase;
  opacity: 0.9;
}

.agenda__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}

.agenda__title-text {
  color: #0b0f19;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 8px 0;
  -webkit-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.agenda__item:hover .agenda__title-text {
  color: #0078ff;
}

.agenda__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}

.agenda__date-full {
  color: #9ca3af;
  font-size: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}

.agenda__date-full svg {
  color: #3d94db;
}

.agenda__arrow {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  color: #9ca3af;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.agenda__item:hover .agenda__arrow {
  color: #3d94db;
}

/* Empty States */
.news__empty,
.events__empty {
  text-align: center;
  padding: 60px 20px;
  background: #ffffff;
  border-radius: 20px;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.news__empty-icon,
.events__empty-icon {
  font-size: 64px;
  margin-bottom: 20px;
  opacity: 0.5;
}

.news__empty-text,
.events__empty-text {
  color: #6b7280;
  font-size: 16px;
  margin: 0;
}

.section__galery {
  padding: 80px 0;
  background: -o-linear-gradient(315deg, #f9fbfd, #e3efff);
  background: linear-gradient(135deg, #f9fbfd, #e3efff);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.section__galery .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.section__galery .galery__title {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 60px;
  color: #333;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
  -webkit-animation: fade-in 1.5s ease;
          animation: fade-in 1.5s ease;
}

.section__galery .galery__title::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(#0078ff), to(#00c6ff));
  background: -o-linear-gradient(left, #0078ff, #00c6ff);
  background: linear-gradient(90deg, #0078ff, #00c6ff);
  -webkit-animation: underline-animation 4s infinite ease-in-out;
          animation: underline-animation 4s infinite ease-in-out;
}

@-webkit-keyframes underline-animation {
  0% {
    width: 0;
  }

  50% {
    width: 100%;
  }

  100% {
    width: 0;
  }
}

@keyframes underline-animation {
  0% {
    width: 0;
  }

  50% {
    width: 100%;
  }

  100% {
    width: 0;
  }
}

.section__galery .galery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.section__galery .galery__item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  -webkit-transition: -webkit-transform 0.5s ease, -webkit-box-shadow 0.5s ease;
  transition: -webkit-transform 0.5s ease, -webkit-box-shadow 0.5s ease;
  -o-transition: transform 0.5s ease, box-shadow 0.5s ease;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  transition: transform 0.5s ease, box-shadow 0.5s ease, -webkit-transform 0.5s ease, -webkit-box-shadow 0.5s ease;
  cursor: pointer;
  background: #fff;
}

.section__galery .galery__item:hover {
  -webkit-transform: translateY(-10px);
      -ms-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
          box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.section__galery .galery__item:hover .galery__overlay {
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.section__galery .galery__item:hover img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}

.section__galery .galery__item:hover::before {
  opacity: 1;
  -webkit-animation: glow 1.5s infinite ease-in-out;
          animation: glow 1.5s infinite ease-in-out;
}

.section__galery .galery__item::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: -o-radial-gradient(circle, rgba(0, 120, 255, 0.2), transparent);
  background: radial-gradient(circle, rgba(0, 120, 255, 0.2), transparent);
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  -o-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}

.section__galery .galery__item img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  -o-transition: transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.section__galery .galery__item .galery__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -o-linear-gradient(315deg, rgba(0, 120, 255, 0.7), rgba(0, 0, 0, 0.5));
  background: linear-gradient(135deg, rgba(0, 120, 255, 0.7), rgba(0, 0, 0, 0.5));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
  opacity: 0;
  -webkit-transform: translateY(30px);
      -ms-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  -o-transition: opacity 0.6s ease, transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
}

.section__galery .galery__more {
  margin-top: 70px;
}

.section__galery .galery__more .galery__btn {
  display: inline-block;
  padding: 16px 50px;
  font-size: 20px;
  font-weight: bold;
  background: -o-linear-gradient(315deg, #0078ff, #00c6ff);
  background: linear-gradient(135deg, #0078ff, #00c6ff);
  color: #fff;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  -webkit-transition: background 0.4s ease, -webkit-transform 0.4s ease, -webkit-box-shadow 0.4s ease;
  transition: background 0.4s ease, -webkit-transform 0.4s ease, -webkit-box-shadow 0.4s ease;
  -o-transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease, -webkit-transform 0.4s ease, -webkit-box-shadow 0.4s ease;
}

.section__galery .galery__more .galery__btn:hover {
  background: -o-linear-gradient(315deg, #005bb5, #0078ff);
  background: linear-gradient(135deg, #005bb5, #0078ff);
  -webkit-transform: translateY(-8px);
      -ms-transform: translateY(-8px);
          transform: translateY(-8px);
  -webkit-box-shadow: 0 15px 40px rgba(0, 120, 255, 0.5);
          box-shadow: 0 15px 40px rgba(0, 120, 255, 0.5);
}

.section__galery .galery__more .galery__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  background: -o-radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
  opacity: 0;
  -webkit-transform: translate(-50%, -50%) scale(0);
      -ms-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  -webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  -o-transition: opacity 0.4s ease, transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease, -webkit-transform 0.4s ease;
}

.section__galery .galery__more .galery__btn:hover::after {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) scale(1);
      -ms-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}

footer {
  padding: 30px 0;
  color: #333;
  font-family: "Arial", sans-serif;
}

footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

footer .footer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

footer .footer__logo {
  text-align: left;
}

footer .footer__logo img {
  width: 60px;
  margin-bottom: 20px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

footer .footer__logo img:hover {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

footer .footer__logo p {
  margin: 10px 0;
  line-height: 1.7;
  font-size: 14px;
  color: #555;
}

footer .footer__logo a {
  color: #0078ff;
  font-weight: bold;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

footer .footer__logo a:hover {
  text-decoration: underline;
  color: #005bb5;
}

footer .footer__menu h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
  position: relative;
  padding-bottom: 5px;
}

footer .footer__menu h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: #0078ff;
  -webkit-transition: width 0.3s ease;
  -o-transition: width 0.3s ease;
  transition: width 0.3s ease;
}

footer .footer__menu h3:hover::after {
  width: 100%;
}

footer .footer__menu ul {
  list-style: none;
  padding: 0;
}

footer .footer__menu ul li {
  margin-bottom: 10px;
}

footer .footer__menu ul li a {
  color: #555;
  text-decoration: none;
  font-size: 15px;
  -webkit-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

footer .footer__menu ul li a:hover {
  color: #0078ff;
  text-decoration: underline;
}

footer .footer__social h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
}

footer .footer__social ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  padding: 0;
}

footer .footer__social ul li a {
  display: inline-block;
  width: 45px;
  height: 45px;
  background: -o-linear-gradient(315deg, #0078ff, #005bb5);
  background: linear-gradient(135deg, #0078ff, #005bb5);
  color: #fff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 22px;
  -webkit-box-shadow: 0 4px 6px rgba(0, 120, 255, 0.3);
          box-shadow: 0 4px 6px rgba(0, 120, 255, 0.3);
  -webkit-transition: background 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: background 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  -o-transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}

footer .footer__social ul li a:hover {
  background: -o-linear-gradient(315deg, #005bb5, #003f7f);
  background: linear-gradient(135deg, #005bb5, #003f7f);
  -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-box-shadow: 0 6px 12px rgba(0, 120, 255, 0.5);
          box-shadow: 0 6px 12px rgba(0, 120, 255, 0.5);
}

footer .footer__social ul li a img {
  width: 22px;
  height: 22px;
}

footer .footer__bottom {
  text-align: center;
  margin-top: 50px;
  padding-top: 25px;
  border-top: 1px solid #d9e0ea;
}

footer .footer__bottom p {
  font-size: 14px;
  color: #888;
}

footer .footer__bottom p a {
  color: #0078ff;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

footer .footer__bottom p a:hover {
  text-decoration: underline;
  color: #005bb5;
}

@media (max-width: 1449.98px) {
  .container {
    max-width: 1200px;
  }
}

@media (max-width: 991.98px) {
  .container {
    max-width: 970px;
  }

  .section__hero {
    padding-top: 120px;
    padding-bottom: 80px;
    height: 60vh;
  }

  .hero {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .hero__item.left__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    text-align: center;
  }

  .hero__title {
    font-size: 20px;
    line-height: 32px;
    text-align: center;
    padding-bottom: 25px;
  }

  .introduction {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }

  .introduction__title {
    font-size: 22px;
    line-height: 32px;
    text-align: center;
    margin-bottom: 15px;
  }

  .introduction__text {
    text-align: center;
    line-height: 22px;
    padding-bottom: 12px;
  }

  .introduction__item.left__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    text-align: center;
  }

  .introduction__item.right__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    text-align: center;
  }

  .statistic {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 20px;
  }

  .statistic__item.left__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    border-right: none;
    padding-right: 0;
  }

  .statistic__item.right__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
  }

  .advantages {
    gap: 20px;
  }

  .advantages__title {
    font-size: 24px;
    line-height: 36px;
  }

  .advantages__title h3,
  h3.advantages__title {
    font-size: 14px;
    line-height: 20px;
  }

  .advantages__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(50% - 20px);
            flex: 0 1 calc(50% - 20px);
    /* Два елементи в рядок */
  }

  .advn__title {
    font-size: 14px;
    line-height: 36px;
  }

  .section__title {
    font-size: 20px;
    line-height: 32px;
  }

  .news__search {
    width: 100%;
    padding-left: 0;
  }

  .news__item {
    padding-top: 30px;
  }

  .news__item.left__item {
    border-right: none;
    padding-right: 0;
  }

  .news__item.right__item {
    padding-left: 0;
  }

  .section__galery {
    padding: 60px 0;
  }
}

@media screen and (max-width: 958px) {
  .menu {
    position: fixed;
    background: #000000;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100vw;
    display: none;
  }

  .menu.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    pointer-events: all;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    z-index: 2;
    -webkit-animation: fade 0.1s linear;
            animation: fade 0.1s linear;
  }

  .burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    height: 20px;
    width: 30px;
  }

  .burger.active:before {
    background: #000000;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.3s all;
    -o-transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.3s all;
    transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.3s all;
    top: 8px;
  }

  .burger.active:after {
    background: #ffffff;
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
    bottom: 10px;
    -webkit-transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.3s all;
    -o-transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.3s all;
    transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.3s all;
  }

  .burger.active span {
    -webkit-transform: scale(0);
        -ms-transform: scale(0);
            transform: scale(0);
  }

  .burger:before,
  .burger:after {
    content: "";
    position: absolute;
    height: 2px;
    width: 100%;
    background: #000000;
    -webkit-transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.3s all;
    -o-transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.3s all;
    transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.3s all;
  }

  .burger:before {
    top: 0;
  }

  .burger::after {
    bottom: 0;
  }

  .burger span {
    position: absolute;
    top: 9px;
    right: 0;
    width: 100%;
    background: #ffffff;
    height: 2px;
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
    -webkit-transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.3s all;
    -o-transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.3s all;
    transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.3s all;
  }
}

@media (max-width: 767.98px) {
  .container {
    max-width: 740px;
  }

  .section__hero {
    padding-top: 100px;
    padding-bottom: 60px;
    height: auto;
  }

  .hero__btn {
    font-size: 14px;
    padding: 10px 20px;
  }

  #marquee-container {
    padding: 8px 0;
  }

  #marquee {
    font-size: 16px;
  }

  .section__statistic {
    padding: 20px 0;
  }

  .statistic__title {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 20px;
  }

  .statistic__text {
    font-size: 15px;
    line-height: 26px;
  }

  .stat__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(50% - 20px);
            flex: 0 1 calc(50% - 20px);
  }

  .stat__title {
    font-size: 18px;
  }

  .statistic__btn {
    font-size: 14px;
    padding: 10px 20px;
  }

  .section__advantages {
    padding: 20px 0;
  }

  .advantages {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 20px;
  }

  .section__news {
    padding: 40px 0;
  }

  .section__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
  }

  .section__title {
    font-size: 28px;
  }

  .section__subtitle {
    font-size: 14px;
  }

  .news__search {
    width: 100%;
    min-width: 100%;
  }

  .news__search-form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-radius: 16px;
    padding: 12px;
  }

  .news__search-input {
    width: 100%;
    margin-bottom: 10px;
  }

  .news__search-btn {
    width: 100%;
    border-radius: 12px;
  }

  .news {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }

  .news__item.left__item {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding-right: 0;
    border-right: none;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 30px;
  }

  .news__item.right__item {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding-left: 0;
  }

  .post__link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }

  .post__img-wrapper {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    height: 200px;
  }

  .post__content {
    gap: 10px;
  }

  .post__title {
    font-size: 18px;
  }

  .post__text {
    font-size: 13px;
  }

  .agenda__link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .agenda__icon-wrapper {
    margin: 0 auto;
  }

  .agenda__content {
    text-align: center;
  }

  .agenda__arrow {
    position: absolute;
    bottom: 15px;
    right: 15px;
  }

  .section__galery {
    padding: 40px 0;
  }

  .section__galery .container {
    padding: 0 10px;
  }

  .section__galery .galery__title {
    font-size: 24px;
    margin-bottom: 40px;
  }

  .section__galery .galery__item .galery__overlay {
    font-size: 20px;
  }

  .section__galery .galery__more {
    margin-top: 50px;
  }

  .section__galery .galery__more .galery__btn {
    font-size: 18px;
    padding: 12px 40px;
  }

  footer .container {
    padding: 0 10px;
  }

  footer .footer__menu h3 {
    font-size: 18px;
  }

  footer .footer__menu ul li a {
    font-size: 14px;
  }

  footer .footer__social h3 {
    font-size: 18px;
  }

  footer .footer__bottom {
    margin-top: 30px;
    padding-top: 20px;
  }
}

@media (max-width: 479.98px) {
  .container {
    max-width: none;
  }

  .hero__title {
    font-size: 18px;
    line-height: 30px;
  }

  .introduction__title {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 12px;
  }

  .introduction__text {
    font-size: 13px;
    line-height: 20px;
    padding-bottom: 10px;
  }

  .introduction .video__container {
    max-width: 100%;
  }

  #marquee {
    font-size: 14px;
  }

  .statistic__title {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 18px;
  }

  .statistic__text {
    font-size: 14px;
    line-height: 24px;
  }

  .stat {
    gap: 20px;
  }

  .stat__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
  }

  .stat__icon {
    margin-bottom: 15px;
  }

  .stat__title {
    font-size: 16px;
  }

  .stat__text {
    font-size: 11px;
    line-height: 20px;
  }

  .statistic__btn {
    font-size: 12px;
    padding: 8px 15px;
  }

  .advantages__title {
    font-size: 20px;
    line-height: 32px;
  }

  .advantages__title h3,
  h3.advantages__title {
    font-size: 13px;
    line-height: 18px;
  }

  .advantages__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    /* Один елемент в рядок */
    margin-bottom: 20px;
  }

  .advn__title {
    font-size: 12px;
    line-height: 24px;
  }

  .section__news {
    padding: 30px 0;
  }

  .section__title {
    font-size: 24px;
    text-align: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
  }

  .section__title-icon {
    font-size: 24px;
  }

  .section__subtitle {
    font-size: 13px;
    text-align: center;
  }

  .news__section-title,
  .events__title {
    font-size: 20px;
  }

  .post__img-wrapper {
    height: 180px;
  }

  .post__title {
    font-size: 16px;
  }

  .post__text {
    font-size: 12px;
  }

  .post__meta {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .agenda__icon {
    width: 60px;
    height: 60px;
  }

  .agenda__title-text {
    font-size: 14px;
  }

  .section__galery .galery__title {
    font-size: 20px;
  }

  .section__galery .galery {
    gap: 20px;
  }

  .section__galery .galery__item .galery__overlay {
    font-size: 18px;
  }

  .section__galery .galery__more .galery__btn {
    font-size: 16px;
    padding: 10px 30px;
  }

  footer .footer {
    gap: 20px;
  }

  footer .footer__logo p {
    font-size: 13px;
  }

  footer .footer__menu h3 {
    font-size: 16px;
  }

  footer .footer__menu ul li a {
    font-size: 13px;
  }

  footer .footer__social h3 {
    font-size: 16px;
  }

  footer .footer__social ul {
    gap: 15px;
  }

  footer .footer__social ul li a img {
    width: 20px;
    height: 20px;
  }

  footer .footer__bottom p {
    font-size: 13px;
  }
}

/* Section Hero2 for Pages */
.section__hero2 {
  background-image: url("../img/darkened_school.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding-top: 160px;
  padding-bottom: 120px;
  z-index: 1;
  height: 45vh;
  color: #ffffff;
  position: relative;
}

.hero2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.hero2__title {
  padding-bottom: 50px;
  color: #ffffff;
  font-size: 24px;
  letter-spacing: 0.2px;
  line-height: 40px;
  border-style: hidden;
  outline: none;
}

/* Section Menu List Styles */
.Section__menuList {
  padding: 60px 0;
  background-color: #ffffff;
}

.manuList {
  margin-top: 40px;
}

.menuList__item {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  padding: 20px;
  background-color: #f5f5f5;
  border-radius: 15px;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.menuList__item > div {
  height: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  background: linear-gradient(135deg, #ffffff, #f8f8f8);
  border: 1px solid #ddd;
  border-radius: 12px;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.menuList__item > div:hover {
  background: linear-gradient(135deg, #f0f9ff, #e0f7fa);
  border-color: #4fc3f7;
  color: #007bb5;
  -webkit-transform: translateY(-5px) scale(1.02);
      -ms-transform: translateY(-5px) scale(1.02);
          transform: translateY(-5px) scale(1.02);
  -webkit-box-shadow: 0 4px 10px rgba(0, 123, 181, 0.2);
          box-shadow: 0 4px 10px rgba(0, 123, 181, 0.2);
}

.menuList__item > div a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.menuList__item > div i {
  font-size: 32px;
  margin-bottom: 10px;
  color: #007bb5;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}

.menuList__item > div:hover i {
  color: #005f8d;
}

.menuList__item > div span {
  display: block;
  font-size: 14px;
  color: #333;
  margin-top: 5px;
  line-height: 1.4;
}

.menuList__item > div:hover span {
  color: #007bb5;
}

/* Ped Section Archive Styles */
.ped-archive {
  padding: 40px 20px;
}

.ped-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.ped-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background: #ffffff;
  border-radius: 14px;
  padding: 16px 18px;
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  color: #1f2d3d;
  -webkit-transition: -webkit-transform 0.15s, -webkit-box-shadow 0.15s;
  transition: -webkit-transform 0.15s, -webkit-box-shadow 0.15s;
  -o-transition: transform 0.15s, box-shadow 0.15s;
  transition: transform 0.15s, box-shadow 0.15s;
  transition: transform 0.15s, box-shadow 0.15s, -webkit-transform 0.15s, -webkit-box-shadow 0.15s;
}

.ped-card:hover {
  -webkit-transform: translateY(-2px);
      -ms-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.ped-card__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  color: #3d94db;
}

.ped-card__icon i {
  font-size: 28px;
  opacity: 0.9;
}

.ped-card__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}

.ped-card__title {
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.25;
  color: #1f2d3d;
  font-size: 16px;
}

.ped-card__meta {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 6px;
}

.ped-card__desc {
  font-size: 14px;
  color: #374151;
  line-height: 1.5;
  margin-bottom: 8px;
}

.ped-card__actions {
  margin-top: 10px;
  font-size: 14px;
}

.btn-link {
  color: #3d94db;
  text-decoration: none;
  border-bottom: 1px dotted currentColor;
  -webkit-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.btn-link:hover {
  color: #0078ff;
}

/* Section Pages Styles */
.section__pages {
  padding: 40px 20px;
  background-color: #f9f9f9;
}

.custom-page-body {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 40px;
  text-align: justify;
}

.custom-page-body p {
  margin-bottom: 15px;
}

.custom-page-body ul,
.custom-page-body ol {
  margin-left: 20px;
  margin-bottom: 20px;
  padding-left: 20px;
}

.custom-page-body ul li,
.custom-page-body ol li {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.6;
}

.custom-page-body a {
  color: #0073e6;
  text-decoration: underline;
}

.custom-page-body a:hover {
  color: #005bb5;
  text-decoration: none;
}

/* Section Newslist Styles */
.section__newslist {
  padding: 60px 0;
  background-color: #f8fafc;
  font-family: Roboto, sans-serif;
  color: #333;
}

.newslist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.postnews__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  overflow: hidden;
  padding: 30px;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  -o-transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.postnews__item:hover {
  -webkit-transform: translateY(-10px);
      -ms-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.postnews__content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
  padding: 20px 0;
}

.postnews__content.top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #f0f0f0;
}

.postnews__content.top.no-image {
  border-bottom: none;
}

.postnews__img {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 35%;
          flex: 1 1 35%;
  max-width: 35%;
  border-radius: 12px;
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.postnews__img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.postnews__img:hover img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

.postnews__right {
  padding: 20px;
}

.postnews__right.fullwidth {
  width: 100%;
  padding: 0;
}

.postnews__title {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 60%;
          flex: 1 1 60%;
  max-width: 80%;
  font-size: 24px;
  font-weight: 700;
  color: #2c3e50;
  line-height: 1.6;
}

.postnews__date {
  margin-top: 10px;
  font-size: 14px;
  color: #95a5a6;
  font-style: italic;
}

.postnews__text {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-top: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  position: relative;
}

.postnews__btn {
  display: inline-block;
  margin-top: 30px;
  padding: 15px 30px;
  background-color: #1abc9c;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 10px;
  -webkit-box-shadow: 0 4px 10px rgba(26, 188, 156, 0.3);
          box-shadow: 0 4px 10px rgba(26, 188, 156, 0.3);
  -webkit-transition: background-color 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: background-color 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  -o-transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}

.postnews__btn:hover {
  background-color: #16a085;
  -webkit-transform: translateY(-5px);
      -ms-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 8px 15px rgba(22, 160, 133, 0.5);
          box-shadow: 0 8px 15px rgba(22, 160, 133, 0.5);
}

/* Section Post Content Styles */
.section__post-content {
  padding-top: 20px;
}

.post__content {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
}

.post__content p {
  margin-bottom: 15px;
}

.post__navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #ddd;
}

.post__nav-prev a,
.post__nav-next a {
  text-decoration: none;
  color: #007bff;
  font-weight: bold;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}

.post__nav-prev a:hover,
.post__nav-next a:hover {
  color: #0056b3;
}

.post__thumbnail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.post__thumbnail img {
  width: 60%;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

/* Category Card Styles */
.category-card {
  display: inline-block;
  width: 300px;
  margin: 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
}

.category-card .image img {
  width: 100%;
  height: auto;
}

.category-card .content {
  padding: 15px;
  background-color: #fff;
}

.category-card h2 {
  font-size: 20px;
  margin-bottom: 10px;
}

.category-card p {
  font-size: 14px;
  color: #666;
}

/* Ped Single Styles */
.ped-single {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}

.ped-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  margin: 1rem 0;
  font-size: 14px;
  color: #6b7280;
}

.meta-chip {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: #f3f4f6;
  border-radius: 8px;
  font-size: 13px;
  color: #6b7280;
}

.meta-chip i {
  font-size: 14px;
  opacity: 0.8;
}

.meta-chip a {
  color: inherit;
  text-decoration: underline dotted;
}

.ped-single__meta {
  color: #6b7280;
  margin: 0.5rem 0 1rem;
  font-size: 14px;
}

.ped-single__meta a {
  color: inherit;
  text-decoration: underline dotted;
}

.ped-desc,
.ped-single__desc {
  font-size: 16px;
  color: #374151;
  margin: 0 0 16px;
  line-height: 1.6;
}

.ped-filebox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background: #ffffff;
  border-radius: 14px;
  padding: 16px 18px;
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  margin: 10px 0 18px;
}

.ped-filebox__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  color: #3d94db;
}

.ped-filebox__icon i {
  font-size: 32px;
  opacity: 0.9;
}

.ped-filebox__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}

.ped-filebox__title {
  font-weight: 600;
  margin-bottom: 6px;
  color: #1f2d3d;
}

.ped-filebox__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.ped-pdf,
.ped-pdfviewer {
  margin: 18px 0 10px;
  border-radius: 12px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.ped-pdf__obj,
.ped-pdfviewer object,
.ped-pdfviewer iframe {
  width: 100%;
  height: 820px;
  border: none;
}

.ped-back {
  margin: 18px 0;
}

.ped-back a {
  color: #3d94db;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.ped-back a:hover {
  color: #0078ff;
  text-decoration: underline;
}

/* Contacts Page Styles */
.contacts-page {
  padding: 10px 0 30px;
}

.contacts-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 18px;
}

.contacts-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 18px;
  -webkit-box-shadow: 0 2px 6px rgba(17, 24, 39, 0.04);
          box-shadow: 0 2px 6px rgba(17, 24, 39, 0.04);
}

.contacts-card h2 {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 800;
  color: #111827;
}

.contacts-row {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  padding: 10px 0;
  border-top: 1px dashed #e5e7eb;
}

.contacts-row:first-of-type {
  border-top: none;
}

.contacts-row i {
  color: #6b7280;
  line-height: 1.2;
  font-size: 16px;
}

.contacts-card .muted {
  color: #6b7280;
  font-size: 13px;
  margin-bottom: 2px;
}

.contacts-card .val {
  font-size: 16px;
  color: #111827;
  font-weight: 600;
}

.contacts-card a {
  color: #1d4ed8;
  text-decoration: none;
  border-bottom: 1px dashed transparent;
  font-weight: 600;
}

.contacts-card a:hover {
  border-bottom-color: currentColor;
}

.contacts-card address {
  font-style: normal;
}

.hours {
  margin: 0;
  padding-left: 18px;
}

.hours li {
  margin: 4px 0;
}

.map-box {
  border-radius: 12px;
  overflow: hidden;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
}

.map-iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* Schedule Styles */
.section__schedule {
  padding: 60px 0;
  background-color: #f8fafc;
}

.schedule-wrapper {
  margin-top: 30px;
}

.schedule-filters {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 15px;
}

.schedule-filter {
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  background: #ffffff;
  color: #333;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.schedule-filter:hover {
  border-color: #3d94db;
}

.schedule-filter:focus {
  outline: none;
  border-color: #3d94db;
  -webkit-box-shadow: 0 0 0 3px rgba(61, 148, 219, 0.1);
          box-shadow: 0 0 0 3px rgba(61, 148, 219, 0.1);
}

.schedule-table-container {
  overflow-x: auto;
  background: #ffffff;
  border-radius: 12px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.schedule-table thead {
  background: #f3f4f6;
}

.schedule-table th {
  padding: 15px 12px;
  text-align: left;
  font-weight: 700;
  color: #1f2937;
  border-bottom: 2px solid #e5e7eb;
  font-size: 15px;
}

.schedule-table td {
  padding: 12px;
  border-bottom: 1px solid #e5e7eb;
  vertical-align: top;
}

.schedule-table tbody tr:hover {
  background-color: #f9fafb;
}

.schedule-time {
  font-weight: 600;
  color: #3d94db;
  white-space: nowrap;
  min-width: 80px;
}

.schedule-day {
  min-width: 200px;
}

.schedule-lesson {
  background: #3d94db;
  color: #ffffff;
  padding: 8px 12px;
  border-radius: 6px;
  margin-bottom: 8px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.schedule-lesson:hover {
  background: #0078ff;
  -webkit-transform: translateY(-2px);
      -ms-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.schedule-lesson:last-child {
  margin-bottom: 0;
}

.lesson-subject {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 4px;
}

.lesson-class {
  font-size: 12px;
  opacity: 0.9;
}

.schedule-room {
  text-align: center;
  color: #6b7280;
  font-size: 13px;
  min-width: 80px;
}

.schedule-empty {
  text-align: center;
  padding: 60px 20px;
  background: #ffffff;
  border-radius: 12px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.schedule-empty p {
  font-size: 16px;
  color: #6b7280;
  margin: 0;
}

@media (max-width: 768px) {
  .schedule-table-container {
    padding: 10px;
  }
  
  .schedule-table {
    font-size: 12px;
  }
  
  .schedule-table th,
  .schedule-table td {
    padding: 8px 6px;
  }
  
  .schedule-day {
    min-width: 150px;
  }
  
  .lesson-subject {
    font-size: 12px;
  }
  
  .lesson-class {
    font-size: 11px;
  }
}

@media (max-width: 900px) {
  .contacts-grid {
    grid-template-columns: 1fr;
  }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .postnews__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }

  .postnews__img,
  .postnews__title {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    max-width: 100%;
  }

  .postnews__content.top {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .postnews__btn {
    margin-top: 25px;
  }

  .post__navigation {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }

  .post__nav-prev,
  .post__nav-next {
    margin-bottom: 10px;
  }

  .post__content {
    font-size: 16px;
  }

  .section__newslist {
    padding: 40px 0;
  }

  .custom-page-body {
    font-size: 16px;
  }

  .category-card {
    width: 100%;
    margin: 10px 0;
  }
}