* {
  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 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: linear-gradient(135deg, #4b0000, #a80000, #ff1a1a); /* темно-бордовий → яскраво-червоний */
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  position: relative;
  box-shadow: 0 5px 20px rgba(0,0,0,0.4);
}

.header__logo img {
  width: 50px;
  margin-right: 12px;
  vertical-align: middle;
}

.header__logo a {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.6rem;
  color: #ffffff;
  text-decoration: none;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.6);
}

.header__nav ul {
  display: flex;
  list-style: none;
  gap: 28px;
  z-index: 9999;
}

.header__nav a {
  color: #ffd6d6; /* світлий червоний для посилань */
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.header__nav a:hover {
  color: #ff4d4d; /* яскравий червоний акцент при наведенні */
}

.header__contacts p {
  margin: 0;
  font-size: 0.95rem;
  color: #ffe5e5; /* світлий текст для контактів */
}

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

.burger span {
  width: 25px;
  height: 3px;
  background: #ffffff;
  border-radius: 3px;
}

/* Адаптив */
@media (max-width: 992px) {
  .header__nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #4b0000; /* темно-бордовий для мобільного меню */
    display: none;
    flex-direction: column;
    padding: 20px 0;
  }

  .header__nav.active {
    display: flex;
  }

  .header__nav ul {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .burger {
    display: flex;
  }

  .header__contacts {
    display: none;
  }
}

.footer {
  background: linear-gradient(135deg, #4b0000, #a80000, #ff1a1a);
  color: #fff;
  padding: 60px 30px 30px;
  font-family: 'Montserrat', sans-serif;
}

.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;
  min-width: 200px;
}

.footer__col h4 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #ffe5e5;
}

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

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

.footer__col ul li a {
  color: #ffd6d6;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.footer__col ul li a:hover {
  color: #ffffff;
}

.footer__brand p {
  margin-top: 15px;
  line-height: 1.5;
  color: #ffd6d6;
}

.footer__logo {
  width: 100px;
}

/* Стилізація контактів */
.footer__contact {
  color: #ffebeb;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.footer__contact:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer__bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 0.9rem;
  color: #ffb3b3;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 20px;
}

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

  .footer__bottom {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .footer__logo {
    width: 100px;
  }
}

.header__nav .mobile-contacts {
  display: none;
  flex-direction: column;
  gap: 10px;
  margin-top: 15px;
  color: #ffd6d6;
  font-weight: 500;
}

.header__nav.active .mobile-contacts {
  display: flex;
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #4b0000, #a80000, #ff1a1a);
  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: #ffd6d6;
  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: #a80000;
  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: #ff1a1a;
  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: 120px 20px;
  background: #fff;
  color: #000000;
  font-family: 'Montserrat', sans-serif;
}

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

.about__text {
  flex: 1 1 500px;
  color: #000000 !important;
}


.about__title {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 25px;
  line-height: 1.2;
  text-transform: uppercase;
  color: #000000;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.about__subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #000000;
}

.about__image-wrapper {
  flex: 1 1 500px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about__image-decor {
  position: absolute;
  width: 80%;
  height: 80%;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  top: -10%;
  left: -10%;
  filter: blur(80px);
  z-index: 0;
}

.about__image {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
  z-index: 1;
}

.about__image:hover {
  transform: scale(1.05) rotate(-1deg);
  box-shadow: 0 25px 60px rgba(0,0,0,0.5);
}

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

  .about__title {
    font-size: 2.4rem;
  }

  .about__subtitle {
    font-size: 1.1rem;
  }

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

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

.advantages__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #4b0000, #a80000, #ff1a1a);
  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: 900;
  margin-bottom: 60px;
  text-shadow: 2px 2px 15px rgba(0,0,0,0.5);
}

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

.advantage {
  background: rgba(0,0,0,0.45);
  padding: 35px 25px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  opacity: 0;
  transform: translateY(50px);
}

