@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

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

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

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

li {
    list-style: none;
}

a {
  text-decoration: none;
}

img {
  display: block;
  height: auto;
  padding: 0;
  margin: 0;
}

button {
  cursor: pointer;
}

address {
  font-style: normal;
}

html {
    height: 100%;
    width: 100%;
    scroll-behavior: smooth;
    font-family: "Open Sans", sans-serif;
}

body {
    font-family: "Open Sans", sans-serif;
    margin: 0;
    padding: 0;
}
  
img {
    display: block;
    height: auto;
    padding: 0;
    margin: 0;
}
  
address {
    font-style: normal;
}
  
html {
    height: 100%;
    scroll-behavior: smooth;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: #ffffff;
  color: #fff;
  border-bottom: 2px solid #222a45;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #000000;
}

.header_nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.header_nav a {
  text-decoration: none;
  color: #000000;
  font-weight: 500;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  color: #000000;
  cursor: pointer;
}

header img {
    width: 90px;
}

@media (max-width: 768px) {
  .header_nav {
    display: none;
    position: absolute;
    top: 70px;
    right: 20px;
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
  }

  .header_nav.active {
    display: block;
  }

  .header_nav ul {
    flex-direction: column;
    gap: 15px;
  }

  .menu-toggle {
    display: block;
  }
}


.container {
  max-width: 600px;
  height: 500px;
  margin: 0 auto;
  box-sizing: border-box;
}

.swiper img{
  height: 400px;
  width: 100%;
}

.swiper-slide {
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.hero {
  background: linear-gradient(135deg, #2a2a72, #009ffd);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 60vh;
  box-sizing: border-box;
}

.hero h1 {
  font-size: 2.8rem;
  max-width: 900px;
  margin: 0 auto 20px;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.3);
}

.hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 35px;
  line-height: 1.5;
  font-weight: 400;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.hero a {
  display: inline-block;
  background-color: #ff6f61;
  color: #fff;
  font-weight: 600;
  padding: 14px 36px;
  border-radius: 30px;
  font-size: 1.1rem;
  width: 250px;
  margin: 0 auto;
  text-decoration: none;
  box-shadow: 0 6px 12px rgba(255,111,97,0.5);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.hero a:hover,
.hero a:focus {
  background-color: #e04e3d;
  box-shadow: 0 8px 20px rgba(224,78,61,0.7);
  outline: none;
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 15px;
  }
  .hero h1 {
    font-size: 2.2rem;
    max-width: 100%;
  }
  .hero p {
    font-size: 1rem;
    max-width: 100%;
  }
  .hero a {
    padding: 12px 28px;
    font-size: 1rem;
  }
}

@media (max-width: 400px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  .hero p {
    font-size: 0.9rem;
  }
  .hero a {
    padding: 10px 24px;
    font-size: 0.9rem;
  }
}

.about {
  padding: 60px 20px;
  background: #f9f9fb;
  color: #222;
  margin: 0 auto;
}

.about h2 {
  text-align: center;
  font-size: 2.6rem;
  margin-bottom: 40px;
  position: relative;
  font-weight: 700;
  color: #004466;
}

.about h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #009ffd, #2a2a72);
  margin: 12px auto 0;
  border-radius: 2px;
}

.about_content {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
  justify-content: center;
}

.about-text {
  flex: 1 1 400px;
  font-size: 1.15rem;
  line-height: 1.6;
  color: #333;
  background: white;
  padding: 30px 35px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(42, 42, 114, 0.1);
  transition: box-shadow 0.3s ease;
}

.about-text:hover {
  box-shadow: 0 15px 40px rgba(42, 42, 114, 0.25);
}

.about_content img {
  flex: 1 1 350px;
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0, 159, 253, 0.2);
  transition: transform 0.4s ease;
  cursor: pointer;
  object-fit: cover;
  height: 300px;
}

.about_content img:hover {
  transform: scale(1.05) rotate(2deg);
}

@media (max-width: 900px) {
  .about_content {
    flex-direction: column;
  }

  .about-text, .about_content img {
    flex: unset;
    width: 90%;
    margin: 0 auto 30px;
    padding: 10px;
  }

  .about_content img {
    height: 280px;
  }
}

@media (max-width: 400px) {
  .about h2 {
    font-size: 2rem;
  }

  .about-text {
    font-size: 1rem;
    padding: 25px 20px;
  }
}

.why {
  max-width: 800px;
  margin: 60px auto;
  padding: 20px 15px;
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 159, 253, 0.1);
  color: #222;
}

.why h3 {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  color: #005ea3;
}

