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

html, body {
   height: auto;
}

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

main {
  flex: 1;
}

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

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&display=swap');

.header {
  background: linear-gradient(135deg, #014f86, #2a9d8f, #72efdd);
  color: white;
  padding: 20px 30px;
  position: relative;
  z-index: 10;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  font-family: 'Montserrat', sans-serif;
}

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

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

.header__logo-img {
  height: 48px;
  width: 48px;
  border-radius: 10px;
  filter: drop-shadow(0 0 6px rgba(0, 255, 255, 0.4));
}

.header__logo-link span {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

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

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

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

.header__menu li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  bottom: -6px;
  left: 0;
  background-color: #ffd166;
  border-radius: 2px;
  transition: width 0.35s ease;
}

.header__menu li a:hover {
  color: #ffffff;
  transform: translateY(-3px);
}

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

.header__contact {
  margin-top: 15px;
  font-size: 0.95rem;
  color: #e8f9ff;
}

.header__contact a {
  color: #ffe8b5;
  text-decoration: none;
  margin-left: 12px;
  transition: color 0.25s ease;
}

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

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

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

.header__burger:hover span {
  transform: scaleX(1.1);
}

@media (max-width: 768px) {
  .header__nav {
    position: absolute;
    top: 90px;
    left: -100%;
    width: 100%;
    background: rgba(1, 79, 134, 0.95);
    backdrop-filter: blur(6px);
    flex-direction: column;
    padding: 30px;
    transition: left 0.35s ease;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  }

  .header__nav.active {
    left: 0;
  }

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

  .header__contact {
    margin-top: 30px;
  }

  .header__burger {
    display: flex;
  }
}

.footer {
  background: linear-gradient(135deg, #014f86, #2a9d8f);
  color: #e7faff;
  padding: 55px 25px 25px;
  font-size: 0.95rem;
  margin-top: auto;
  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 230px;
}

.footer__col h3, 
.footer__col h4 {
  color: #ffffff;
  margin-bottom: 15px;
  font-weight: 700;
  letter-spacing: 0.8px;
}

.footer__col p, 
.footer__col ul, 
.footer__col a {
  color: #dff6fb;
  text-decoration: none;
  line-height: 1.5;
}

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

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

.footer__col ul li a {
  transition: color 0.3s ease;
}

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

.footer__bottom {
  text-align: center;
  margin-top: 35px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.25);
  font-size: 0.85rem;
  color: #cdefff;
}

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

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

.main-hero {
    background: linear-gradient(145deg, #014f86, #2a9d8f, #72efdd);
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #014f86, #2a9d8f, #72efdd);
  background-size: 600% 600%;
  animation: gradientShift 20s 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;
  max-width: 1000px;
  padding: 0 20px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 30px 25px;
  border-radius: 15px;
  backdrop-filter: blur(5px);
}

.hero__title {
  font-size: 4.5rem;
  font-weight: 800;
  margin-bottom: 25px;
  color: #fff;
  text-shadow: 0 4px 25px rgba(0,0,0,0.7);
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
  transform: translateY(50px);
  line-height: 1.2;
}

.hero__subtitle {
  font-size: 2rem;
  margin-bottom: 40px;
  line-height: 1.5;
  color: #e0f7fa;
  text-shadow: 0 3px 20px rgba(0,0,0,0.6);
  animation: fadeInUp 1.2s ease forwards;
  opacity: 0;
  transform: translateY(50px);
}

.hero__btn {
  display: inline-block;
  padding: 20px 45px;
  font-weight: 700;
  border-radius: 50px;
  background: linear-gradient(90deg, #ffd36b, #ff8c42);
  color: #0b1d3a;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
  transition: all 0.4s ease;
  font-size: 1.4rem;
}

.hero__btn:hover {
  background: linear-gradient(90deg, #ffb84d, #ff6f2c);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}

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

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

/* Responsive */
@media (max-width: 992px) {
  .hero__title {
    font-size: 3rem;
  }

  .hero__subtitle {
    font-size: 1.5rem;
  }

  .hero__btn {
    font-size: 1.2rem;
    padding: 15px 35px;
  }
}

@media (max-width: 768px) {
  .hero__title {
    font-size: 2.2rem;
  }

  .hero__subtitle {
    font-size: 1.2rem;
  }

  .hero__btn {
    font-size: 1rem;
    padding: 12px 25px;
  }
}


.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%;
  height: 700px;
  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(145deg, #0b3d91 0%, #1e90c1 40%, #4dd0e1 70%, #1e90c1 85%, #0b3d91 100%);
  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; }
}/* GENERAL */
.contacts-page {
  font-family: 'Montserrat', sans-serif;
  color: #fff;
  background: linear-gradient(145deg, #0b3d91 0%, #1e90c1 40%, #4dd0e1 70%, #1e90c1 85%, #0b3d91 100%);
  overflow-x: hidden;
  padding: 0;
  margin: 0;
}

/* COMMON SECTION */
.section {
  max-width: 1200px;
  margin: 0 auto 100px auto;
  padding: 100px 20px;
  position: relative;
  text-align: center;
}

/* HERO SECTION */
.section-hero {
  padding-top: 160px;
  padding-bottom: 120px;
  position: relative;
}

.section-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #ffd36b, #ff8c42);
  border-radius: 3px;
}

.section-hero h1 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #ffd36b, #ff8c42);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* CONTACT SECTION */
.section-contact {
  padding: 100px 20px;
  color: #fff;
}

.contact-description {
  max-width: 900px;
  margin: 0 auto 60px auto;
  text-align: center;
}

.contact-description h2 {
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 20px;
}

.contact-description p {
  font-size: 1.2rem;
  line-height: 1.6;
  opacity: 0.9;
}

/* TWO COLUMNS */
.contact-columns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 50px;
}

.contact-left,
.contact-right {
  flex: 1 1 45%;
  min-width: 300px;
}

/* Headings */
.contact-left h3,
.contact-right h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 15px;
}

/* Contact Items */
.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.contact-item span {
  font-size: 1.8rem;
  color: #ffd36b;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.contact-form button {
  padding: 15px 35px;
  border-radius: 50px;
  border: none;
  font-weight: 700;
  background: linear-gradient(90deg, #ffd36b, #ff8c42);
  color: #0b1d3a;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .contact-columns {
    flex-direction: column;
    gap: 40px;
  }

  .contact-left,
  .contact-right {
    flex: 1 1 100%;
    text-align: center;
  }

  .contact-description h2 {
    font-size: 2.2rem;
  }

  .contact-description p {
    font-size: 1.1rem;
  }
}


/* MAP SECTION */
.section-map {
  padding: 80px 20px;
}

.section-map h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #ffd36b;
}

.section-map p {
  margin-bottom: 30px;
  opacity: 0.9;
}

.map-container {
  height: 450px;
  border-radius: 15px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Decorative bottom borders for sections */
.section-contact::after,
.section-map::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #ffd36b, #ff8c42);
  border-radius: 2px;
}

.promocje-page {
  background: linear-gradient(145deg, #014f86 0%, #2a9d8f 40%, #72efdd 70%);
}


/* RESPONSIVE */
@media (max-width: 992px) {
  .section-contact {
    flex-direction: column;
  }
  .contact-left,
  .contact-right { flex: 1 1 100%; text-align: center; }
  .section-hero h1 { font-size: 2.6rem; }
  .section-map h2 { font-size: 1.8rem; }
}

.travel-hero {
  background: linear-gradient(135deg, #014f86, #2a9d8f, #72efdd);
  color: #fff;
  text-align: center;
  padding: 100px 20px;
  position: relative;
  border-bottom-left-radius: 80px;
  border-bottom-right-radius: 80px;
  overflow: hidden;
}

.travel-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.25;
  z-index: 1;
}

.travel-hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.travel-hero h1 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 20px;
  text-shadow: 0 3px 15px rgba(0,0,0,0.4);
}

.travel-hero p {
  font-size: 1.6rem;
  line-height: 1.5;
  opacity: 0.95;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .travel-hero h1 { font-size: 2.8rem; }
  .travel-hero p { font-size: 1.3rem; }
}

@media (max-width: 768px) {
  .travel-hero h1 { font-size: 2.4rem; }
  .travel-hero p { font-size: 1.1rem; }
}

.tour-deals-section {
  padding: 60px 20px;
  border-radius: 25px;
  max-width: 1200px;
  margin: 50px auto;
  text-align: center;
  color: #fff;
}

.tour-deals-section h2 {
  font-size: 2.6rem;
  margin-bottom: 40px;
  font-weight: 800;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.tour-deals-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  justify-items: center;
}

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

.tour-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.35);
}

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