.advantage:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

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

.advantage__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffd6d6;
}

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

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

/* Адаптив */
@media (max-width: 992px) {
  .advantages__title { font-size: 2.4rem; }
  .advantage__title { font-size: 1.35rem; }
  .advantage__desc { font-size: 1rem; }
}

.contact-page {
  position: relative;
  font-family: 'Montserrat', sans-serif;
  min-height: 100vh;
  color: #000000;
  overflow: hidden;
  background: #fff;
  padding: 80px 20px;
}

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

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

.contact-page__title {
  text-align: center;
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 60px;
  text-shadow: 2px 2px 15px rgba(0,0,0,0.5);
}

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

.contact-page__map {
  flex: 1 1 500px;
  height: 450px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.contact-page__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-page__info {
  flex: 1 1 450px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.1rem;
}

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

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

/* Адаптив */
@media (max-width: 992px) {
  .contact-page__layout {
    flex-direction: column-reverse;
    gap: 40px;
  }

  .contact-page__title {
    font-size: 2.4rem;
  }
}

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

/* CTA */
.promocje-cta {
  background: linear-gradient(135deg, #c72c2c, #ff4d4d, #ff8f66);
  color: #fff;
  text-align: center;
  padding: 70px 20px;
}

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

.promocje-cta p {
  font-size: 1.3rem;
  margin-bottom: 25px;
}

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

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

/* Sekcje */
.promocje-section {
  padding: 60px 20px;
  text-align: center;
}

.promocje-section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #680202;
}

/* Karty produktów */
.promocje-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

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

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

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

.card-btn {
  background-color: #680202;
  color: #fff;
  padding: 8px 20px;
  border-radius: 50px;
  text-decoration: none;
}

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

/* Korzyści zakupów */
.benefits-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
  justify-content: center;
}

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

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

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

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

/* Opinie klientów */
.testimonials {
  background: #fff0f0;
  padding: 60px 20px;
}

.testimonial-row {
  display: flex;
}

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

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

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

