/* CSS Reset & 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,
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.5;
  color: #222;
  background: #F8F8F8;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  display: block;
  border: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  background: none;
  border: none;
  box-shadow: none;
  appearance: none;
}

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

body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: var(--color-secondary, #F8F8F8);
  min-height: 100vh;
  font-size: 16px;
}

:root {
  --color-primary: #226179;
  --color-secondary: #F8F8F8;
  --color-accent: #F29F05;
  --color-dark: #1A2630;
  --color-light: #FFFFFF;
  --color-muted: #E9EEF1;
  --color-shadow: rgba(34, 97, 121, 0.06);
}

/* ================= CONTAINERS & LAYOUT ================= */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-light);
  border-radius: 24px;
  box-shadow: 0 8px 24px var(--color-shadow);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-light);
  border-radius: 18px;
  box-shadow: 0 4px 20px var(--color-shadow);
  padding: 28px 22px;
  flex: 1 1 290px;
  min-width: 270px;
  transition: transform 0.18s, box-shadow 0.18s;
}
.card:hover {
  transform: translateY(-6px) scale(1.025) rotate(-1deg);
  box-shadow: 0 8px 36px 0 rgba(242,159,5,0.18);
}

.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--color-muted);
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px var(--color-shadow);
  font-size: 18px;
  color: #17374A;
  flex-wrap: wrap;
  transition: background 0.18s, box-shadow 0.26s;
}
.testimonial-card:hover {
  background: #fffbe6;
  box-shadow: 0 10px 32px 0 rgba(242,159,5,0.12);
}

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

ul {
  list-style: none;
}
ul li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 16px;
  font-size: 16px;
}
ul li img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

/* ============ TYPOGRAPHY ============= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  color: var(--color-primary);
  letter-spacing: 1px;
  line-height: 1.2;
  margin-bottom: 0.4em;
}
h1 {
  font-size: 2.8rem;
  color: var(--color-accent);
  text-shadow: 1px 2px 8px rgba(242,159,5,0.10);
  margin-bottom: 12px;
}
h2 {
  font-size: 2rem;
  margin-top: 6px;
}
h3 {
  font-size: 1.38rem;
  color: #226179;
  font-weight: 700;
}
h4, h5, h6 {
  font-size: 1.1rem;
  font-weight: 700;
}
p {
  font-size: 17px;
  margin-bottom: 8px;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #343b40;
}
.text-section p,
.text-section li,
.text-section ul {
  color: #38506C;
}
.text-section {
  background: #F3F7FA;
  border-radius: 14px;
  padding: 20px 24px;
  margin-bottom: 18px;
  box-shadow: 0 2px 8px var(--color-shadow);
}
strong {
  color: var(--color-primary);
}

/* ============= HERO ================== */
.hero {
  background: linear-gradient(120deg, #226179 60%, #F29F05 100%);
  color: var(--color-light);
  border-radius: 0 0 36px 36px;
  margin-bottom: 60px;
}
.hero .container {
  min-height: 320px;
  justify-content: center;
  align-items: flex-start;
}
.hero .content-wrapper {
  gap: 16px;
  color: var(--color-light);
}
.hero h1 {
  color: var(--color-light);
  font-size: 2.5rem;
  text-shadow: 2px 4px 14px rgba(34,97,121,0.12);
}
.hero p {
  color: #fffbe8;
  font-size: 1.18rem;
}

/* =========== HEADER & NAVIGATION ============= */
header {
  width: 100%;
  padding: 0;
  background: var(--color-light);
  box-shadow: 0 2px 14px var(--color-shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}
header .container {
  min-height: 84px;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
header a img {
  height: 46px;
}
nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--color-primary);
  padding: 8px 14px;
  border-radius: 15px;
  letter-spacing: 0.025em;
  position: relative;
  transition: background 0.16s, color 0.16s, box-shadow 0.18s;
}
nav a.cta {
  background: var(--color-accent);
  color: #fff;
  border-radius: 22px;
  padding: 10px 26px;
  margin-left: 16px;
  box-shadow: 0 2px 10px 0 rgba(242,159,5,0.09);
  font-size: 18px;
}
nav a:hover, nav a.active {
  background: var(--color-accent);
  color: #fff;
}
nav a.cta:hover {
  background: #ffb847;
  color: var(--color-dark);
}

/* =========== MOBILE MENU ============= */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.6rem;
  color: var(--color-primary);
  cursor: pointer;
  padding: 10px 12px;
  border-radius: 13px;
  transition: background 0.15s;
  margin-left: 18px;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--color-accent);
  color: #fff;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 2002;
  background: rgba(34, 97, 121, 0.96);
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(0.65, 0, 0.35, 1);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 18px 0 0 0;
}
.mobile-menu.active {
  transform: translateX(0%);
}
.mobile-menu-close {
  font-size: 2.4rem;
  background: var(--color-light);
  border: none;
  color: var(--color-primary);
  padding: 11px 18px 11px 12px;
  margin: 0 22px;
  border-radius: 15px;
  box-shadow: 0 2px 8px var(--color-shadow);
  cursor: pointer;
  transition: background 0.15s, color 0.13s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: var(--color-accent);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-end;
  margin: 40px 32px 0 0;
  width: 78vw;
  max-width: 340px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.24rem;
  padding: 18px 0 10px 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-bottom: 2px solid rgba(242,159,5,0.25);
  width: 100%;
  text-align: right;
  border-radius: 0 18px 18px 0;
  transition: background 0.16s, color 0.16s;
}
.mobile-nav a.cta {
  background: var(--color-accent);
  color: #17374A;
  border-radius: 22px;
  padding: 12px 18px;
  margin-top: 8px;
  font-size: 1.14rem;
  text-align: center;
  box-shadow: 0 2px 12px 0 rgba(242,159,5,0.14);
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #fffbe6;
  color: var(--color-primary);
}

