* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: #f4f6fb;
  color: #333;
}

.header {
  background: linear-gradient(135deg, #0b1d3a, #1f3b73, #3a5ca9);
  color: white;
  padding: 15px 20px;
  position: relative;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: white;
}

.header__logo-img {
  height: 40px;
  width: 40px;
}

.header__logo-link span {
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 1px;
}

.header__logo-img {
  filter: brightness(0) invert(1);
}

.header__nav {
  display: flex;
  flex-direction: column;
}

.header__menu {
  list-style: none;
  display: flex;
  gap: 30px;
}

.header__menu li a {
  color: #e0e7ff;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
}

.header__menu li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #a3c4ff;
  transition: width 0.3s ease;
}

.header__menu li a:hover {
  color: #ffffff;
}

.header__menu li a:hover::after {
  width: 100%;
}

.header__contact {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #d0d9ff;
}

.header__contact a {
  color: #a3c4ff;
  text-decoration: none;
  margin-left: 10px;
  transition: color 0.3s;
}

.header__contact a:hover {
  color: #ffffff;
}

.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.header__burger span {
  width: 25px;
  height: 3px;
  background: #ffffff;
  display: block;
  border-radius: 2px;
  transition: all 0.3s;
}

@media (max-width: 768px) {
  .header__nav {
    position: absolute;
    top: 70px;
    left: -100%;
    width: 100%;
    background: linear-gradient(135deg, #0b1d3a, #1f3b73, #3a5ca9);
    flex-direction: column;
    padding: 20px;
    transition: left 0.3s ease;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .header__nav.active {
    left: 0;
  }

  .header__menu {
    flex-direction: column;
    gap: 20px;
  }

  .header__contact {
    margin-top: 20px;
  }

  .header__burger {
    display: flex;
  }
}

.footer {
  background: linear-gradient(135deg, #0b1d3a, #1f3b73);
  color: #e0e7ff;
  padding: 50px 20px 20px;
  font-size: 0.95rem;
  margin-top: auto; 
}

.footer__container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: space-between;
}

.footer__col {
  flex: 1 1 220px; 
}

.footer__col h3, .footer__col h4 {
  color: #ffffff;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer__col p, .footer__col ul, .footer__col a {
  color: #d0d9ff;
  text-decoration: none;
}

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

.footer__col ul li {
  margin-bottom: 8px;
}

.footer__col ul li a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer__bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,0.2);
  font-size: 0.85rem;
  color: #a3c4ff;
}

@media (max-width: 768px) {
  .footer__container {
    flex-direction: column;
    gap: 30px;
  }

  .footer__col {
    flex: 1 1 100%;
  }
}

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-family: 'Arial', sans-serif;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0b1d3a, #1f3b73, #3a5ca9);
  background-size: 600% 600%;
  animation: gradientShift 15s ease infinite;
  z-index: 0;
}

@keyframes gradientShift {
  0%{background-position:0% 50%;}
  50%{background-position:100% 50%;}
  100%{background-position:0% 50%;}
}

.hero__container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  padding: 0 20px;
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 30px 25px;
  border-radius: 15px;
}

.hero__title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0,0,0,0.8);
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
  transform: translateY(50px);
}

.hero__subtitle {
  font-size: 1.5rem;
  margin-bottom: 30px;
  line-height: 1.4;
  color: #f0f8ff;
  text-shadow: 0 3px 15px rgba(0,0,0,0.7);
  animation: fadeInUp 1.2s ease forwards;
  opacity: 0;
  transform: translateY(50px);
}

.hero__btn {
  display: inline-block;
  padding: 15px 35px;
  font-weight: 600;
  border-radius: 8px;
  background-color: #1f3b73;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
  transition: all 0.3s ease;
}

.hero__btn:hover {
  background-color: #3a5ca9;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}

.hero__image img {
  max-width: 500px;
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  animation: fadeInRight 1.5s ease forwards;
  opacity: 0;
  transform: translateX(50px);
}

.hero__canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
}

@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 992px) {
  .hero__container {
    flex-direction: column-reverse;
    text-align: center;
    gap: 40px;
  }

  .hero__title {
    font-size: 3rem;
  }

  .hero__subtitle {
    font-size: 1.2rem;
  }
}