.why h3::after {
  content: "";
  display: block;
  width: 100px;
  height: 5px;
  margin: 12px auto 0;
  border-radius: 3px;
  background: linear-gradient(90deg, #009ffd, #2a2a72);
  box-shadow: 0 0 8px #009ffd88;
}

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

.why ul li {
  position: relative;
  font-size: 1.15rem;
  line-height: 1.5;
  margin-bottom: 20px;
  padding-left: 40px;
  transition: color 0.3s ease;
}

.why ul li strong {
  color: #007acc;
  font-weight: 700;
}

.why ul li::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 12px;
  width: 18px;
  height: 18px;
  background: linear-gradient(135deg, #2a2a72, #009ffd);
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0, 159, 253, 0.4);
  transition: background 0.3s ease, transform 0.3s ease;
}

.why ul li:hover {
  color: #005ea3;
}

.why ul li:hover::before {
  background: linear-gradient(135deg, #009ffd, #2a2a72);
  transform: scale(1.3) rotate(15deg);
}

@media (max-width: 480px) {
  .why {
    margin: 40px 15px;
  }
  .why h3 {
    font-size: 1.6rem;
  }
  .why ul li {
    font-size: 1rem;
    padding-left: 35px;
  }
  .why ul li::before {
    left: 5px;
    width: 14px;
    height: 14px;
    top: 10px;
  }
}

.gallery {
  max-width: 1200px;
  margin: 60px auto 80px;
  padding: 0 20px;
  color: #222;
}

.gallery h2 {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 50px;
  font-weight: 700;
  position: relative;
  color: #003d66;
}

.gallery h2::after {
  content: "";
  display: block;
  width: 120px;
  height: 5px;
  margin: 12px auto 0;
  border-radius: 3px;
  background: linear-gradient(90deg, #007acc, #00c6ff);
  box-shadow: 0 0 15px #00c6ff88;
}

@media (max-width: 600px) {
  .gallery h2 {
    font-size: 2.2rem;
  }
}

.events {
  max-width: 900px;
  margin: 120px auto;
  padding: 30px 25px;
  background: #fefefe;
  border-radius: 20px;
  box-shadow: 0 14px 40px rgba(0, 100, 255, 0.1);
  color: #222;
  text-align: center;
  position: relative;
  padding-top: 50px;
}

.events h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #003366;
  margin-bottom: 30px;
  position: relative;
}

.events h2::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  border-radius: 3px;
  background: linear-gradient(90deg, #0066ff, #00ccff);
  box-shadow: 0 0 15px #00ccff99;
}

.events ul {
  list-style: none;
  padding-left: 20px;
  margin-bottom: 40px;
  text-align: left;
  border-left: 6px solid #009ffd;
  border-radius: 4px;
  background: #e9f4ff;
  box-shadow: inset 0 0 12px #007acc33;
}

.events ul li {
  font-size: 1.2rem;
  line-height: 1.5;
  margin: 18px 0;
  padding-left: 15px;
  position: relative;
  color: #004d99;
  font-weight: 600;
}

.events ul li strong {
  color: #007acc;
  font-weight: 700;
}

.events ul li::before {
  content: "♠";
  position: absolute;
  left: -28px;
  top: 50%;
  transform: translateY(-50%);
  color: #0066ff;
  font-size: 1.3rem;
  text-shadow: 0 0 5px #009ffd88;
}

.events a {
  display: inline-block;
  background: linear-gradient(270deg, #0066ff, #00ccff, #0066ff);
  background-size: 400% 400%;
  color: #fff;
  font-weight: 700;
  padding: 14px 42px;
  border-radius: 35px;
  font-size: 1.15rem;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0, 102, 255, 0.5);
  transition: background-position 3s ease, box-shadow 0.3s ease;
}

.events a:hover,
.events a:focus {
  background-position: 100% 0;
  box-shadow: 0 10px 30px rgba(0, 204, 255, 0.8);
  outline: none;
}

@media (max-width: 480px) {
  .events {
    padding: 25px 15px;
  }

  .events h2 {
    font-size: 1.8rem;
  }

  .events ul li {
    font-size: 1rem;
  }

  .events a {
    padding: 12px 32px;
    font-size: 1rem;
  }
}

.cta {
  max-width: 1200px;
  margin: 80px auto 100px;
  padding: 50px 30px;
  background: linear-gradient(135deg, #009ffd, #2a2a72);
  border-radius: 25px;
  color: #fff;
  text-align: center;
  box-shadow: 0 20px 50px rgba(42, 42, 114, 0.4);
}

.cta h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 25px;
  text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: 1px;
}

.cta p {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

.cta-button {
  display: inline-block;
  background: #fff;
  color: #2a2a72;
  font-weight: 700;
  font-size: 1.2rem;
  padding: 18px 56px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.6);
  transition: background-color 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
  user-select: none;
}

.cta-button:hover,
.cta-button:focus {
  background: #f0f0f0;
  color: #0066cc;
  box-shadow: 0 12px 35px rgba(0, 102, 204, 0.8);
  outline: none;
}

@media (max-width: 768px) {
  .cta {
    padding: 40px 20px;
  }
  .cta h2 {
    font-size: 2.4rem;
  }
  .cta p {
    font-size: 1.1rem;
  }
  .cta-button {
    padding: 14px 44px;
    font-size: 1.05rem;
  }
}

@media (max-width: 400px) {
  .cta h2 {
    font-size: 2rem;
  }
  .cta p {
    font-size: 1rem;
  }
  .cta-button {
    padding: 12px 36px;
    font-size: 1rem;
  }
}

.reviews {
  max-width: 1000px;
  margin: 70px auto 100px;
  padding: 0 20px;
  color: #222;
  text-align: center;
}

.reviews h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #004466;
  position: relative;
}