@media (max-width: 1020px) {
  .container {
    max-width: 100vw;
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media (max-width: 900px) {
  header .container {
    flex-direction: row;
    gap: 10px;
  }
  nav {
    gap: 16px;
  }
}
@media (max-width: 830px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ============ BUTTONS & CTA ============ */
.cta, .btn, button, input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent);
  color: var(--color-dark);
  font-family: 'Montserrat', Arial, sans-serif;
  font-layout: 700;
  font-size: 1.14rem;
  letter-spacing: 0.04em;
  border-radius: 21px;
  border: none;
  padding: 14px 36px;
  cursor: pointer;
  margin-top: 12px;
  min-width: 120px;
  box-shadow: 0 4px 20px 0 rgba(242,159,5,0.13);
  transition: background 0.2s, color 0.18s, box-shadow 0.26s, transform 0.16s;
  font-weight: 700;
  text-shadow: 1px 2px 14px rgba(255,255,255,0.07);
}
.cta:hover, .btn:hover, button:hover, input[type="submit"]:hover {
  background: #ffb847;
  color: var(--color-primary);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 28px 0 rgba(242,159,5,0.22);
}

/* Icon inside button */
.cta img, .btn img {
  height: 1.2em;
  width: auto;
  margin-left: 8px;
}

/* ============ TABLES ============ */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 14px 0 20px 0;
  background: #edf8fd;
  border-radius: 11px;
  overflow: hidden;
  box-shadow: 0 2px 10px var(--color-shadow);
}
thead {
  background: var(--color-accent);
}
th, td {
  padding: 16px 10px;
  font-size: 1rem;
}
th {
  color: var(--color-dark);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
tbody tr:nth-child(even) {
  background: #eaf4ff;
}
tbody tr:nth-child(odd) {
  background: #fffbe6;
}
td {
  color: #1b334a;
}

/* ================= FOOTER ============== */
footer {
  background: var(--color-primary);
  color: #fff;
  margin-top: 60px;
  padding: 32px 0 18px 0;
}
footer .container {
  gap: 36px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 22px;
  gap: 26px;
}
.footer-nav nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-right: 36px;
}
.footer-nav nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 16px;
  opacity: 0.82;
  transition: opacity 0.12s, color 0.18s;
}
.footer-nav nav a:hover {
  color: var(--color-accent);
  opacity: 1;
}
.footer-info {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 40px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.footer-info img {
  height: 56px;
  margin-right: 12px;
}
.footer-info > div {
  font-size: 16px;
  line-height: 1.65;
  color: #fff;
}
.legal-text {
  font-size: 0.97rem;
  color: #D1E5F1;
  margin-top: 10px;
}

/* ========== COOKIE CONSENT BANNER ========== */
.cookie-consent-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 11000;
  background: #fffbe6;
  color: var(--color-primary);
  padding: 24px 20px 18px 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;
  box-shadow: 0 -2px 24px 0 rgba(242,159,5,0.16);
  border-radius: 24px 24px 0 0;
  font-size: 17px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.24s, transform 0.26s;
}
.cookie-consent-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-consent-banner .cookie-btn, .cookie-consent-banner button {
  margin-left: 12px;
  margin-top: 0;
  min-width: 120px;
  padding: 11px 26px;
  border-radius: 19px;
  background: var(--color-accent);
  color: var(--color-dark);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.16s, color 0.12s;
}
.cookie-consent-banner .cookie-btn.secondary, .cookie-consent-banner button.secondary {
  background: var(--color-primary);
  color: #fff;
  margin-left: 6px;
}
.cookie-consent-banner .cookie-btn.settings, .cookie-consent-banner button.settings {
  background: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
  margin-left: 6px;
}
.cookie-consent-banner .cookie-btn:hover, .cookie-consent-banner button:hover {
  background: #ffb847;
  color: #226179;
}
.cookie-consent-banner .cookie-btn.settings:hover, .cookie-consent-banner button.settings:hover {
  background: var(--color-accent);
  color: #fff;
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  top:0; right:0; bottom:0; left:0;
  z-index: 12000;
  background: rgba(32,38,44,0.57);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.22s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fcfbf8;
  border-radius: 24px;
  box-shadow: 0 8px 42px 0 rgba(242,159,5,0.21);
  padding: 36px 28px 24px 28px;
  min-width: 330px;
  max-width: 97vw;
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--color-primary);
  position: relative;
}
.cookie-modal h2 {
  margin-bottom: 22px;
}
.cookie-modal ul li {
  font-size: 16px;
  margin-bottom: 12px;
}
.cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: transparent;
  border: none;
  font-size: 2.1rem;
  color: var(--color-accent);
  cursor: pointer;
}
.cookie-modal-close:hover {
  color: var(--color-primary);
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 16px;
}
.cookie-category input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--color-accent);
}
.cookie-category label {
  font-size: 17px;
  color: var(--color-primary);
  font-weight: 600;
}
.cookie-category .category-essential {
  color: #bcbcbc;
  font-size: 15px;
  font-style: italic;
  margin-left: 8px;
}
.cookie-modal .cookie-btn {
  margin-top: 14px;
  padding: 11px 22px;
}

