/* --- CSS RESET AND NORMALIZE --- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  background: #fff;
  color: #232323;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #0E355E;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FFB300;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  outline: none;
  border: none;
  background: none;
}
button {
  cursor: pointer;
}

/* --- BRANDING FONTS --- */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&family=Roboto:wght@400;500;700&display=swap');

h1, h2, h3, h4 {
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #0E355E;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 24px;
  letter-spacing: 1px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #FFB300;
  font-weight: 700;
  letter-spacing: 0.2px;
}
h4 {
  font-size: 1.1rem;
  color: #0E355E;
}

p, li, label, select, textarea {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  color: #2F2E41;
  font-size: 1rem;
  margin-bottom: 10px;
}

strong {
  font-weight: 700;
  color: #0E355E;
}

/* --- COMMON LAYOUT CONTAINERS --- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* --- CREATIVE ARTISTIC COLOR POPS & BGs --- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  position: relative;
}

section:nth-child(even) {
  background: #F7F9FC;
  border-radius: 32px;
  box-shadow: 0 4px 24px rgba(14,53,94,0.05);
}

/* --- HEADER & NAV --- */
header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(14,53,94,0.08);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 50;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  padding: 18px 0;
  justify-content: flex-start;
}
header nav a {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.08rem;
  padding: 7px 14px;
  border-radius: 18px;
  transition: background 0.18s, color 0.18s;
  position: relative;
  color: #0E355E;
  font-weight: 500;
}
header nav a.cta-primary {
  background: #FFB300;
  color: #0E355E;
  font-weight: 700;
  box-shadow: 0 1px 16px rgba(255,179,0,0.13);
  border-radius: 50px 10px 30px 10px;
  padding: 10px 30px;
  margin-left: auto;
  transition: transform 0.22s cubic-bezier(.42,0,.58,1);
}
header nav a.cta-primary:hover, header nav a.cta-primary:focus {
  background: #0E355E;
  color: #fff;
  transform: scale(1.06) rotate(-2deg);
  box-shadow: 0 3px 24px rgba(255,179,0,0.33);
}
header nav a:hover, header nav a:focus {
  background: #FFB30022;
}
header nav img {
  height: 44px;
  width: auto;
  margin-right: 8px;
  vertical-align: middle;
  border-radius: 8px;
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: none;
  background: #FFB300;
  color: #0E355E;
  font-size: 2.1rem;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  box-shadow: 0 3px 18px rgba(255,179,0,0.07);
  position: absolute;
  top: 15px;
  right: 14px;
  z-index: 110;
  justify-content: center;
  align-items: center;
  transition: background 0.13s;
}
.mobile-menu-toggle:active {
  background: #0E355E;
  color: #fff;
}
.mobile-menu {
  display: none;
}
.mobile-menu.open {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #0E355E;
  z-index: 800;
  transition: transform 0.38s cubic-bezier(.52,1.13,.77,1.03);
  box-shadow: 0 10px 32px rgba(14,53,94,0.16);
  transform: translateX(0%);
}
.mobile-menu {
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.4,1.2,.65,1);
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  background: none;
  color: #fff;
  font-size: 2.4rem;
  align-self: flex-end;
  margin: 28px 24px 18px 0;
  border: none;
  cursor: pointer;
  transition: color 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #FFB300;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 0 32px;
}
.mobile-nav a {
  font-family: 'Oswald', Arial, sans-serif;
  color: #fff;
  font-size: 1.3rem;
  padding: 12px 8px;
  border-radius: 12px;
  background: none;
  transition: background 0.16s, color 0.22s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FFB300;
  color: #0E355E;
}