.reviews h2::after {
  content: "";
  display: block;
  width: 110px;
  height: 5px;
  margin: 12px auto 0;
  border-radius: 3px;
  background: linear-gradient(90deg, #007acc, #00c6ff);
  box-shadow: 0 0 15px #00c6ff88;
}

.review-list {
  list-style: none;
  display: flex;
  gap: 30px;
  padding: 0;
  margin: 0;
  justify-content: center;
  flex-wrap: wrap;
}

.review-list li {
  background: #f4faff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 118, 255, 0.15);
  padding: 30px 25px 40px;
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-list li:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0, 118, 255, 0.3);
}

.review-list img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 22px;
  border: 3px solid #009ffd;
  box-shadow: 0 0 12px #009ffd66;
}

.review-list p {
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.5;
  color: #005ea3;
  margin-bottom: 18px;
  min-height: 90px;
}

.review-list span {
  font-weight: 700;
  font-size: 1rem;
  color: #003d66;
}

@media (max-width: 960px) {
  .review-list {
    justify-content: space-around;
  }
}

@media (max-width: 640px) {
  .review-list {
    flex-direction: column;
    gap: 30px;
  }
  .review-list li {
    width: 90%;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 400px) {
  .reviews h2 {
    font-size: 2rem;
  }
  .review-list p {
    font-size: 1rem;
    min-height: auto;
  }
}


footer {
  background-color: #ffffff;
  color: #000000;
  padding: 40px 20px 25px;
  font-size: 0.95rem;
  text-align: center;
  border-top: 3px solid #222a45;
}

.footer-flex {
  margin: 0 auto 25px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

footer .logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #000000;
  font-weight: 700;
  font-size: 1.3rem;
  gap: 10px;
  flex: 1 1 220px;
  user-select: none;
  transition: color 0.3s ease;
}

footer .logo img {
  height: 45px;
  width: auto;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.4));
}

footer .logo:hover,
footer .logo:focus {
  color: #009ffd;
  outline: none;
}

.footer_links-main,
.footer_links-privacy {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1 1 180px;
  text-align: left;
}

.footer_links-main li,
.footer_links-privacy li {
  margin-bottom: 14px;
}

.footer_links-main li a,
.footer_links-privacy li a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
  display: inline-block;
}

.footer_links-main li a:hover,
.footer_links-main li a:focus,
.footer_links-privacy li a:hover,
.footer_links-privacy li a:focus {
  color: #009ffd;
  outline: none;
  text-decoration: underline;
}

footer p {
  font-size: 0.85rem;
  color: #000000;
  margin: 0 auto;
  max-width: 700px;
  user-select: none;
}

@media (max-width: 768px) {
  .footer-flex {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer_links-main,
  .footer_links-privacy {
    text-align: center;
    flex: unset;
    width: 100%;
    margin-bottom: 25px;
  }
  footer .logo {
    justify-content: center;
    width: 100%;
  }
  footer p {
    text-align: center;
  }
}

@media (max-width: 400px) {
  footer .logo {
    font-size: 1.1rem;
  }
  .footer_links-main li,
  .footer_links-privacy li {
    margin-bottom: 12px;
    text-align: center;
  }
}

.menu-toggle1 {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 50px auto 30px;
  flex-wrap: wrap;
}

.menu-toggle1 button {
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid #007acc;
  background-color: transparent;
  color: #007acc;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.menu-toggle1 button:hover {
  background-color: #007acc;
  color: #fff;
}

.menu-toggle1 button.active {
  background-color: #007acc;
  color: #fff;
  box-shadow: 0 0 12px rgba(0, 122, 204, 0.3);
}

.menu-section {
  max-width: 1000px;
  margin: 0 auto 80px;
  padding: 0 20px;
  color: #1d1f24;
}

.menu-section h2 {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 25px;
  color: #004466;
}

.menu-section p {
  text-align: center;
  font-size: 1.05rem;
  margin-bottom: 40px;
  color: #555;
}

.menu-section h3 {
  font-size: 1.6rem;
  margin: 40px 0 15px;
  color: #007acc;
  position: relative;
}

.menu-section h3::after {
  content: '';
  display: block;
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, #007acc, #00c6ff);
  margin-top: 8px;
  border-radius: 2px;
}

.menu-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.menu-section li {
  background: #f9fbff;
  margin-bottom: 15px;
  padding: 16px 20px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 122, 204, 0.08);
  transition: transform 0.2s ease, background 0.3s ease;
}