.about {
  padding: 100px 20px;
  background-color: #f5f7ff; 
  color: #0b1d3a;
  font-family: 'Montserrat', sans-serif;
}

.about__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 50px;
}

.about__text {
  flex: 1 1 500px;
}

.about__title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 25px;
  line-height: 1.2;
  color: #1f3b73;
}

.about__subtitle {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #1a2d5b;
  margin-bottom: 20px;
}

.about__image {
  flex: 1 1 500px;
  display: flex;
  justify-content: center;
}

.about__image img {
  max-width: 100%;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  transition: transform 0.5s ease;
}

.about__image img:hover {
  transform: scale(1.03);
}

@media (max-width: 992px) {
  .about__container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .about__title {
    font-size: 2.2rem;
  }

  .about__subtitle {
    font-size: 1.1rem;
  }

  .about__image {
    margin-bottom: 40px;
  }
}

.advantages {
  position: relative;
  padding: 100px 20px;
  font-family: 'Montserrat', sans-serif;
  color: #ffffff;
  overflow: hidden;
}

.advantages__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0b1d3a, #1f3b73, #3a5ca9);
  z-index: 0;
}

.advantages__container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.advantages__title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 60px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.7);
}

.advantages__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.advantage {
  background: rgba(0,0,0,0.45);
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  transform: translateY(50px);
}

.advantage:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.advantage__icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.advantage__title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.advantage__desc {
  font-size: 1rem;
  line-height: 1.5;
}

.advantages__canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .advantages__title { font-size: 2.2rem; }
  .advantage__title { font-size: 1.3rem; }
  .advantage__desc { font-size: 0.95rem; }
}

.contacts {
  background-color: #ffffff;
  padding: 100px 20px;
  font-family: 'Montserrat', sans-serif;
  color: #1f3b73;
}

.contacts__container {
  max-width: 1200px;
  margin: 0 auto;
}

.contacts__title {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 60px;
  color: #1f3b73;
}