@media (max-width: 1020px) {
  header nav a.cta-primary {
    margin-left: 0;
    margin-right: 0;
  }
  header nav {
    gap: 10px;
    padding-right: 8px;
  }
}
@media (max-width: 850px) {
  header nav {
    gap: 8px;
    padding-left: 4px;
  }
  header nav a {
    font-size: 0.99rem;
    padding: 5px 7px;
  }
}
@media (max-width: 768px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

@media (min-width: 769px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* --- MAIN BUTTON/CTA --- */
.cta-primary {
  background: #FFB300;
  color: #0E355E;
  padding: 12px 40px;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.17rem;
  border-radius: 28px 8px 26px 8px;
  box-shadow: 0 2px 14px rgba(255, 179, 0, 0.12);
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, transform 0.17s;
  letter-spacing: 0.2px;
  text-shadow: 0 1px 2px #fff6;
}
.cta-primary:hover, .cta-primary:focus {
  background: #0E355E;
  color: #fff;
  transform: scale(1.04) rotate(-2deg);
  box-shadow: 0 6px 32px 0px rgba(255, 179, 0, 0.24);
}

/* --- CARDS, FLEX & LIST --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(14,53,94,0.13);
  padding: 32px 24px 24px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 250px;
  max-width: 400px;
  flex: 1 1 280px;
  transition: box-shadow 0.22s, transform 0.19s;
  z-index: 1;
}
.card:hover {
  box-shadow: 0 7px 32px 0 rgba(255,179,0,0.24),0 4px 40px rgba(14,53,94,0.19);
  transform: translateY(-5px) scale(1.015) rotate(-1deg);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(14,53,94,0.11);
  margin-bottom: 22px;
  color: #232323;
}
.testimonial-card p {
  color: #232323;
  font-size: 1.01rem;
  margin-bottom: 0;
}
.testimonial-card .author {
  color: #0E355E;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.05rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 20px;
  padding: 25px 16px;
  box-shadow: 0 2px 10px rgba(255,179,0,0.06), 0 4px 26px rgba(14,53,94,0.07);
  margin-bottom: 22px;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
}
.feature-grid > div {
  flex: 1 1 220px;
  min-width: 200px;
  max-width: 270px;
  background: #fff;
  border-radius: 20px 8px 24px 8px;
  box-shadow: 0 6px 28px rgba(255,179,0,0.07), 0 2px 12px rgba(14,53,94,0.09);
  padding: 24px 18px 18px 18px;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.2s;
}
.feature-grid > div img {
  width: 50px;
  margin-bottom: 8px;
  filter: drop-shadow(0 2px 8px #FFB30033);
}
.feature-grid > div h3 {
  color: #FFB300;
}
.feature-grid > div:hover {
  box-shadow: 0 7px 36px 0 rgba(255,179,0,0.22),0 4px 40px rgba(14,53,94,0.06);
}

@media (max-width: 950px) {
  .feature-grid {
    gap: 16px;
  }
  .feature-grid > div {
    min-width: 160px;
    max-width: 43vw;
    padding: 16px 8px 14px 8px;
    font-size: 0.97rem;
  }
}
@media (max-width: 600px) {
  .feature-grid > div {
    min-width: 130px;
    max-width: 100vw;
  }
  .card {
    min-width: unset;
    max-width: 100vw;
    padding: 19px 8px 11px 8px;
  }
}

.text-section {
  margin-bottom: 20px;
}

/* --- TABLES, LISTS, PAGINATION --- */
ul, ol {
  margin-left: 0;
  padding-left: 0;
  margin-bottom: 10px;
  line-height: 1.7;
}
ul li, ol li {
  padding-left: 0;
  margin-bottom: 7px;
  font-size: 1rem;
  color: #232323;
}
ul li a {
  color: #0E355E;
  border-bottom: 2px solid #FFB30022;
  padding-bottom: 1px;
  transition: color 0.19s, border 0.18s;
}
ul li a:hover, ul li a:focus {
  color: #FFB300;
  border-bottom: 2px solid #FFB300;
}
nav[aria-label="Paginacja"] {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}
nav[aria-label="Paginacja"] a {
  background: #0E355E;
  color: #fff;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 1rem;
  font-family: 'Oswald', Arial, sans-serif;
  transition: background 0.18s, color 0.18s;
}
nav[aria-label="Paginacja"] a:hover {
  background: #FFB300;
  color: #0E355E;
}

/* --- NEWSLETTER & SOCIAL --- */
.newsletter {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #0E355E11;
  border-radius: 16px;
  padding: 18px 15px;
  align-items: flex-start;
}
.newsletter .cta-primary {
  margin-top: 7px;
}
.social-follow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
}
.social-follow a img {
  width: 34px;
  transition: filter 0.18s;
  border-radius: 8px;
}
.social-follow a:hover img,
.social-follow a:focus img {
  filter: saturate(180%) drop-shadow(0 2px 8px #FFB300aa);
}

/* --- EVENT HIGHLIGHTS --- */
.event-highlights {
  background: #FFB30011;
  border-radius: 14px;
  padding: 12px 14px;
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Roboto', Arial, sans-serif;
  color: #0E355E;
  font-weight: 500;
}
.event-highlights img {
  width: 26px;
  margin-right: 7px;
}

/* --- FORMS & SELECTS --- */
label {
  font-weight: 500;
  color: #0E355E;
  margin-bottom: 6px;
}
select {
  border: 1.5px solid #FFB300;
  border-radius: 9px;
  padding: 7px 30px 7px 11px;
  background: #fff;
  font-size: 1.04rem;
  color: #232323;
  appearance: none;
  margin-left: 11px;
  box-shadow: 0 2px 8px #FFB30011;
}
select:focus {
  border-color: #0E355E;
  background: #F7F9FC;
}

/* --- FOOTER --- */
footer {
  background: #0E355E;
  color: #fff;
  padding: 50px 20px 20px 20px;
  border-radius: 48px 48px 0 0;
  margin-top: 60px;
}
footer nav {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
footer nav a {
  color: #FFB300;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.02rem;
  transition: color 0.18s, border-bottom 0.16s;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
}
footer nav a:hover, footer nav a:focus {
  color: #fff;
  border-bottom: 2px solid #fff;
}
.contact-footer {
  display: flex;
  gap: 35px;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 12px;
}
.contact-footer p {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 0.97rem;
  gap: 9px;
  margin-bottom: 0;
}
.contact-footer img {
  width: 22px;
  vertical-align: middle;
  margin-right: 0;
}

@media (max-width: 680px) {
  .contact-footer, footer nav {
    flex-direction: column;
    gap: 9px;
    align-items: flex-start;
  }
  footer {
    border-radius: 32px 32px 0 0;
    padding: 26px 9px 12px 9px;
  }
}

/* --- SPACING & FLEX RULES --- */
/* .section, .card-container, .card, .content-grid, .text-image-section, .testimonial-card, .feature-item defined above, do not remove */

/* --- RESPONSIVE TYPOGRAPHY & LAYOUT --- */
@media (max-width: 990px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.6rem; }
}
@media (max-width: 700px) {
  h1 { font-size: 1.48rem; }
  h2 { font-size: 1.18rem; }
}

@media (max-width: 540px) {
  .section {
    padding: 27px 4px;
    margin-bottom: 37px;
  }
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  background: #0E355E;
  color: #fff;
  position: fixed;
  width: 100vw;
  left: 0;
  bottom: 0;
  z-index: 999;
  padding: 25px 22px 20px 22px;
  box-shadow: 0 -2px 22px 0 rgba(14,53,94,0.19);
  border-radius: 24px 24px 0 0;
  font-size: 1.02rem;
  min-height: 58px;
  transition: transform 0.33s;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 17px;
}
.cookie-banner button {
  font-family: 'Oswald', Arial, sans-serif;
  border-radius: 20px 6px 16px 6px;
  padding: 9px 27px;
  font-size: 1rem;
  font-weight: 600;
  margin-right: 0;
  transition: background 0.18s, color 0.18s;
  border: none;
}
.cookie-banner .accept {
  background: #FFB300;
  color: #0E355E;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #fff;
  color: #0E355E;
}
.cookie-banner .reject {
  background: #fff;
  color: #0E355E;
  border: 1px solid #FFB300;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #FFB300;
  color: #fff;
}
.cookie-banner .settings {
  background: #0E355E;
  color: #FFB300;
  border: 1.5px solid #FFB300;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #FFB300;
  color: #0E355E;
}
.cookie-banner.hide {
  transform: translateY(100%);
  pointer-events: none;
}

@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    gap: 14px;
    font-size: 0.99rem;
    padding: 16px 4px 16px 7px;
    border-radius: 14px 14px 0 0;
  }
  .cookie-banner .cookie-actions {
    gap: 9px;
  }
}

