/* =================== CSS RESET & BASE =================== */
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;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: #F4F6FA;
  color: #18325e;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  color: #224682;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F5B324;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}
iframe {
  display:block;
}

/* =============== FONT FACES ==================== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,500&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #224682;
  font-weight: 700;
  letter-spacing: 0.03em;
}
h1 {
  font-size: 2.8rem;
  margin-bottom: 24px;
  line-height: 1.1;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  line-height: 1.15;
}
h3 {
  font-size: 1.325rem;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1.1rem;
}
p {
  margin-bottom: 16px;
  font-size: 1.08rem;
}
b, strong {
  font-weight: 700;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px 50px 20px 50px;
  box-shadow: 0 4px 32px 0 rgba(34, 70, 130, 0.06);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.content-wrapper {
  margin: 0 auto;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 16px;
}

.feature-grid, .card-container, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-grid > div, .card {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  max-width: 280px;
  margin-bottom: 20px;
  background: #F4F6FA;
  border-radius: 18px 40px 18px 40px;
  box-shadow: 0 2.5px 12px rgba(34,70,130,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 18px;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
}
.feature-grid > div:hover, .card:hover {
  box-shadow: 0 4px 28px rgba(34,70,130,0.14);
  transform: translateY(-6px) scale(1.018);
}
.feature-grid img {
  margin-bottom: 12px;
  height: 54px;
  width: 54px;
  object-fit: contain;
}

/* ================= HEADER & NAV ================ */
header {
  background: #fff;
  border-bottom: 2px solid #F4F6FA;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
  box-shadow: 0 6px 16px 0 rgba(34, 70, 130, 0.05);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
}
header a img {
  height: 38px;
  width: auto;
  margin-right: 24px;
}
nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}
nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #224682;
  padding: 6px 12px;
  border-radius: 8px;
  transition: background 0.17s, color 0.17s;
}
nav a:hover, nav a:focus {
  background: #F5B324;
  color: #224682;
}
nav .primary-cta {
  background: #224682;
  color: #fff;
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: background 0.22s, color 0.19s, box-shadow 0.2s;
  box-shadow: 0 2px 12px rgba(34,70,130,0.15);
  border: none;
  margin-left: 12px;
}
nav .primary-cta:hover, nav .primary-cta:focus {
  background: #F5B324;
  color: #224682;
  box-shadow: 0 4px 20px 0 #F5B32444;
  transform: scale(1.04);
}
.mobile-menu-toggle {
  display: none;
  background: none;
  color: #224682;
  border: none;
  font-size: 2.2rem;
  cursor: pointer;
  margin-left: 14px;
  transition: color .2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  color: #F5B324;
}

/* =============== MOBILE NAV MENU =============== */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 2002;
  box-shadow: 0 8px 32px rgba(34, 70, 130, 0.10);
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.7,.03,.28,.99);
}
.mobile-menu.open {
  display: block;
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  right: 24px;
  top: 24px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #224682;
  cursor: pointer;
  z-index: 1;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #F5B324;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
  margin-top: 80px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  color: #224682;
  padding: 10px 0;
  border-radius: 10px;
  width: 80vw;
  text-align: center;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F5B324;
  color: #224682;
}

/* ============= HERO SECTION =================== */
.hero {
  padding: 60px 0 32px 0;
  margin-bottom: 40px;
  background: #F4F6FA;
  position: relative;
}
.hero .container {
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  line-height: 1.12;
  color: #224682;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 22px;
}
.hero .primary-cta {
  background: #F5B324;
  color: #224682;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  border: none;
  padding: 13px 38px;
  font-size: 1.15rem;
  border-radius: 30px;
  box-shadow: 0 2px 16px #F5B32433;
  letter-spacing: 0.06em;
  transition: background 0.2s, color 0.2s, box-shadow 0.18s, transform 0.21s;
  cursor: pointer;
}
.hero .primary-cta:hover, .hero .primary-cta:focus {
  background: #224682;
  color: #fff;
  box-shadow: 0 4px 24px 0 #22468228;
  transform: scale(1.048);
}

