/* CSS RESET & NORMALIZATION */
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%;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  background-color: #FCFBF7;
  font-family: 'Roboto', Arial, sans-serif;
  color: #1A3952;
  min-height: 100vh;
  transition: background 0.4s;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border: none;
}
a {
  color: #A07535;
  text-decoration: none;
  transition: color 0.24s;
}
a:hover, a:focus {
  color: #1A3952;
  text-decoration: underline;
}
ul, ol {
  margin-left: 24px;
  font-size: 1rem;
}
li {
  margin-bottom: 10px;
}
strong {
  font-weight: 700;
}
hr {
  border: none;
  border-top: 1px solid #EDE5DA;
  margin: 32px 0;
}

/* BASE LAYOUT STRUCTURE */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  color: #1A3952;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 10px;
}
h2 {
  font-size: 1.65rem;
  margin-bottom: 8px;
}
h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
  color: #32698F;
}
h4, h5 {
  font-size: 1rem;
  margin-bottom: 5px;
}
p, .text-section p, .small-contact {
  font-size: 1rem;
  color: #1A3952;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.75;
  margin-bottom: 8px;
}
.small-contact {
  font-size: 0.94rem;
  color: #7B8FA7;
}

/* BUTTONS */
.cta-btn, .cookie-btn, .cookie-banner button, .cookie-modal button {
  display: inline-block;
  padding: 12px 32px;
  background: #BAD7EC;
  color: #1A3952;
  border: none;
  border-radius: 28px;
  font-size: 1.12rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 8px 0 rgba(26,57,82,0.10);
  cursor: pointer;
  transition: background 0.2s, color 0.22s, box-shadow 0.18s, transform 0.19s;
  margin: 8px 0;
}
.cta-btn:hover, .cta-btn:focus,
.cookie-btn:hover, .cookie-btn:focus,
.cookie-banner button:hover, .cookie-banner button:focus,
.cookie-modal button:hover, .cookie-modal button:focus {
  background: #1A3952;
  color: #fff;
  box-shadow: 0 4px 16px rgba(26,57,82,0.17);
  transform: translateY(-2px) scale(1.01);
}

/* HEADER/NAVIGATION */
header {
  width: 100%;
  background: linear-gradient(90deg, #F5F3EF 60%, #E8F6F9 100%);
  box-shadow: 0 1px 8px 0 rgba(176,190,199,0.08);
  z-index: 11;
  position: relative;
}
header .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  min-height: 82px;
}
.logo img {
  height: 55px;
  width: auto;
  filter: drop-shadow(0 1px 4px #E6EEF0);
}
header nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
header nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #4572A1;
  padding: 6px 10px;
  border-radius: 19px;
  transition: background 0.15s, color 0.15s;
}
header nav a:hover, header nav a:focus {
  background: #E8F6F9;
  color: #1A3952;
}

.cta-btn {
  margin-left: 28px;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #4572A1;
  padding: 7px 12px;
  border-radius: 17px;
  cursor: pointer;
  transition: background 0.19s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #E8F6F9;
}

/* MOBILE MENU */
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  width: 100vw;
  height: 100vh;
  background: #F9FAFB;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  transform: translateX(-105%);
  transition: transform 0.37s cubic-bezier(0.85,0,0.13,1);
  box-shadow: 0 4px 24px rgba(26,57,82,0.14);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2rem;
  color: #A07535;
  background: none;
  border: none;
  align-self: flex-end;
  margin: 18px 24px 8px 0;
  cursor: pointer;
  border-radius: 50%;
  padding: 3px 14px;
  transition: background 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #F8EADA;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin: 0 36px;
}
.mobile-nav a {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  color: #1A3952;
  background: none;
  padding: 12px 0;
  width: 100%;
  border-radius: 8px;
  margin-bottom: 2px;
  transition: background 0.14s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #A07535;
  background: #E8F6F9;
}