/* --- COOKIE SETTINGS MODAL --- */
.cookie-modal-overlay {
  position: fixed;
  z-index: 1010;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: #0E355Ebb;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModal 0.25s both;
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #0E355E;
  border-radius: 20px 20px 8px 8px;
  padding: 36px 28px 30px 28px;
  min-width: 320px;
  max-width: 90vw;
  box-shadow: 0 10px 36px rgba(14,53,94,0.22);
  font-size: 1.07rem;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.cookie-modal h2 {
  font-size: 1.32rem;
  margin-bottom: 14px;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 18px;
  right: 28px;
  background: none;
  border: none;
  color: #0E355E;
  font-size: 1.7rem;
  cursor: pointer;
  transition: color 0.15s;
  z-index: 20;
}
.cookie-modal .modal-close:hover {
  color: #FFB300;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
}
.cookie-category strong {
  color: #0E355E;
}
.cookie-toggle {
  appearance: none;
  width: 44px;
  height: 22px;
  background: #FFB30044;
  border-radius: 22px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.18s;
}
.cookie-toggle:checked {
  background: #FFB300;
}
.cookie-toggle::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 2px 6px #23232311;
  transition: left 0.2s;
}
.cookie-toggle:checked::before {
  left: 24px;
}
.cookie-category[aria-disabled="true"] .cookie-toggle {
  background: #eaeaec;
  pointer-events: none;
}
.cookie-category[aria-disabled="true"] label, .cookie-category[aria-disabled="true"] strong {
  color: #AAB4BE;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 15px;
}
.cookie-modal .modal-actions button {
  font-family: 'Oswald', Arial, sans-serif;
  border-radius: 16px;
  padding: 10px 30px;
  background: #FFB300;
  color: #0E355E;
  font-weight: 700;
  border: none;
  transition: background 0.15s, color 0.15s;
}
.cookie-modal .modal-actions button.cancel {
  background: #f4f6fa;
  color: #0E355E;
  border: 1px solid #eee;
}
.cookie-modal .modal-actions button.cancel:hover {
  background: #FFB30033;
  color: #0E355E;
}
.cookie-modal .modal-actions button.save {
  background: #0E355E;
  color: #fff;
}
.cookie-modal .modal-actions button.save:hover {
  background: #FFB300;
  color: #0E355E;
}
@media (max-width: 460px) {
  .cookie-modal {
    padding: 16px 5vw;
    min-width: 0;
  }
  .cookie-modal .modal-close {
    top: 6px;
    right: 11px;
  }
  .cookie-modal .modal-actions button {
    padding: 8px 16px;
    font-size: 0.97rem;
  }
}

