/* ==================== 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;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #1B2338;
  background: #FAFAFB;
  line-height: 1.6;
  min-height: 100vh;
}

*, *:before, *:after {
  box-sizing: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #253A6D;
  text-decoration: none;
  transition: color 0.2s;
}

a:hover, a:focus {
  color: #E2A200;
  outline: none;
}

ul, ol {
  margin-left: 1.2em;
  margin-bottom: 1.6em;
}

li {
  margin-bottom: 0.5em;
}

.button, .btn-primary {
  appearance: none;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 14px 32px;
  font-size: 1rem;
  letter-spacing: 0.04em;
  border-radius: 32px;
  background: #253A6D;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 4px 18px 0 rgba(37,58,109,0.10);
  transition: background 0.2s, transform 0.18s, box-shadow 0.18s;
  margin-bottom: 0;
  display: inline-block;
  position: relative;
  z-index: 1;
}
.button:hover, .btn-primary:hover, .btn-primary:focus {
  background: #E2A200;
  color: #253A6D;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 28px 0 rgba(37,58,109,0.16);
}

/* ==================== TYPOGRAPHY ===================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  color: #253A6D;
  margin-bottom: 12px;
}

h1 {
  font-size: 2.75rem;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-weight: 700;
}
p, ul, ol {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  color: #233057;
  font-size: 1.05rem;
  margin-bottom: 16px;
  line-height: 1.7;
}
strong {
  font-weight: 700;
}

.testimonial-stars {
  font-size: 1.15rem;
  color: #E2A200;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: .12em;
  margin-bottom: 7px;
  display: block;
}

.testimonial-author {
  font-size: 0.97rem;
  color: #253A6D;
  font-weight: bold;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-top: 6px;
  letter-spacing: 0.01em;
}

/* ==================== CONTAINER & GENERIC LAYOUT ===================== */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
  position: relative;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 8px 40px 0 rgba(37,58,109,0.06);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 23px 0 rgba(37,58,109,0.08);
  margin-bottom: 20px;
  position: relative;
  padding: 26px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 270px;
  max-width: 370px;
  transition: box-shadow 0.22s, transform 0.14s;
}
.card:hover {
  box-shadow: 0 14px 44px 0 rgba(226,162,0,0.17);
  transform: translateY(-4px) scale(1.02);
}

