body {
    margin: 0;
    font-family: 'Orbitron', sans-serif;
    color: #FFFFFF;
    background: #000000;
  }
  h2{
    font-size: 28px;
    margin: 0;
    margin-bottom: 40px;
  }
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: #0d0e10;
    box-shadow: 0 2px 5px rgba(0,0,0,0.5);
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .logo {
    font-size: 24px;
    font-weight: 700;
    color: #10B981;
  }
  
  .nav-menu ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
  }
  .nav-menu ul li::before{
    display: none;
  }
  .nav-menu a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 16px;

  }
  
  .burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }
  
  .burger-menu span {
    width: 30px;
    height: 3px;
    background: #10B981;
  }
  
  .hero {
    display: flex;
    align-items: center;
    padding: 100px 50px;

    color: #10B981;
  }
  
  .hero__content h1 {
    font-size: 48px;
    text-shadow: 2px 2px #1E3A8A;
  }
  
  .hero__content p {
    font-size: 18px;
    margin: 20px 0;
  }
  
  .btn {
    padding: 12px 25px;
    background: #10B981;
    color: #000000;
    text-decoration: none;
    border-radius: 5px;
    text-transform: uppercase;
  }
  
  .hero__image img {
    max-width: 100%;
    flex: 1;
  }
  
  .about, .features, .team, .portfolio, .services, .events, .testimonials, .pricing, .faq, .why-choose-us, .blog, .contact {
    padding: 80px 0;
    text-align: center;
    background: #242424;
  }
  
  .about__content, .features-content {
    display: flex;
    gap: 20px;
    align-items: center;
  }
  
  .about__content .image img, .features-content .image img {
    max-width: 100%;
    border: 2px solid #10B981;
  }
  
  .team__members {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  
  .member img {
    width: 250px;
    min-width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 2px solid #10B981;
  }
  
  .portfolio__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .item img {
   
    border: 5px solid #10B981;
  }
  
  .services__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .service img {
    width: 50px;
    filter: brightness(0) invert(1);
  }
  
  #events .events__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .event__item a {
    color: #10B981;
    text-decoration: none;
  }
  
  #testimonials .testimonial {
    background: #1E3A8A;
    padding: 20px;
    border: 1px solid #10B981;
    border-radius: 10px;
  }
  
  .testimonial .rating {
    color: #FFD700;
  }
  
  .pricing__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .card {
    background: #050505;
    padding: 20px;
    border: 1px solid #10B981;
    border-radius: 10px;
  }
  
  .faq__items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  #why-choose-us .tabs .tab__content {
    margin-top: 20px;
  }
  
  .tab__buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
  }
  
  .tab__link {
    background: #1E3A8A;
    color: #10B981;
    padding: 10px;
    border: 1px solid #10B981;
    cursor: pointer;
  }
  
  .tab__link.active {
    background: #10B981;
    color: #000000;
  }
  
  .blog__posts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .post img {
    width: 100%;
    border: 2px solid #10B981;
  }
  
  .contact__form form {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .contact__form input, .contact__form textarea {
    padding: 10px;
    border: 1px solid #10B981;
    border-radius: 5px;
    background: #000000;
    color: #FFFFFF;
  }
  
  .events__page .events__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .event__card {
    background: #1E3A8A;
    padding: 20px;
    border: 1px solid #10B981;
    border-radius: 10px;
  }
  
  footer {
    background: #000000;
    color: #10B981;
    padding: 50px;
    text-align: center;
  }
  
  .footer__columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  
  .social__icons img {
    width: 24px;
    margin: 0 10px;
    filter: brightness(0) invert(1);
  }
  
  .back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #10B981;
    color: #000000;
    padding: 10px 15px;
    border-radius: 50%;
    display: none;
    cursor: pointer;
  }
  
  @media (max-width: 768px) {
  
    .nav-menu {
      display: none;
      width: 100%;
    }
    .nav-menu.active {
      display: block;
    }
    header {
      display: flex
  ;
      justify-content: space-between;
      align-items: center;
      padding: 20px 15px;
      background: #0d0e10;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
      position: sticky;
      top: 0;
      z-index: 1000;
  }
    .nav-menu ul

     {
            flex-direction: column;
            text-align: center;
            background-color: #000;
            bottom: -320px;
            width: 100%;
            left: 0;
            padding: 20px;
            position: absolute;
        }
    .burger-menu {
      display: flex;
    }
    .about__content, .features-content {
      flex-direction: column;
    }
    .team__members, .portfolio__items, .services__list, .pricing__cards, .faq__items, .blog__posts, .events__grid {
      grid-template-columns: 1fr;
    }
  }
  .about__content{
    display: flex;
    gap: 56px;
  }
  .about__image img{
    width: 100%;
    border-radius: 5px;
    height: 400px;
    object-fit: cover;
  }
  .about__image,
  .about__text{
    flex: 1;
  }
  .container{
    max-width: 1140px;
    padding: 0 15px;
    margin: 0 auto;
  }
  ul li{
    text-align: start;
    margin-bottom: 12px;
    font-size: 15px;
    color: #d1d1d1;
    position: relative;
  }
  ul{
    list-style: none;
  }
 ul li:before {
    left: 0;
    left: -25px;
    font-size: 20px;
    top: -.3rem;
    color: #71bc42;
    content: "✔";
    position: absolute;
}
.features span{
    font-weight: 700;
    color: #cccccc;
    font-weight: 18px;
    max-width: 900px;
    margin: 0 auto;
    margin-bottom: 40px;
}
.features img{
    width: 100%;
    object-fit: cover;
    height: 350px;
}
.features__wrapper{
    gap: 50px;
    display: flex;
    margin-top: 50px;
}
.features__wrap{
    flex: 1;
}
.team h2{
    margin-bottom: 40px;
}
.services__list{
  flex-wrap: wrap;
}
.services__list .icon {
    font-size: 40px;
    color: #ff6b00;
    margin-bottom: 10px;
  }
  .service {
    text-align: center;
    padding: 20px;
  }
  .service__icon {
    margin-top: 40px;
  }
  .service__icon i{
    font-size: 40px;
  }
  .services__wrapper{
    display: flex;
   gap: 50px;
  }
  .services__list {
    display: grid
;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.portfolio__items{

  gap: 0;
}
.portfolio__item{
flex: 1;
}
.portfolio__item img{
  width: 100%;
  height: 350px;
  object-fit: cover;
}
.events__wrap{
  flex: 1;
}
.events__wrap img{
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
  height: 400px;
}
.events__wrapper{
  display: flex;
  gap: 55px;
}

.events__list {
  display: flex
;
  margin-top: 41px;
  gap: 15px;
  flex-direction: column;
}
.testimonials__wrapper{
  display: flex;
  gap: 55px;
}
.testimonials__wrap{
width: 44%;
}
.swiper-container{
  overflow: hidden;
}
.card span{
font-size: 30px;
}
.card ul {
  margin-bottom: 40px;
}
.tab__buttons{
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.tab__content{
  display: flex;
  gap: 40px;
}
.tab__content p{
  width: 66%;
}
.tab__content .about__image{
  width: 44%;
}
.tab__content .about__image img{
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.tab__link {
  background: transparent;
  color: #10B981;
  padding: 10px;
  border: 1px solid #10B981;
  cursor: pointer;
}
.blog__items{
  display: flex;
  gap: 55px;
}
.blog__item {
  flex: 1;
}
.blog__item img {
  height: 350px;
  object-fit: cover;
  width: 100%;
}
a{
  text-decoration: none;
}
.blog__item a{
  color: #10B981;
  display: block;
  text-align: start;
  margin-right: auto;
}
.blog__item p{
  text-align: start;
}
.footer__column {
  display: flex
;
  flex-direction: column;
  gap: 10px;

}
.footer__column a{
  color: #fff;
}
.social__icons i{
  margin-right: 10px;
  font-size: 25px;
}
.event__card span{
  color: #cccccc;
  font-size: 14px;
}
.event__card {
  background: transparent;
  padding: 20px;
  border: 1px solid #10B981;
  border-radius: 10px;
}
.contact__items {
  display: flex;
  gap: 55px;
  align-items: center;
}
.contact__form,
.contact__info{
  flex: 1;
}
.contact__form input, .contact__form textarea

 {
    padding: 10px;
    border: 1px solid #10B981;
    border-radius: 5px;
    background: transparent;
    color: #FFFFFF;
}
.services__wrap img{
  width: 320px;
  object-fit: cover;
  min-height: 400px;
  border-radius: 10px;
}



.blog.blogi .container{
  max-width: 900px;
}
.blog.blogi .blog__posts {
  display: grid
;
  grid-template-columns: repeat(1, 1fr);
  gap: 50px;
}
.blog.blogi .post img {
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
  height: 319px;
  border: 2px solid #10B981;
}
.blog.blogi .post a{
  color: #10B981;
}
.iitem{
  background-color: #242424;
  padding:80px 0 ;
}
.iitem .container{
  max-width: 1000px;
}
.iitem img{
  width: 100%;
  height: 350px;
  object-fit: cover;
  margin-bottom: 10px;
}
.iitem__wrapper{
  display: flex;
  max-width: 10px 0;
  gap: 30px;
}
.iitem__wrap {
  flex: 1;
}
.faq__section {
  max-width: 800px;
  margin: auto;
}

.faq__title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.faq__item {
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
}

.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  cursor: pointer;
}

.faq__icon {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.faq__question.active .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  display: none;
  padding: 10px 0 0;
  color: #bfbbbb;
  text-align: start;
}

.faq__question.active + .faq__answer {
  display: block;
}
@media screen and (max-width:768px) {
  .hero {
    display: flex
;
    align-items: center;
    padding: 30px 10px 50px;
    color: #10B981;
}
.features__wrapper {
  gap: 50px;
  display: flex
;
  margin-top: 50px;
  flex-direction: column;
}
.services__wrapper {
  display: flex
;
  gap: 50px;
  flex-direction: column;
}
.events__wrapper {
  display: flex
;
  gap: 55px;
  flex-direction: column;
}
.testimonials__wrapper {
  display: flex
;
  gap: 55px;
  flex-direction: column-reverse;
}
.testimonials__wrap {
  width: 100%;
}
.tab__content {
  display: flex
;
  gap: 40px;
  flex-direction: column;
}
.tab__content .about__image {
  width: 100%;
}
.tab__content .about__image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.blog__items {
  display: flex
;
  gap: 55px;
  flex-direction: column;
}
.footer__columns {
  display: grid
;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.events__page .events__grid {
  display: grid
;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}
.iitem__wrapper {
  display: flex
;
  margin: 10px 0;
  gap: 30px;
  flex-direction: column;
}
.contact__items {
  display: flex
;
  gap: 55px;
  align-items: center;
  flex-direction: column;
}
}
.cookie__banner {
  position: fixed;
  display: none;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #222;
  color: #fff;
  padding: 16px;
  border-radius: 8px;

  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie__banner a {
  color: #ffd700;
  text-decoration: underline;
}

.cookie__banner button {
  background: #ffd700;
  color: #222;
  border: none;
  padding: 8px 16px;
  cursor: pointer;
  border-radius: 5px;
}
#acceptCookies:hover{
  background: #806d07;
}
.hero.home {
    position: relative;
    overflow: hidden;
}

.hero.home::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55); /* Тебе нужно только этот цвет менять по желанию */
    z-index: 1;
    pointer-events: none;
}

.hero__content, .container {
    position: relative;
    z-index: 2; /* Контент будет поверх затемнения! */
}