.contacts__columns {
  display: flex;
  gap: 50px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.contacts__info {
  flex: 1;
  min-width: 280px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.contact-icon {
  font-size: 2rem;
}

.contact-description p {
  margin-bottom: 15px;
  line-height: 1.6;
  font-size: 1rem;
}

.contacts__map {
  flex: 1;
  min-width: 280px;
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.contacts__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 992px) {
  .contacts__columns {
    flex-direction: column;
    gap: 40px;
  }

  .contacts__title { font-size: 2.4rem; }
}

.contacts-page {
  position: relative;
  font-family: 'Montserrat', sans-serif;
  color: #ffffff;
  overflow: hidden;
  min-height: 100vh;
  background: linear-gradient(135deg, #0b1d3a, #1f3b73, #3a5ca9);
  padding: 80px 20px;
}

.contacts__canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.contacts__container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.contacts__title {
  text-align: center;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 60px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.7);
}

.contacts__columns {
  display: flex;
  gap: 50px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.contacts__info {
  flex: 1;
  min-width: 280px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.contact-icon {
  font-size: 2rem;
}

.contact-description p {
  margin-bottom: 15px;
  line-height: 1.6;
  font-size: 1rem;
}

.contacts__map-form {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contacts__map {
  width: 100%;
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.contacts__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contacts__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contacts__form input,
.contacts__form textarea {
  padding: 15px 20px;
  border-radius: 10px;
  border: none;
  outline: none;
  font-size: 1rem;
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.contacts__form input::placeholder,
.contacts__form textarea::placeholder {
  color: rgba(255,255,255,0.7);
}

.contacts__form button {
  padding: 15px 30px;
  border-radius: 10px;
  border: none;
  font-weight: 700;
  background-color: #1f3b73;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contacts__form button:hover {
  background-color: #3a5ca9;
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .contacts__columns {
    flex-direction: column;
    gap: 40px;
  }

  .contacts__title { font-size: 2.4rem; }
}

.promocje-page {
  font-family: 'Montserrat', sans-serif;
  color: #0b1d3a;
  margin: 0;
  padding: 0;
  background: #f9f9f9;
}

.promocje-hero {
  background: linear-gradient(135deg, #0b1d3a, #1f3b73, #3a5ca9);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.promocje-hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  font-weight: 800;
}

.promocje-hero p {
  font-size: 1.5rem;
}

.promocje-section h2 {
  text-align: center;
  font-size: 2rem;
  margin: 50px 0 30px;
  color: #0b1d3a;
}

.promocje-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.card img {
  width: 100%;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.card h3 {
  margin: 15px 0 10px;
  font-size: 1.3rem;
  color: #1f3b73;
}

.card p {
  margin-bottom: 10px;
  color: #333;
}

.card-btn {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 50px;
  background-color: #1f3b73;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.card-btn:hover {
  background-color: #3a5ca9;
}

.promo-benefits {
  background: linear-gradient(135deg, #0b1d3a, #1f3b73, #3a5ca9);
  padding: 60px 20px;
}

.benefits-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  justify-content: center;
}

.benefit-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  flex: 1 1 250px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
}

.benefit-card h3 {
  margin-bottom: 10px;
  color: #1f3b73;
}

.benefit-card p {
  color: #555;
}

.testimonials {
  padding: 60px 20px;
  background: #f5f5f5;
}

.testimonial-card {
  background: #fff;
  max-width: 500px;
  margin: 20px auto;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  text-align: center;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 10px;
  color: #333;
}

.testimonial-card span {
  display: block;
  font-weight: 600;
  color: #1f3b73;
}

.promocje-cta {
  background: #0b1d3a;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.promocje-cta h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.promocje-cta p {
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.cta-btn {
  padding: 12px 25px;
  border-radius: 50px;
  border: none;
  background-color: #3a5ca9;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
  text-decoration: none;
  cursor: pointer;
}

.cta-btn:hover {
  background-color: #1f3b73;
}

@media (max-width: 992px) {
  .benefits-cards {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .promocje-hero h1 { font-size: 2.2rem; }
  .promocje-hero p { font-size: 1.2rem; }
  .card h3 { font-size: 1.1rem; }
  .promo-benefits h3 { font-size: 1.2rem; }
  .promocje-cta h2 { font-size: 1.5rem; }
}

.oferta-page {
  font-family: 'Montserrat', sans-serif;
  color: #0b1d3a;
  background: #f9f9f9;
}

.oferta-hero {
  background: linear-gradient(135deg, #0b1d3a, #1f3b73, #3a5ca9);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.oferta-hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  font-weight: 800;
}

.oferta-hero p {
  font-size: 1.5rem;
}

.oferta-categories h2 {
  text-align: center;
  font-size: 2rem;
  margin: 50px 0 30px;
}

.category-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto 60px;
  justify-content: center;
}

.category-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  flex: 1 1 250px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.category-card:hover {
  transform: translateY(-5px);
}

.category-card h3 {
  margin-bottom: 10px;
  color: #1f3b73;
}

.category-card p {
  color: #555;
}

.oferta-products h2 {
  text-align: center;
  font-size: 2rem;
  margin: 50px 0 30px;
}

.product-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.product-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.product-card img {
    height: 350px;
  width: 100%;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.product-card h3 {
  margin: 15px 0 10px;
  color: #1f3b73;
}

.product-card p {
  margin-bottom: 10px;
  color: #333;
}

.product-btn {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 50px;
  background-color: #1f3b73;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.product-btn:hover {
  background-color: #3a5ca9;
}

.oferta-benefits {
  background: linear-gradient(135deg, #0b1d3a, #1f3b73, #3a5ca9);
  padding: 60px 20px;
}

.oferta-benefits h2 {
    display: flex;
    margin: 15px 0 10px;
    justify-content: center;
    color: #1f3b73;
}

.benefits-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  justify-content: center;
}

.benefit-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  flex: 1 1 250px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
}

.benefit-card h3 {
  margin-bottom: 10px;
  color: #1f3b73;
}

.benefit-card p {
  color: #555;
}

.oferta-cta {
  background: #0b1d3a;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.oferta-cta h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.oferta-cta p {
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.cta-btn {
  padding: 12px 25px;
  border-radius: 50px;
  border: none;
  background-color: #3a5ca9;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s;
}

.cta-btn:hover {
  background-color: #1f3b73;
}

@media (max-width: 992px) {
  .category-cards,
  .benefits-cards {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .oferta-hero h1 { font-size: 2.2rem; }
  .oferta-hero p { font-size: 1.2rem; }
  .product-card h3, .category-card h3, .benefit-card h3 { font-size: 1.1rem; }
  .oferta-cta h2 { font-size: 1.5rem; }
}

.about-page {
  font-family: 'Montserrat', sans-serif;
  color: #0b1d3a;
  background: #f9f9f9;
}

.about-hero {
  background: linear-gradient(135deg, #0b1d3a, #1f3b73, #3a5ca9);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.about-hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  font-weight: 800;
}

.about-hero p {
  font-size: 1.5rem;
}

.about-history {
  max-width: 900px;
  margin: 50px auto;
  padding: 0 20px;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.6;
}

.about-mission {
  background: linear-gradient(135deg, #1f3b73, #3a5ca9, #0b1d3a);
  padding: 80px 20px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.about-mission h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 50px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #fff;
  text-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

.mission-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.mission-card {
  background: rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 40px 30px;
  width: 280px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  backdrop-filter: blur(10px);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  text-align: center;
  cursor: default;
}

.mission-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.mission-card h3 {
  font-size: 2rem;
  margin-bottom: 15px;
  font-weight: 700;
  background: linear-gradient(90deg, #ffd700, #00bfff, #ff8c00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mission-card p {
  font-size: 1.1rem;
  color: #e0e0e0;
  line-height: 1.6;
}

.about-mission::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
  border-radius: 50%;
  top: -80px;
  left: -80px;
  z-index: 1;
  animation: floatCircle 12s ease-in-out infinite alternate;
}

.about-mission::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
  bottom: -60px;
  right: -60px;
  z-index: 1;
  animation: floatCircle2 10s ease-in-out infinite alternate;
}

@keyframes floatCircle {
  0% { transform: translateY(0) rotate(0deg);}
  50% { transform: translateY(25px) rotate(45deg);}
  100% { transform: translateY(-20px) rotate(90deg);}
}

@keyframes floatCircle2 {
  0% { transform: translateY(0) rotate(0deg);}
  50% { transform: translateY(-20px) rotate(-45deg);}
  100% { transform: translateY(15px) rotate(-90deg);}
}

/* Адаптивність */
@media (max-width: 992px) {
  .mission-cards {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .about-mission h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .mission-card h3 {
    font-size: 1.7rem;
  }

  .mission-card p {
    font-size: 1rem;
  }
}

.about-testimonials {
  padding: 60px 20px;
  text-align: center;
}

.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  justify-content: center;
}

.testimonial-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px 20px;
  flex: 1 1 250px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  text-align: center;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 10px;
  color: #333;
}

.testimonial-card span {
  display: block;
  font-weight: 600;
  color: #1f3b73;
}

.about-achievements {
  background: linear-gradient(135deg, #0b1d3a, #1f3b73, #3a5ca9);
  padding: 60px 20px;
  text-align: center;
}

.about-achievements {
  background: linear-gradient(135deg, #0b1d3a, #1f3b73, #3a5ca9);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-achievements h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  text-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

.achievement-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.achievement-card {
  background: rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 40px 30px;
  width: 250px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  backdrop-filter: blur(10px);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  text-align: center;
  cursor: default;
}

.achievement-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.achievement-card h3 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #ffd700, #ff8c00, #00bfff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.achievement-card p {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #e0e0e0;
  line-height: 1.5;
}

.about-achievements::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
  border-radius: 50%;
  top: -100px;
  left: -100px;
  z-index: 1;
  animation: floatCircle 12s ease-in-out infinite alternate;
}

.about-achievements::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
  bottom: -80px;
  right: -80px;
  z-index: 1;
  animation: floatCircle2 10s ease-in-out infinite alternate;
}

@keyframes floatCircle {
  0% { transform: translateY(0) rotate(0deg);}
  50% { transform: translateY(30px) rotate(45deg);}
  100% { transform: translateY(-20px) rotate(90deg);}
}

@keyframes floatCircle2 {
  0% { transform: translateY(0) rotate(0deg);}
  50% { transform: translateY(-25px) rotate(-45deg);}
  100% { transform: translateY(15px) rotate(-90deg);}
}

/* Адаптив */
@media (max-width: 992px) {
  .achievement-cards {
    flex-direction: column;
    gap: 30px;
  }

  .achievement-card h3 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .about-achievements h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .achievement-card h3 {
    font-size: 2rem;
  }
}

.about-cta {
  background: #0b1d3a;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.about-cta h2,
.about-mission h2,
.about-achievements h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.about-cta p {
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.cta-btn {
  padding: 12px 25px;
  border-radius: 50px;
  border: none;
  background-color: #3a5ca9;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s;
}

.cta-btn:hover {
  background-color: #1f3b73;
}

@media (max-width: 992px) {
  .mission-cards, .testimonial-cards, .achievement-cards {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .about-hero h1 { font-size: 2.2rem; }
  .about-hero p { font-size: 1.2rem; }
  .mission-card h3, .testimonial-card span, .achievement-card h3 { font-size: 1.1rem; }
  .about-cta h2 { font-size: 1.5rem; }
}

.privacy-page {
  font-family: 'Montserrat', sans-serif;
  color: #0b1d3a;
  background: #f9f9f9;
}

.privacy-hero {
  background: linear-gradient(135deg, #0b1d3a, #1f3b73, #3a5ca9);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.privacy-hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  font-weight: 800;
}

.privacy-hero p {
  font-size: 1.5rem;
}

.privacy-content {
  max-width: 900px;
  margin: 50px auto;
  padding: 0 20px;
}

.privacy-block {
  margin-bottom: 40px;
  background: #fff;
  padding: 30px 25px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.privacy-block h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #1f3b73;
}

.privacy-block p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
}


.privacy-cta {
  background: #1f3b73;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.privacy-cta h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.privacy-cta p {
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.cta-btn {
  padding: 12px 25px;
  border-radius: 50px;
  border: none;
  background-color: #3a5ca9;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s;
}

.cta-btn:hover {
  background-color: #0b1d3a;
}

@media (max-width: 768px) {
  .privacy-hero h1 {
    font-size: 2.2rem;
  }
  .privacy-hero p {
    font-size: 1.2rem;
  }
  .privacy-block h2 {
    font-size: 1.5rem;
  }
  .privacy-block p {
    font-size: 1rem;
  }
  .privacy-cta h2 {
    font-size: 1.5rem;
  }
}

.cookies-page {
  font-family: 'Montserrat', sans-serif;
  color: #0b1d3a;
  background: #f9f9f9;
}

.cookies-hero {
  background: linear-gradient(135deg, #0b1d3a, #1f3b73, #3a5ca9);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.cookies-hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  font-weight: 800;
}

.cookies-hero p {
  font-size: 1.5rem;
}

.cookies-content {
  max-width: 900px;
  margin: 50px auto;
  padding: 0 20px;
}

.cookies-block {
  margin-bottom: 40px;
  background: #fff;
  padding: 30px 25px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.cookies-block h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #1f3b73;
}

.cookies-block p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
}

.cookies-cta {
  background: #1f3b73;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.cookies-cta h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.cookies-cta p {
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.cta-btn {
  padding: 12px 25px;
  border-radius: 50px;
  border: none;
  background-color: #3a5ca9;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s;
}

.cta-btn:hover {
  background-color: #0b1d3a;
}

@media (max-width: 768px) {
  .cookies-hero h1 {
    font-size: 2.2rem;
  }
  .cookies-hero p {
    font-size: 1.2rem;
  }
  .cookies-block h2 {
    font-size: 1.5rem;
  }
  .cookies-block p {
    font-size: 1rem;
  }
  .cookies-cta h2 {
    font-size: 1.5rem;
  }
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(30, 60, 115, 0.95);
  color: #fff;
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.3);
  display: none; 
  flex-direction: column;
  align-items: center;
  gap: 15px;
  max-width: 500px;
  z-index: 9999;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
}

.cookie-banner a { color: #5383ff; text-decoration: underline; }

.cookie-buttons { display: flex; gap: 10px; }

.cookie-btn { padding: 10px 20px; border-radius: 50px; border: none; cursor: pointer; font-weight: 600; transition: 0.3s; }
.cookie-btn:hover { opacity: 0.85; }
.cookie-btn.decline { background-color: #fff; color: #1f3b73; }
.cookie-btn:not(.decline) { background-color: #5383ff; color: #0b1d3a; }