/* HERO SECTION */
.hero {
  min-height: 330px;
  background: linear-gradient(96deg,#BAD7EC 0,#F9FAFB 65%, #FDF9F6 100%);
  border-radius: 0 0 36px 36px;
  box-shadow: 0 5px 32px -16px #AAC8DE;
  margin-bottom: 50px;
  padding: 48px 0 40px 0;
}
.hero .container {
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero h1 {
  font-size: 2.4rem;
  color: #1A3952;
  margin-bottom: 12px;
  text-shadow: 0 2px 8px #E7ECF0;
}
.hero p {
  font-size: 1.25rem;
  color: #365471;
  margin-bottom: 24px;
}

/* SECTION SPACING & LAYOUTS */
section {
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 14px 0 rgba(26,57,82,0.06);
  margin-bottom: 20px;
  position: relative;
  padding: 32px 28px 24px;
}
.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: center;
  gap: 20px;
  padding: 20px;
  background: #F6F3FF;
  border-radius: 17px;
  box-shadow: 0 2px 8px 0 rgba(94,154,174,0.07);
  margin-bottom: 24px;
  max-width: 590px;
  align-self: center;
}
.testimonial-card p {
  color: #253139;
  font-size: 1.09rem;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 7px;
  font-style: italic;
  text-align: center;
}
.testimonial-card span {
  font-size: 1rem;
  color: #6A5E4F;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  padding: 28px 18px;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(186, 215, 236, 0.10);
  min-width: 230px;
  flex: 1 1 270px;
  margin-bottom: 20px;
}
.feature-item img {
  width: 44px;
  height: 44px;
  margin-bottom: 6px;
  filter: drop-shadow(0 1px 6px #E8F6F9);
}
.feature-item h3 {
  color: #32698F;
  font-size: 1.15rem;
}
.feature-item p {
  font-size: 1rem;
  color: #36454F;
}

/* TEXT SECTION */
.text-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: #FFF8F5;
  border-radius: 13px;
  padding: 22px 17px 14px;
  box-shadow: 0 2px 7px 0 rgba(224,202,189,0.06);
}

/* TABLES IN MENU */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  font-size: 1rem;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  margin-top: 12px;
  box-shadow: 0 1px 6px 0 rgba(186,215,236,0.04);
}
th, td {
  padding: 12px 9px;
  text-align: left;
}
th {
  background: #E9F3FF;
  font-family: 'Playfair Display', Georgia, serif;
  color: #497399;
  font-weight: 700;
  font-size: 1.07rem;
}
td {
  border-bottom: 1px solid #F2EBE3;
  font-family: 'Roboto', Arial, sans-serif;
  color: #22303D;
}
tr:last-child td {
  border-bottom: none;
}