.tour-card h3 {
  margin: 15px 0 10px;
  font-size: 1.4rem;
  color: #ffd36b;
}

.tour-card p {
  margin-bottom: 10px;
  color: #000000;
  font-size: 1rem;
  line-height: 1.4;
}

.card-btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  background: linear-gradient(90deg, #ffd36b, #ff8c42);
  color: #0b1d3a;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.card-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  background: linear-gradient(90deg, #ffbd38, #ff6f00);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .tour-card h3 { font-size: 1.2rem; }
  .tour-card p { font-size: 0.95rem; }
}

@media (max-width: 768px) {
  .tour-deals-section h2 { font-size: 2rem; }
  .card-btn { padding: 10px 25px; font-size: 0.9rem; }
}


  .promo-benefits {
    background: linear-gradient(145deg, #0b3d91 0%, #1e90c1 40%, #4dd0e1 70%, #1e90c1 85%, #0b3d91 100%);
    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;
}

.section-testimonials {
  color: #000000;
  padding: 100px 20px;
  font-family: 'Montserrat', sans-serif;
}

.section-testimonials h2 {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 15px;
}

.section-testimonials p {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 60px;
  opacity: 0.9;
}

/* GRID LAYOUT */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: rgba(255,255,255,0.1);
  padding: 25px 20px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.testimonial-card span {
  font-weight: 700;
  color: #ffd36b;
  font-size: 0.95rem;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .section-testimonials h2 {
    font-size: 2.2rem;
  }

  .section-testimonials p {
    font-size: 1.1rem;
  }
}


.promo-cta {
  background: linear-gradient(135deg, #0b3d91, #1e90c1, #4dd0e1);
  color: #fff;
  text-align: center;
  padding: 70px 20px;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.promo-cta h2 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.promo-cta p {
  margin-bottom: 30px;
  font-size: 1.25rem;
  line-height: 1.6;
  opacity: 0.9;
}

.cta-btn {
  padding: 15px 35px;
  border-radius: 50px;
  border: none;
  background: linear-gradient(90deg, #ffd36b, #ff8c42);
  color: #0b1d3a;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.cta-btn:hover {
  background: linear-gradient(90deg, #ffbd38, #ff6f00);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .promo-cta h2 { font-size: 2rem; }
  .promo-cta p { font-size: 1.1rem; }
}

@media (max-width: 768px) {
  .promo-cta h2 { font-size: 1.7rem; }
  .promo-cta p { font-size: 1rem; }
  .cta-btn { padding: 12px 28px; font-size: 0.95rem; }
}


.oferta-page {
    background: linear-gradient(145deg, #014f86 0%, #2a9d8f 40%, #72efdd 70%);
}
.travel-hero {
  background: linear-gradient(135deg, #014f86, #2a9d8f, #72efdd);
  color: #fff;
  text-align: center;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.travel-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.25;
  z-index: 1;
}

.travel-hero__content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.travel-hero h1 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.travel-hero p {
  font-size: 1.5rem;
  line-height: 1.6;
  opacity: 0.9;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .travel-hero h1 {
    font-size: 2.5rem;
  }
  
  .travel-hero p {
    font-size: 1.2rem;
  }
}

.travel-categories {
  padding: 80px 20px;
}

.travel-categories h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

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

.category-card {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  flex: 1 1 250px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.category-card:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

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

.category-card p {
  color: #e0f7fa;
  line-height: 1.5;
  font-size: 1rem;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .category-cards {
    flex-direction: column;
    gap: 30px;
  }

  .travel-categories h2 {
    font-size: 2rem;
  }

  .category-card h3 {
    font-size: 1.3rem;
  }
}

.travel-offers {
  padding: 80px 20px;
  position: relative;
}

.travel-offers h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 50px;
  color: #fff;
  text-shadow: 0 2px 15px rgba(0,0,0,0.4);
}

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

.offer-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.offer-card:hover {
  transform: translateY(-10px) rotate(-1deg);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.offer-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.offer-card h3 {
  margin: 15px 0 10px;
  font-size: 1.5rem;
  color: #ffd36b;
}

.offer-card p {
  margin-bottom: 15px;
  font-size: 1rem;
  color: #e0f7fa;
  line-height: 1.5;
}

.offer-btn {
  display: inline-block;
  padding: 10px 25px;
  border-radius: 50px;
  background: linear-gradient(90deg, #ffd36b, #ff8c42);
  color: #0b1d3a;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .offers-cards {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .travel-offers h2 {
    font-size: 2rem;
  }

  .offer-card h3 {
    font-size: 1.3rem;
  }
}


.travel-benefits {
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.travel-benefits::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255,255,255,0.05), transparent 70%);
  pointer-events: none;
}

.travel-benefits h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 50px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

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

.benefit-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  flex: 1 1 250px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.benefit-card:hover {
  transform: translateY(-10px) rotate(-1deg);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.benefit-card h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
  color: #ffd36b;
}

.benefit-card p {
  font-size: 1rem;
  color: #e0f7fa;
  line-height: 1.6;
}

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

  .travel-benefits h2 {
    font-size: 2rem;
  }

  .benefit-card h3 {
    font-size: 1.3rem;
  }
}


.tour-benefits-section {
  color: #000000;
  padding: 80px 20px;
  text-align: center;
  border-radius: 25px;
  margin: 50px auto;
  max-width: 1200px;
}

.tour-benefits-section h2 {
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 40px;
}

.tour-benefits-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}

.tour-benefit-card {
  background: rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 30px 25px;
  flex: 1 1 280px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tour-benefit-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.tour-benefit-card h3 {
  margin-bottom: 15px;
  color: #ffd36b;
}

.tour-benefit-card p {
  color: #000000;
  line-height: 1.6;
}

/* TOUR CTA */
.tour-cta {
  background: linear-gradient(135deg, #0b3d91, #1e90c1, #4dd0e1);
  color: #fff;
  text-align: center;
  padding: 70px 20px;
  border-radius: 25px;
  margin: 50px auto;
  max-width: 1200px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.tour-cta h2 {
  font-size: 2.6rem;
  margin-bottom: 20px;
  font-weight: 800;
}

.tour-cta p {
  font-size: 1.25rem;
  margin-bottom: 30px;
  opacity: 0.95;
  line-height: 1.6;
}

.cta-btn {
  padding: 15px 35px;
  border-radius: 50px;
  border: none;
  font-weight: 700;
  background: linear-gradient(90deg, #ffd36b, #ff8c42);
  color: #0b1d3a;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  background: linear-gradient(90deg, #ffbd38, #ff6f00);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .tour-benefits-cards {
    flex-direction: column;
    align-items: center;
  }
  
  .tour-benefits-section h2,
  .tour-cta h2 { font-size: 2.2rem; }

  .tour-cta p { font-size: 1.15rem; }
}

@media (max-width: 768px) {
  .tour-benefits-section h2,
  .tour-cta h2 { font-size: 1.8rem; }

  .tour-benefit-card h3 { font-size: 1.15rem; }

  .tour-cta p { font-size: 1rem; }

  .cta-btn { padding: 12px 28px; font-size: 0.95rem; }
}


.about-page {
  background: linear-gradient(145deg, #014f86 0%, #2a9d8f 40%, #72efdd 70%);

}
.about-hero {
  background: linear-gradient(135deg, #014f86, #2a9d8f, #72efdd);
  color: #fff;
  text-align: center;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  z-index: 1;
}

.about-hero__content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.about-hero h1 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.about-hero p {
  font-size: 1.5rem;
  line-height: 1.6;
  opacity: 0.95;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .about-hero h1 {
    font-size: 2.5rem;
  }
  
  .about-hero p {
    font-size: 1.2rem;
  }
}


.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 {
  background: linear-gradient(135deg, #014f86, #2a9d8f, #72efdd);
  padding: 80px 20px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  font-family: 'Montserrat', sans-serif;
}

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

.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(12px);
  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, #ffd36b, #ff8c42, #00bfff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.4s ease;
}

.mission-card:hover h3 {
  background-position: 200% center;
}

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

/* Floating circles for background */
.about-mission::before,
.about-mission::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

.about-mission::before {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
  top: -80px;
  left: -80px;
  animation: floatCircle 12s ease-in-out infinite alternate;
}

.about-mission::after {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  bottom: -60px;
  right: -60px;
  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); }
}

/* Responsive */
@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-achievements {
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.about-achievements h2 {
  font-size: 2.8rem;
  margin-bottom: 50px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-shadow: 0 3px 15px rgba(0,0,0,0.3);
}

.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.12);
  border-radius: 20px;
  padding: 40px 30px;
  width: 250px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  backdrop-filter: blur(8px);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  text-align: center;
  cursor: default;
}

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

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

.achievement-card p {
  font-size: 1.1rem;
  font-weight: 500;
  color: #f0f8ff;
  line-height: 1.5;
}

/* Декоративні анімації */
.about-achievements::before,
.about-achievements::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

.about-achievements::before {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  top: -120px;
  left: -120px;
  animation: floatCircle 12s ease-in-out infinite alternate;
}

.about-achievements::after {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  bottom: -100px;
  right: -100px;
  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);}
}

/* RESPONSIVE */
@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: 2.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(145deg, #0b3d91 0%, #1e90c1 40%, #4dd0e1 70%, #1e90c1 85%, #0b3d91 100%);
  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(145deg, #0b3d91 0%, #1e90c1 40%, #4dd0e1 70%, #1e90c1 85%, #0b3d91 100%);
  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(1, 79, 134, 0.92); /* ocean-inspired */
  color: #e6faff;
  padding: 22px 28px;
  border-radius: 14px;
  box-shadow: 0 6px 28px rgba(0,0,0,0.35);
  display: none; 
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 520px;
  z-index: 9999;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  backdrop-filter: blur(6px);
}

.cookie-banner a {
  color: #ffd166;
  text-decoration: underline;
  font-weight: 600;
}

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

.cookie-btn {
  padding: 11px 24px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  transition: 0.3s ease;
}

.cookie-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.cookie-btn.decline {
  background-color: #ffffff;
  color: #014f86;
}

.cookie-btn:not(.decline) {
  background-color: #2a9d8f; /* travel green accent */
  color: #ffffff;
}

/* FAQ SECTION */
.section-faq {
  padding: 100px 20px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
}

.section-faq h2 {
  font-size: 2.8rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 20px;
}

.section-faq p {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 50px;
  opacity: 0.9;
}

/* FAQ LIST */
.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: rgba(255,255,255,0.1);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 25px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #000000;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  transition: background 0.3s ease;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 25px;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  background: rgba(255,255,255,0.05);
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px; /* регулюється під обсяг тексту */
  padding: 20px 25px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .section-faq h2 {
    font-size: 2.2rem;
  }

  .section-faq p {
    font-size: 1rem;
  }
}