/* ========== RESPONSIVE DESIGN ============ */
@media (max-width: 800px) {
  .section {
    margin-bottom: 40px;
    padding: 26px 8px;
    border-radius: 16px;
  }
  .testimonial-card {
    font-size: 17px;
    flex-direction: column;
  }
  .footer-info {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 650px) {
  .container {
    padding: 0 4vw;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.34rem; }
  .section, .hero {
    border-radius: 0 0 23px 23px;
    margin-bottom: 28px;
    padding: 20px 4px;
  }
  .hero .container {
    min-height: unset;
  }
  .footer-nav {
    flex-direction: column;
    gap: 9px;
  }
  .footer-info img {
    height: 44px;
  }
}
@media (max-width: 500px) {
  .container {
    padding: 0 7px;
  }
  .section {
    border-radius: 9px;
    padding: 14px 2px;
  }
  .footer-info {
    gap: 7px;
  }
  .testimonial-card {
    padding: 10px;
    border-radius: 11px;
    font-size: 15px;
  }
  .cookie-consent-banner {
    flex-direction: column;
    padding: 17px 6px 12px 6px;
    gap: 16px;
    border-radius: 13px 13px 0 0;
    font-size: 15px;
  }
  .cookie-modal {
    padding: 22px 5vw 14px 5vw;
    min-width: 0;
    font-size: 15px;
  }
}

/* ====== UNIQUE/ARTISTIC TOUCHES ====== */
.hero {
  position: relative;
  overflow: hidden;
}
.hero:after {
  content: '';
  position: absolute;
  top: -110px;
  left: -110px;
  width: 230px;
  height: 230px;
  background: var(--color-accent);
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.12;
  z-index: 0;
}
.hero:before {
  content: '';
  position: absolute;
  bottom: -70px;
  right: -70px;
  width: 160px;
  height: 160px;
  background: #fffbe6;
  border-radius: 50%;
  filter: blur(18px);
  opacity: 0.12;
  z-index: 0;
}
.hero .content-wrapper, .hero * {
  position: relative;
  z-index: 1;
}
.section {
  border-left: 8px solid var(--color-accent);
  border-right: 8px solid #ebf5fb;
  box-shadow: 0 8px 26px 0 rgba(34,97,121,0.05);
}
.card {
  border-left: 5px solid var(--color-primary);
}
.content-grid {
  gap: 28px;
}
.testimonial-card strong {
  color: var(--color-accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}

/* Micro-interactions & Smooth Transitions */
a, .cta, button, input, nav a, .mobile-nav a {
  transition: all 0.18s cubic-bezier(.46,.21,.06,1);
}
li img, ul li img, .card img {
  filter: drop-shadow(0 3px 8px #eaf4fd) saturate(1.1);
  border-radius: 8px;
}

/* === VISUAL HIERARCHY SPACING === */
main {
  min-height: 60vh;
  margin-bottom: 20px;
}
.section:not(:last-child) {
  margin-bottom: 60px;
}
.content-wrapper > * + * {
  margin-top: 10px;
}

/* Art Font Play on headers */
h1, h2 {
  letter-spacing: 0.05em;
  font-style: italic;
  text-shadow: 1px 2px 16px rgba(226,97,121,0.12);
}

/****************************************/
/*     END OF MAIN CSS FILE              */
/****************************************/