/* Адаптив */
@media (max-width: 992px) {
  .benefits-cards {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .promocje-cta h2 { font-size: 2rem; }
  .card h3 { font-size: 1.1rem; }
  .benefit-card h3 { font-size: 1.2rem; }
  .promocje-section h2 { font-size: 1.7rem; }
}

.oferta-page {
  font-family: 'Montserrat', sans-serif;
  background: #1c0a0a;
  color: #fff;
  margin: 0;
  padding: 0;
}

/* Hero */
.oferta-hero {
  background: linear-gradient(135deg, #441313, #680202, #ff4d4d);
  text-align: center;
  padding: 80px 20px;
}

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

.oferta-hero p {
  font-size: 1.4rem;
  color: #ffd6d6;
}

/* Benefits */
.oferta-benefits {
  padding: 60px 20px;
  text-align: center;
}

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

.benefit-card {
  background: #441313;
  color: #ffd6d6;
  flex: 1 1 250px;
  padding: 30px 20px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

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

.benefit-card h3 {
  margin-bottom: 10px;
  color: #ffb347;
  font-size: 1.4rem;
}

.benefit-card p {
  font-size: 1rem;
  color: #ffe5e5;
}

/* Products */
.oferta-products {
  padding: 60px 20px;
  background: #1c0a0a;
  text-align: center;
}

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

.product-card {
  background: #680202;
  border-radius: 20px;
  overflow: hidden;
  padding-bottom: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
}

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

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

.product-card p {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #ffe5e5;
}

.product-btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 50px;
  background-color: #ff8f00;
  color: #1c1800;
  text-decoration: none;
  margin-bottom: 10px;
  transition: 0.3s;
}

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

/* Categories */
.oferta-categories {
  padding: 60px 20px;
  text-align: center;
}

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

.category-card {
  background: #441313;
  color: #ffd6d6;
  flex: 1 1 220px;
  padding: 25px 20px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

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

.category-card h3 {
  color: #ffb347;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

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

/* CTA */
.oferta-cta {
  background: #680202;
  text-align: center;
  padding: 60px 20px;
}

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

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

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

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

/* Адаптивність */
@media (max-width: 992px) {
  .benefits-cards, .product-cards, .category-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: #fff5f5;
  padding: 0;
}

/* Hero секція */
.about-hero {
  text-align: center;
  padding: 100px 20px;
  background: linear-gradient(135deg, #680202, #ff4d4d);
}

.about-hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  font-weight: 800;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.6);
}

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

/* Історія */
.about-history {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #ffe5e5;
}

.about__image img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  margin-top: 30px;
}

/* Місія */
.about-mission {
  background: linear-gradient(135deg, #a80000, #ff1a1a);
  padding: 80px 20px;
  text-align: center;
}

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

.mission-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.mission-card {
  background: rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 30px;
  width: 280px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
  backdrop-filter: blur(8px);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.mission-card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.mission-card h3 {
  font-size: 2rem;
  margin-bottom: 12px;
  font-weight: 700;
  background: linear-gradient(90deg, #ffb300, #ff4d4d, #ff1a1a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

/* Відгуки */
.about-testimonials {
  padding: 60px 20px;
  text-align: center;
  color: #000000 !important;
}

.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.testimonial-card {
  background: #680202;
  border-radius: 15px;
  padding: 25px 20px;
  width: 250px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  color: #ffd6d6;
  text-align: center;
}

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

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

/* Досягнення */
.about-achievements {
  background: linear-gradient(135deg, #4b0000, #a80000);
  padding: 80px 20px;
  text-align: center;
}

.achievement-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.achievement-card {
  background: rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 30px;
  width: 240px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
  backdrop-filter: blur(8px);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  text-align: center;
}

.achievement-card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.achievement-card h3 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #ffb300, #ff1a1a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.achievement-card p {
  font-size: 1rem;
  color: #ffe5e5;
}

/* CTA */
.about-cta {
  background: #680202;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

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

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

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

@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.2rem; }
  .about-cta h2 { font-size: 1.5rem; }
}

.privacy-page {
  font-family: 'Montserrat', sans-serif;
  background: #1c0a0a;
  color: #fff;
  margin: 0;
  padding: 0;
}

/* Hero */
.privacy-hero {
  background: linear-gradient(135deg, #441313, #680202, #ff4d4d);
  text-align: center;
  padding: 80px 20px;
}

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

.privacy-hero p {
  font-size: 1.4rem;
  color: #ffd6d6;
}

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

.privacy-block {
  background: #441313;
  padding: 30px 25px;
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.privacy-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.5);
}

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

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

/* CTA Section */
.privacy-cta {
  background: #680202;
  text-align: center;
  padding: 60px 20px;
  margin-top: 50px;
  border-radius: 15px;
}

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

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

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

.privacy-cta .cta-btn:hover {
  background-color: #ff1a1a;
}

/* Адаптивність */
@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.6rem; }
  .privacy-cta p { font-size: 1rem; }
}

.cookies-page {
  font-family: 'Montserrat', sans-serif;
  background: #1c0a0a;
  color: #fff;
  margin: 0;
  padding: 0;
}

/* Hero */
.cookies-hero {
  background: linear-gradient(135deg, #441313, #680202, #ff4d4d);
  text-align: center;
  padding: 80px 20px;
}

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

.cookies-hero p {
  font-size: 1.4rem;
  color: #ffd6d6;
}

/* Content Section */
.cookies-content {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.cookies-block {
  background: #441313;
  padding: 25px 20px;
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.cookies-block h2 {
  color: #ffb3b3;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.cookies-block p {
  color: #ffe5e5;
  line-height: 1.6;
}

/* CTA Section */
.cookies-cta {
  background: #680202;
  padding: 60px 20px;
  text-align: center;
  color: #fff;
}

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

.cookies-cta p {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.cookies-cta .cta-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #ff4d4d;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.cookies-cta .cta-btn:hover {
  background: #ff1a1a;
}

/* Адаптивність */
@media (max-width: 768px) {
  .cookies-hero h1 { font-size: 2.2rem; }
  .cookies-hero p { font-size: 1.1rem; }
  .cookies-block h2 { font-size: 1.3rem; }
  .cookies-cta h2 { font-size: 1.5rem; }
  .cookies-cta p { font-size: 1rem; }
}

.contacts-page {
  font-family: 'Montserrat', sans-serif;
  color: #fff5f5;
  background: linear-gradient(135deg, #4b0000, #a80000, #ff1a1a);
  padding: 60px 30px;
  position: relative;
  min-height: 100vh;
}

/* Канвас для анімаційного фону */
.contacts__canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* Основний контейнер контенту */
.contacts__container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

/* Заголовок */
.contacts__title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
  color: #ffd6d6;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.5);
}

/* Колонки контактів і карти */
.contacts__columns {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  justify-content: space-between;
}

/* Інформація про контакти */
.contacts__info {
  flex: 1 1 350px;
}

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

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

.contact-description p {
  margin-bottom: 15px;
  line-height: 1.5;
  color: #ffd6d6;
}

/* Карта і форма */
.contacts__map-form {
  flex: 1 1 500px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contacts__map iframe {
  width: 100%;
  height: 300px;
  border-radius: 12px;
  border: 2px solid #ff4d4d;
}

/* Форма */
.contacts__form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contacts__form input,
.contacts__form textarea {
  padding: 12px 15px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  resize: none;
}

.contacts__form input:focus,
.contacts__form textarea:focus {
  outline: 2px solid #ff4d4d;
  background-color: #fff0f0;
}

.contacts__form button {
  padding: 12px 20px;
  background: #ff4d4d;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.contacts__form button:hover {
  background: #ff1a1a;
}

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

@media (max-width: 480px) {
  .contacts__title {
    font-size: 1.8rem;
  }
}

.faq-page {
  font-family: 'Montserrat', sans-serif;
  background: #1c0a0a;
  color: #fff;
  margin: 0;
  padding: 0;
}

/* Hero */
.faq-hero {
  background: linear-gradient(135deg, #441313, #680202, #ff4d4d);
  text-align: center;
  padding: 80px 20px;
}
.faq-hero h1 { font-size: 3rem; font-weight: 800; margin-bottom: 15px; }
.faq-hero p { font-size: 1.4rem; color: #ffd6d6; }

/* FAQ Section */
.faq-section { padding: 60px 20px; max-width: 900px; margin: 0 auto; }
.faq-item {
  background: #441313;
  margin-bottom: 20px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}
.faq-question {
  width: 100%;
  padding: 20px;
  text-align: left;
  background: #680202;
  color: #ffd6d6;
  font-size: 1.2rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}
.faq-question:hover { background: #ff1a1a; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #441313;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 20px;
}
.faq-answer p {
  padding: 15px 0;
  color: #ffe5e5;
  line-height: 1.5;
}

/* Активний стан */
.faq-item.active .faq-answer {
  max-height: 1000px;
  padding: 15px 20px;
}
.faq-item.active .faq-question { background: #ff4d4d; }

/* Адаптивність */
@media (max-width: 768px) {
  .faq-hero h1 { font-size: 2.2rem; }
  .faq-hero p { font-size: 1.1rem; }
  .faq-question { font-size: 1.1rem; }
}

.cookie-banner {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #680202;
  color: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
}

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

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-btn:hover { opacity: 0.8; }
.cookie-btn.decline { background: #333; color: #fff; }
.cookie-btn:not(.decline) { background: #ff4d4d; color: #fff; }

.cookie-banner a {
  color: #fff;
}