/* --- ANIMATIONS --- */
.cta-primary, .card, .feature-grid > div, .testimonial-card {
  transition: box-shadow 0.23s cubic-bezier(.42,0,.58,1), transform 0.17s cubic-bezier(.42,0,.58,1), background 0.13s, color 0.13s;
}

/* --- MISC VISUAL FLAIR --- */
.section:before {
  content: '';
  display: block;
  position: absolute;
  top: -35px;
  left: 40px;
  width: 82px;
  height: 20px;
  background: #FFB300;
  opacity: 0.16;
  border-radius: 7px;
  pointer-events: none;
  z-index: 0;
}
.section:nth-child(odd):before {
  left: unset;
  right: 55px;
  opacity: 0.22;
  width: 55px;
  height: 14px;
  background: #0E355E;
}
@media (max-width: 600px) {
  .section:before {
    display: none;
  }
}

/* --- ACCESSIBILITY FOCUS --- */
a:focus, button:focus, select:focus {
  outline: 2px solid #FFB300;
  outline-offset: 2px;
  z-index: 5;
  background-color: #FFB30022;
}

/* --- General Adjustments for Artistic Style --- */
h1, h2, h3, h4 {
  text-transform: uppercase;
  letter-spacing: 2px;
}
.section {
  background-clip: padding-box;
}

/* --- END OF CSS --- */