/* FOOTER */
footer {
  background: linear-gradient(80deg,#F5F3EF 65%, #E8F6F9 100%);
  border-top: 1px solid #E5E9EB;
  box-shadow: 0 -2px 12px 0 rgba(176,190,199,0.05);
  padding: 32px 0 18px 0;
}
footer .container {
  flex-direction: column;
  align-items: center;
}
footer .content-wrapper {
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
  justify-content: center;
  align-items: center;
}
footer nav a {
  color: #6B6D91;
  font-size: 0.98rem;
  font-family: 'Roboto', Arial, sans-serif;
  border-radius: 12px;
  padding: 6px 11px;
  transition: background 0.21s, color 0.14s;
}
footer nav a:hover,footer nav a:focus{
  background: #E8F6F9;
  color: #1A3952;
}
footer p {
  font-size: 0.91rem;
  color: #ACB4C3;
  font-family: 'Roboto', Arial, sans-serif;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #FFFFFFEE;
  box-shadow: 0 -2px 18px 0 rgba(160,117,53,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 19px 14px 19px 20px;
  z-index: 23000;
  font-size: 1rem;
  border-radius: 18px 18px 0 0;
  border-top: 1.5px solid #EADDCB;
  animation: slideBannerIn 0.48s cubic-bezier(0.6,0.2,0.4,1);
}
@keyframes slideBannerIn {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}
.cookie-banner p {
  color: #233D5D;
  margin: 0;
  padding-right: 6px;
}
.cookie-btn {
  margin-left: 8px;
  padding: 9px 22px;
  font-size: 1rem;
  border-radius: 40px;
  background: #BAD7EC;
  color: #1A3952;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  box-shadow: 0 2px 7px rgba(80,114,138,0.07);
  transition: background 0.17s, color 0.16s;
}
.cookie-btn.reject {
  background: #F5DDDF;
  color: #944A55;
}
.cookie-btn.settings {
  background: #FFF3E3;
  color: #A07535;
}
.cookie-btn.accept {
  background: #98D6A5;
  color: #215545;
}
.cookie-btn:hover, .cookie-btn:focus {
  opacity: 0.95;
  filter: brightness(1.08);
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  z-index: 23010;
  background: rgba(100,121,161,0.32);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeModalBG 0.37s;
}
@keyframes fadeModalBG {
  from { background: rgba(100,121,161,0); }
  to { background: rgba(100,121,161,0.32); }
}
.cookie-modal-content {
  background: #fff8f5;
  border-radius: 22px;
  box-shadow: 0 2px 32px 0 rgba(100,121,161,0.17);
  max-width: 420px;
  width: 92vw;
  padding: 36px 26px 26px 26px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
  animation: slideModalIn 0.32s cubic-bezier(0.51,0.3,0.18,1);
  position: relative;
}
@keyframes slideModalIn {
  from { transform: translateY(36px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-modal-content h3 {
  font-size: 1.3rem;
  color: #1A3952;
}
.cookie-modal-content label {
  font-size: 1.04rem;
  color: #444d55;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-modal-content input[type='checkbox'] {
  accent-color: #A07535;
  width: 17px;
  height: 17px;
}
.cookie-modal-buttons {
  display: flex;
  flex-direction: row;
  gap: 15px;
  margin-top: 16px;
  align-items: center;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 1.8rem;
  color: #A07535;
  background: none;
  border: none;
  cursor: pointer;
  padding: 3px 12px;
  border-radius: 8px;
  transition: background 0.16s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #FFF2DC;
}

/* RESPONSIVE DESIGN (MOBILE FIRST) */
@media (max-width: 1050px) {
  .container {
    max-width: 94vw;
  }
  .content-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 850px) {
  .feature-grid, .card-container, .content-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }
  .feature-item {
    min-width: unset;
    flex: 1 1 100%;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.24rem; }
  .section, section {
    padding: 28px 0 28px 0;
    margin-bottom: 36px;
  }
  .hero {
    min-height: unset;
    padding: 33px 0 24px 0;
    margin-bottom: 23px;
    border-radius: 0 0 22px 22px;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header nav, .cta-btn {
    display: none !important;
  }
  .container {
    max-width: 99vw;
    padding-left: 10px;
    padding-right: 10px;
  }
  .testimonial-card {
    padding: 14px;
    margin-bottom: 20px;
    max-width: 98vw;
  }
  .footer .container, .footer .content-wrapper {
    padding: 0;
  }
}
@media (max-width: 600px) {
  .feature-item, .card, .text-section, .cookie-modal-content {
    padding: 15px 9px 13px;
  }
  th, td {
    padding: 8px 5px;
    font-size: 0.98rem;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 4px 14px 9px;
    gap: 10px;
    font-size: 0.97rem;
  }
}

/* FLEX DIRECTION COLUMN FOR TEXT-IMAGE SECTIONS ON MOBILE */
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
}

/* MISC UTILITIES & MICRO-INTERACTIONS */
html { scroll-behavior: smooth; }
*:focus { outline: 2px dashed #A07535; outline-offset: 2px; }
::-webkit-input-placeholder { color: #7D98B0; }
::-moz-placeholder { color: #7D98B0; }
:-ms-input-placeholder { color: #7D98B0; }
::placeholder { color: #7D98B0; }

/* Card hover for future expandability */
.card:hover, .feature-item:hover {
  box-shadow: 0 4px 15px 0 rgba(161, 197, 220, 0.19);
  transform: translateY(-2px) scale(1.02);
  transition: box-shadow 0.19s, transform 0.17s;
  z-index: 2;
}

/* Decorative subtle pastel background accents (optional, can be used as ::before/::after on sections in custom HTML) */
.section-accent-bg {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: 0.23;
}

/* MARINE/PASTEL CUSTOM COLOR PALETTE */
:root {
  --primary: #1A3952;
  --secondary: #F5F3EF;
  --accent: #A07535;
  --pastel-blue: #BAD7EC;
  --pastel-mint: #98D6A5;
  --pastel-pink: #F5DDDF;
  --pastel-yellow: #FFF3E3;
  --pastel-violet: #F6F3FF;
  --navy: #22303D;
  --sky: #E8F6F9;
}

/* Hide scrollbar for aesthetics in mobile-menu when open */
.mobile-menu {
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow-y: auto;
}
.mobile-menu::-webkit-scrollbar {
  display: none;
}

/* END OF CSS */