.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-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #FFF9ED;
  padding: 20px 28px;
  margin-bottom: 20px;
  border-radius: 20px;
  box-shadow: 0 6px 22px rgba(226,162,0,0.07);
  border-left: 7px solid #E2A200;
  max-width: 610px;
  width: 100%;
  transition: box-shadow 0.22s, transform 0.16s;
}
.testimonial-card:hover {
  box-shadow: 0 16px 44px 0 rgba(37,58,109,0.13);
  transform: translateY(-5px) scale(1.02);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.event-highlight {
  background: #EEF4FF;
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(37,58,109,0.07);
  padding: 18px 16px;
  margin-bottom: 24px;
  font-family: 'Roboto', Arial, sans-serif;
  color: #233057;
}

.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.team-member {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(37,58,109, 0.12);
  padding: 20px 18px;
  min-width: 240px;
  flex: 1 1 240px;
  font-family: 'Roboto', Arial, sans-serif;
}

/* ==================== HERO SECTIONS ===================== */
.hero-section {
  background: linear-gradient(108deg, #253A6D 87%, #E2A200 100%);
  color: #fff;
  position: relative;
  border-radius: 0 0 36px 36px;
  box-shadow: 0 12px 60px 0 rgba(37,58,109,0.12);
  margin-bottom: 35px;
  padding: 60px 0 48px 0;
  z-index: 1;
}
.hero-section h1, .hero-section h2, .hero-section p, .hero-section a {
  color: #fff;
}
.hero-section .btn-primary {
  background: #E2A200;
  color: #253A6D;
  font-weight: 900;
}
.hero-section .btn-primary:hover {
  background: #fff;
  color: #E2A200;
}

.cta-section {
  background: #253A6D;
  color: #fff;
  border-radius: 32px;
  box-shadow: 0 10px 42px rgba(37,58,109,0.09);
  padding: 46px 0 46px 0;
  margin-bottom: 60px;
}
.cta-section h2, .cta-section p, .cta-section a {
  color: #fff;
}
.cta-section .btn-primary {
  background: #E2A200;
  color: #253A6D;
  font-weight: 900;
}
.cta-section .btn-primary:hover {
  background: #fff;
  color: #E2A200;
}

/* ==================== HEADER & NAVIGATION ===================== */
header {
  background: #fff;
  box-shadow: 0 4px 24px 0 rgba(37,58,109,.09);
  position: sticky;
  top: 0;
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  color: #233057;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: color 0.17s;
  position: relative;
  padding: 6px 0;
}
.main-nav a:hover, .main-nav a:focus {
  color: #E2A200;
}

.btn-primary {
  margin-left: 24px;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.3rem;
  color: #253A6D;
  cursor: pointer;
  margin-left: 18px;
  z-index: 40;
  transition: color 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: #E2A200;
}

/* ========== MOBILE MENU =========== */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #253A6D;
  color: #fff;
  z-index: 1001;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(.77,0,.175,1);
  box-shadow: 0 20px 64px 0 rgba(37,58,109, .35);
  padding-top: 0;
  will-change: transform;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  right: 18px;
  top: 22px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
  z-index: 102;
  transition: color 0.17s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #E2A200;
}
.mobile-nav {
  margin-top: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: #fff;
  padding: 16px 0;
  border-radius: 14px;
  transition: background 0.13s, color 0.13s;
  width: 90%;
  text-align: center;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E2A200;
  color: #253A6D;
}

/* Hide scrollbar for mobile-menu */
.mobile-menu {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* ==================== FOOTER ===================== */
footer {
  background: #253A6D;
  color: #fff;
  padding: 44px 0 18px 0;
  margin-top: 60px;
  border-radius: 36px 36px 0 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
}
.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
  transition: color 0.22s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #E2A200;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #fff;
  font-size: 1rem;
}
.contact-info img {
  display: inline;
  vertical-align: middle;
  margin-right: 6px;
  width: 20px;
  height: 20px;
}

address {
  font-style: normal;
}

/* ==================== COOKIE CONSENT BANNER ===================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fff;
  color: #253A6D;
  box-shadow: 0 -8px 48px 0 rgba(37,58,109,0.13);
  z-index: 2012;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 18px 22px 18px;
  flex-wrap: wrap;
  gap: 20px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  transition: transform 0.38s;
  border-radius: 24px 24px 0 0;
  opacity: 1;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-btn {
  margin-right: 12px;
}
.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-btn {
  border: none;
  border-radius: 24px;
  padding: 9px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  margin: 0;
  outline: none;
  transition: background 0.2s, color 0.18s, box-shadow 0.12s;
}
.cookie-btn.accept {
  background: #E2A200;
  color: #253A6D;
  box-shadow: 0 2px 10px rgba(226,162,0,0.11);
}
.cookie-btn.accept:hover {
  background: #253A6D;
  color: #fff;
}
.cookie-btn.reject {
  background: #253A6D;
  color: #fff;
}
.cookie-btn.reject:hover {
  background: #E2A200;
  color: #253A6D;
}
.cookie-btn.settings {
  background: #fff;
  color: #253A6D;
  border: 2px solid #E2A200;
}
.cookie-btn.settings:hover {
  background: #E2A200;
  color: #fff;
}
/* Cookie settings modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 2050;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(37,58,109, 0.52);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadein 0.25s;
}
@keyframes fadein {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 26px;
  max-width: 480px;
  width: 95%;
  box-shadow: 0 14px 80px 0 rgba(37,58,109,0.13);
  padding: 38px 28px 26px 28px;
  font-family: 'Roboto', Arial, sans-serif;
  color: #253A6D;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: showModal 0.4s cubic-bezier(.5,1.6,.56,1);
}
@keyframes showModal {
  0% { transform: translateY(40px) scale(0.94); opacity: 0; }
  70% { transform: translateY(-7px) scale(1.03); opacity: 1;}
  100% { transform: none; }
}
.cookie-modal-close {
  position: absolute;
  top: 17px;
  right: 17px;
  background: none;
  border: none;
  font-size: 1.75rem;
  color: #253A6D;
  cursor: pointer;
  transition: color 0.23s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #E2A200;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #F7F8FA;
  border-radius: 14px;
  padding: 15px 16px;
  margin-bottom: 11px;
  font-size: 1rem;
}
.cookie-toggle {
  appearance: none;
  width: 48px;
  height: 26px;
  background: #DDD;
  border-radius: 16px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background .18s;
  vertical-align: middle;
}
.cookie-toggle:checked {
  background: #E2A200;
}
.cookie-toggle:before {
  content: '';
  display: block;
  position: absolute;
  left: 3px;
  top: 3px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.2s;
}
.cookie-toggle:checked:before {
  left: 25px;
}
.cookie-category .cookie-toggle[disabled] {
  background: #bbb;
  cursor: not-allowed;
}
/* ==================== SPACING & ALIGNMENT RULES ===================== */
section {
  margin-bottom: 60px;
}
section .container > .content-wrapper { 
  margin-bottom: 0; 
  gap: 18px;
}
.card-container, .content-grid, .team-list {
  gap: 24px;
  margin-bottom: 18px;
}
.card {
  margin-bottom: 20px;
}
.testimonial-card, .feature-item {
  margin-bottom: 20px;
}
.text-image-section {
  gap: 30px;
}

/* ==================== COMPONENT CLASSES ===================== */
.map-placeholder {
  background: #EFF1FF;
  border: 1.5px dashed #E2A200;
  border-radius: 16px;
  padding: 16px 11px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 1.03rem;
}
.text-section {
  margin-bottom: 18px;
}

/* ==================== UTILITY CLASSES ===================== */
.hide {
  display: none !important;
}

/* ==================== RESPONSIVE DESIGN (MOBILE-FIRST) ===================== */
@media (max-width: 1200px) {
  .container {
    max-width: 97vw;
  }
}
@media (max-width: 900px) {
  .team-list {
    flex-direction: column;
    gap: 16px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .main-nav {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  .container {
    padding-left: 7px;
    padding-right: 7px;
  }
  .section, .cta-section {
    padding: 25px 6px;
    border-radius: 18px;
  }
  .card {
    padding: 16px 10px;
    border-radius: 14px;
    min-width: 0;
    max-width: 100%;
  }
  .event-highlight {
    padding: 13px 8px;
    border-radius: 8px;
  }
  header .container {
    flex-wrap: wrap;
    flex-direction: row;
    align-items: flex-start;
  }
  .main-nav {
    display: none;
  }
  .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .footer-nav {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .text-image-section, .content-grid, .team-list {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card {
    padding: 14px 8px;
    border-radius: 10px;
    max-width: 100%;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    padding: 18px 8px 18px 8px;
  }
  .cookie-banner-actions {
    gap: 8px;
  }
}
@media (max-width: 560px) {
  html {
    font-size: 14px;
  }
  .hero-section {
    padding: 32px 0 28px 0;
    border-radius: 0 0 18px 18px;
  }
  .cta-section {
    padding: 28px 0 28px 0;
    border-radius: 18px;
  }
  .footer {
    padding: 25px 0 11px 0;
    border-radius: 18px 18px 0 0;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.33rem;
  }
}

/* ==================== ANIMATIONS ===================== */
@media (hover: hover) and (pointer: fine) {
  .button, .btn-primary, .card, .testimonial-card {
    transition: box-shadow 0.18s cubic-bezier(.42, 0,.58, 1), transform 0.16s cubic-bezier(.42,0,.58,1), background 0.15s, color 0.15s;
  }
}

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