/* ============== CARDS & FLEX-LAYOUTS ============= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px 40px 18px 40px;
  box-shadow: 0 2.5px 10px rgba(34, 70, 130, 0.06);
  padding: 30px 20px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.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;
}

/* ============== TESTIMONIAL & RATINGS ============= */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  min-width: 250px;
  max-width: 340px;
  background: #fff;
  border-radius: 16px 32px 16px 32px;
  box-shadow: 0 2px 14px #22468219;
  border: 2px solid #F5B32430;
  transition: box-shadow 0.18s, transform 0.16s;
}
.testimonial-card p {
  color: #243250;
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.testimonial-card b {
  color: #224682;
  font-size: 1.07rem;
}
.testimonial-card:hover {
  box-shadow: 0 6px 22px #22468226;
  transform: translateY(-3px) scale(1.018);
}
.rating-overview {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 12px 0 0 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.07rem;
  color: #224682;
  font-weight: 600;
}
.rating-overview span:first-child {
  color: #F5B324;
  font-size: 1.17rem;
  margin-right: 6px;
  letter-spacing: 2px;
}

/* ========== FOOTER ============ */
footer {
  background: #224682;
  color: #fff;
  padding: 38px 0 26px 0;
  border-radius: 32px 32px 0px 0px;
  margin-top: 64px;
  box-shadow: 0 -4px 24px #22468214;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 36px;
  align-items: flex-start;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a {
  color: #F5B324;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.03em;
}
.footer-brand img {
  height: 42px;
  margin-bottom: 8px;
}
.footer-contact {
  font-size: 1.02rem;
  color: #fff;
  line-height: 1.5;
}

/* ============= BUTTONS ================ */
.primary-cta, .secondary-cta, button, input[type="submit"] {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(34,70,130,0.09);
  transition: background 0.20s, color 0.18s, box-shadow 0.16s, transform 0.19s;
}
.primary-cta {
  background: #224682;
  color: #fff;
  padding: 11px 34px;
  font-size: 1.06rem;
}
.primary-cta:hover, .primary-cta:focus {
  background: #F5B324;
  color: #224682;
  transform: scale(1.04);
  box-shadow: 0 3px 16px #F5B32422;
}
.secondary-cta {
  background: #F5B324;
  color: #224682;
  padding: 10px 26px;
  font-size: 1rem;
  margin-top: 8px;
}
.secondary-cta:hover, .secondary-cta:focus {
  background: #224682;
  color: #fff;
  box-shadow: 0 3px 16px #22468225;
}
button:active {
  transform: scale(0.98);
}

/* ============= FORM/CONTACT DETAILS ============== */
.contact-details ul {
  list-style-type: none;
  padding-left: 0;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.contact-details img {
  height: 24px;
  width: 24px;
  object-fit: contain;
}
.working-hours {
  margin-top: 10px;
  margin-bottom: 10px;
}

/* ============= GEOMETRIC & STRUCTURED FLAVOR =============== */
.section, .card, .feature-grid > div, .testimonial-card {
  border-radius: 20px 50px 20px 50px;
  /* Touches of geometric, angular, dynamic corners */
}
.section {
  position: relative;
  z-index: 1;
  isolation: isolate;
}
.section::before {
  content: '';
  display: block;
  position: absolute;
  left: -40px; top: -40px;
  width: 60px; height: 60px;
  background: #F5B32444;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  border-radius: 18px;
  z-index: 0;
}
.section::after {
  content: '';
  display: block;
  position: absolute;
  right: -20px; bottom: -20px;
  width: 30px; height: 30px;
  background: #22468233;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  border-radius: 10px;
  z-index: 0;
}
.section > * {
  position: relative;
  z-index: 2;
}

/* ========== MICRO-INTERACTIONS & TRANSITIONS ============= */
.card, .testimonial-card, .feature-grid > div, .primary-cta, .secondary-cta {
  transition: box-shadow 0.19s, transform 0.17s, background 0.17s, color 0.14s;
}

/* ========== LISTS ========== */
ul {
  margin-bottom: 16px;
  list-style-type: disc;
}
ul li b {
  color: #224682;
  font-weight: 700;
  margin-right: 4px;
}

/* ========== RESPONSIVE =============== */
@media (max-width: 1024px) {
  .container {
    max-width: 96vw;
    padding-left: 10px;
    padding-right: 10px;
  }
  .feature-grid > div, .card {
    min-width: 180px;
    max-width: 45vw;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 100vw;
    padding-left: 14px;
    padding-right: 14px;
  }
  .section {
    margin-bottom: 40px;
    padding: 32px 8px;
  }
  header .container {
    flex-direction: row;
    gap: 0;
    max-width: 100vw;
    padding-left: 12px; padding-right: 12px;
    min-height: 60px;
  }
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .feature-grid, .card-container, .testimonial-slider {
    flex-direction: column;
    gap: 20px;
  }
  .feature-grid > div, .card, .testimonial-card {
    min-width: 0;
    max-width: 100%;
  }
  .text-image-section, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .footer-nav, .footer-contact, .footer-brand {
    align-items: flex-start;
  }
  footer .container {
    flex-direction: column;
    gap: 22px;
  }
  .hero {
    padding: 44px 0 18px 0;
  }
  .hero h1 {
    font-size: 1.9rem;
    margin-bottom: 12px;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 1.5rem;
  }
  h2 {
    font-size: 1.13rem;
  }
  .hero {
    padding: 32px 0 12px 0;
  }
}

/* ========== COOKIE CONSENT BANNER ================ */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  color: #224682;
  border-top: 2px solid #F5B324;
  box-shadow: 0 -4px 36px #22468221;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 24px 18px 22px 18px;
  gap: 16px;
  min-height: 68px;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  opacity: 1;
  transition: opacity 0.37s cubic-bezier(.7,.05,.25,1);
}
.cookie-consent-banner.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-consent-msg {
  flex: 1 1 240px;
  margin-right: 12px;
  font-size: 1rem;
}
.cookie-buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
.cookie-btn {
  padding: 8px 22px;
  border-radius: 22px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border: none;
  cursor: pointer;
  font-weight: 700;
  transition: background 0.21s, color 0.18s, box-shadow 0.18s;
}
.cookie-btn.accept {
  background: #224682;
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #F5B324;
  color: #224682;
}
.cookie-btn.reject {
  background: #F4F6FA;
  color: #224682;
  border: 1.5px solid #22468244;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #F5B324;
  color: #224682;
  border: 1.5px solid #F5B324;
}
.cookie-btn.settings {
  background: #fff;
  color: #224682;
  border: 1.5px solid #22468222;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #F5B324;
  color: #224682;
  border: 1.5px solid #F5B324;
}

/* ========== COOKIE PREFERENCES MODAL ========== */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 4000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34,70,130,0.17);
  align-items: center;
  justify-content: center;
  animation: fadeIn .23s;
}
.cookie-modal-overlay.active {
  display: flex;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #224682;
  border-radius: 24px 40px 18px 40px;
  padding: 32px 22px;
  max-width: 370px;
  width: 92vw;
  box-shadow: 0 12px 34px #22468222;
  z-index: 4100;
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
.cookie-modal h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #224682;
  font-size: 1.32rem;
  margin-bottom: 8px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.01rem;
  background: #F4F6FA;
  border-radius: 14px;
  padding: 8px 12px;
}
.cookie-category-label {
  font-weight: 600;
  color: #224682;
}
.cookie-toggle {
  appearance: none;
  width: 42px;
  height: 22px;
  background: #F5B32444;
  border-radius: 22px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.15s;
  vertical-align: middle;
}
.cookie-toggle:checked {
  background: #F5B324;
}
.cookie-toggle:before {
  content: '';
  position: absolute;
  left: 2px; top: 2px;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.18s;
  box-shadow: 0 1.5px 4px #22468211;
}
.cookie-toggle:checked:before {
  left: 22px;
}
.cookie-modal-actions {
  margin-top: 18px;
  display: flex;
  flex-direction: row;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal-actions .cookie-btn {
  min-width: 100px;
}
.cookie-modal-close {
  position: absolute;
  right: 18px;
  top: 18px;
  background: none;
  color: #224682;
  border: none;
  font-size: 1.7rem;
  cursor: pointer;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #F5B324;
}
@media (max-width: 500px) {
  .cookie-modal {
    max-width: 95vw;
    padding: 22px 4px;
  }
}

/* ========== MISC GEOMETRIC/STRUCTURED SHAPES DECOR ========== */
.event-overview ul {
  padding-left: 18px;
  margin-bottom: 16px;
}
.team-overview {
  background: #F4F6FA;
  border-radius: 14px 32px 14px 32px;
  padding: 18px 14px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F4F6FA;
  border-radius: 14px 32px 14px 32px;
  padding: 18px 16px;
  margin-bottom: 20px;
}

/* ========== HIGH CONTRAST (ACCESSIBILITY FOR TESTIMONIALS) ========== */
.testimonial-card {
  background: #fff;
  color: #18325e;
  border: 2px solid #F5B32433;
}

/* ========== PRINT ========== */
@media print {
  header, footer, .mobile-menu, .cookie-consent-banner, .cookie-modal-overlay {
    display: none !important;
  }
  body, .container, .section {
    background: #fff !important;
    color: #222 !important;
  }
}

/* ================= END CSS ==================== */