.menu-section li:hover {
  background: #eef6ff;
  transform: scale(1.02);
}

.menu-section li strong {
  color: #002f4b;
  display: block;
  font-size: 1.05rem;
  margin-bottom: 6px;
}

@media (max-width: 768px) {
  .menu-toggle1 {
    gap: 12px;
  }

  .menu-toggle1 button {
    width: 45%;
    font-size: 0.95rem;
    padding: 10px 15px;
  }

  .menu-section h2 {
    font-size: 1.8rem;
  }

  .menu-section h3 {
    font-size: 1.3rem;
  }
}


.transmisje,
.wieczory,
.quizy,
.szkolenia {
  padding: 40px 20px;
  max-width: 1000px;
  margin: 0 auto;
  background-color: #f7f7f7;
  border-radius: 16px;
  margin-bottom: 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.transmisje h2,
.wieczory h2,
.quizy h2,
.szkolenia h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: #2e2e2e;
  text-align: center;
}

.transmisje p,
.wieczory p,
.quizy p,
.szkolenia p {
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: #444;
  line-height: 1.6;
  text-align: center;
}

.transmisje ul,
.wieczory ul,
.quizy ul,
.szkolenia ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 600px;
}

.transmisje li,
.wieczory li,
.quizy li,
.szkolenia li {
  font-size: 1rem;
  background-color: #ffffff;
  padding: 12px 16px;
  margin-bottom: 12px;
  border-left: 4px solid #e00082;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  color: #333;
}

@media (max-width: 600px) {
  .transmisje h2,
  .wieczory h2,
  .quizy h2,
  .szkolenia h2 {
    font-size: 1.5rem;
  }

  .transmisje p,
  .wieczory p,
  .quizy p,
  .szkolenia p {
    font-size: 1rem;
  }

  .transmisje li,
  .wieczory li,
  .quizy li,
  .szkolenia li {
    font-size: 0.95rem;
    padding: 10px 14px;
  }
}


.kontakt {
  padding: 60px 20px;
  background-color: #1e1e1e;
  color: #fff;
  text-align: center;
}

.kontakt h2 {
  font-size: 32px;
  margin-bottom: 30px;
  color: #ffffff;
}

.kontakt-info {
  max-width: 600px;
  margin: 0 auto 40px;
  text-align: left;
  font-size: 18px;
  line-height: 1.6;
}

.kontakt-info p {
  margin: 10px 0;
}

#contactForm {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#contactForm label {
  text-align: left;
  font-weight: 500;
}

#contactForm input,
#contactForm textarea {
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
}

#contactForm textarea {
  min-height: 120px;
  resize: vertical;
}

#contactForm button {
  background: linear-gradient(270deg, #0066ff, #00ccff, #0066ff);
  color: #000;
  border: none;
  padding: 12px 20px;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-bottom: 50px;
}

#contactForm button:hover {
  background-color: #0091ff;
}

.popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #1e1e1e;
  color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  text-align: center;
}

.popup button {
  margin-top: 20px;
  padding: 10px 20px;
  background: linear-gradient(270deg, #0066ff, #00ccff, #0066ff);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  font-size: 16px;
}

.popup button:hover {
  background-color: #e6b839;
}


.privacy {
  background-color: #1d1d1db9;
  color: #f2f2f2;
  padding: 60px 30px;
  max-width: 900px;
  margin: 0 auto;
  margin-top: 50px;
  margin-bottom: 50px;
  border-radius: 16px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
  line-height: 1.7;
}

.privacy h2 {
  font-size: 32px;
  margin-bottom: 25px;
  color: #00c3ff;
  text-align: center;
}

.privacy h3 {
  font-size: 22px;
  margin-top: 35px;
  margin-bottom: 15px;
  color: #0096c0;
}

.privacy p {
  font-size: 16px;
  margin-bottom: 15px;
  color: #ddd;
}

.privacy ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 20px;
}

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

.privacy a {
  color: #00a1b3;
  text-decoration: underline;
}

.privacy a:hover {
  text-decoration: none;
  color: #ffffff;
}


.cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #1e1e1e;
    color: #f5f5f5;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    font-size: 14px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
}

.cookie-banner p {
    margin: 0;
    max-width: 80%;
    line-height: 1.5;
}

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

.cookie-banner button {
    background-color: #f7c942;
    color: #1e1e1e;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.2s;
}

.cookie-banner button:hover {
    background-color: #ffda5c;
}
