body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: url('abstract-bg.png') no-repeat center center fixed;
  background-size: cover;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 30px;
  position: relative;
  background: rgba(255, 255, 255, 0.6);
}

.logo {
  height: 50px;
  position: absolute;
  left: 30px;
}

.center-name {
  font-weight: bold;
  font-size: 20px;
  color: #002144;
  text-align: center;
}

.burger {
  font-size: 30px;
  cursor: pointer;
  position: absolute;
  right: 30px;
}

#side-menu {
  height: 100%;
  width: 0;
  position: fixed;
  top: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  overflow-x: hidden;
  transition: 0.3s;
  padding-top: 60px;
  z-index: 999;
}

#side-menu a {
  padding: 16px 24px;
  text-decoration: none;
  font-size: 20px;
  color: #111;
  display: block;
  border-bottom: 1px solid #ddd;
}

#side-menu a:hover {
  background: rgba(0, 0, 0, 0.05);
}

#side-menu.active {
  width: 260px;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 36px;
  cursor: pointer;
  color: #111;
}

.hero {
  text-align: center;
  padding: 80px 20px;
  position: relative;
}

.hero-text {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.6);
  padding: 30px;
  border-radius: 10px;
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  font-size: 24px;
  color: #002266;
}

.hero-text p {
  margin-top: 20px;
  font-size: 1em;
  color: #002266;
}

.cta-button {
  background-color: #FFA726;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin-top: 20px;
}

.big-logo {
  position: absolute;
  bottom: 50px;
  right: 50px;
  width: 300px;
  opacity: 0.1;
  z-index: 0;
}

.nav-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 50px 20px;
}

.nav-icons .icon {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  color: #002266;
  font-weight: bold;
  text-decoration: none;
  font-size: 28px;
}

.nav-icons .icon span {
  display: block;
  font-size: 12px;
  margin-top: 5px;
}

footer {
  text-align: center;
  background: #fff1dd;
  padding: 20px;
  margin-top: auto;
}

/* ------------------------
   Новини (додано)
-------------------------*/

.news-item {
  background-color: rgba(255, 255, 255, 0.85);
  padding: 20px;
  margin: 20px auto;
  max-width: 600px;
  border-radius: 10px;
  text-align: center;
}

.news-item img {
  max-width: 400px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 15px auto;
  border-radius: 8px;
}

.news-item p {
  font-size: 1.2em;
  font-weight: bold;
  color: #002144;
}

.lesson-list {
  list-style: none;
  padding: 0;
  max-width: 400px;
  margin: 0 auto;
  text-align: center;
}

.lesson-list li {
  margin: 10px 0;
}

.lesson-list a {
  display: inline-block;
  background: rgba(255, 255, 255, 0.85);
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  color: #002266;
  font-weight: bold;
  transition: background 0.3s;
}

.lesson-list a:hover {
  background: #FFA726;
  color: #fff;
}


