/* --------------------------------------------------
   CSS RESET & BASE STYLES
---------------------------------------------------*/
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, main, menu, nav,
output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  min-height: 100vh;
  background: #FAFAFC;
  color: #25303B;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
ul, ol {
  list-style: none;
}
a {
  color: #005D7B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #E2B030;
  text-decoration: underline;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  outline: none;
  border: none;
  background: none;
  color: inherit;
}
button {
  cursor: pointer;
}

/* --------------------------------------------------
   BRANDING FONTS & TYPOGRAPHY
---------------------------------------------------*/
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,800,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #005D7B;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.375rem; /* 38px */
  margin-bottom: 20px;
}
h2 {
  font-size: 1.875rem; /* 30px */
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}
h4, h5, h6 {
  font-size: 1rem;
  font-weight: 700;
}
p, ul, ol, li, span, label {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  margin-bottom: 12px;
  color: #25303B;
}
strong {
  font-weight: 700;
}

/* Artistic headline styling */
h1, h2 {
  background: linear-gradient(90deg, #E2B030 20%, #005D7B 80%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
          text-fill-color: transparent;
  filter: drop-shadow(0 2px 2px rgba(0,93,123,0.12));
}

/* --------------------------------------------------
   LAYOUT HELPERS
---------------------------------------------------*/
.container {
  width: 100%;
  max-width: 1190px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
/* Section classes as per requirement */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 19px;
  box-shadow: 0 2px 16px 0 rgba(34,81,124,0.09);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 24px;
  min-width: 260px;
  transition: box-shadow 0.2s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 6px 32px rgba(34,81,124,0.18);
  transform: translateY(-4px);
  z-index: 1;
}
.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;
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(0,93,123,0.08);
  border-left: 6px solid #E2B030;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 24px;
  max-width: 620px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
/* Artistic card/image accents */
.card::before, .testimonial-card::before {
  content: '';
  display: block;
  position: absolute;
  left: 18px;
  top: 18px;
  width: 32px;
  height: 32px;
  background: rgba(226,186,48,0.08);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}
.testimonial-card::before {
  left: auto;
  right: 20px;
  top: 17px;
  width: 24px;
  height: 24px;
  background: rgba(0,93,123,0.07);
}

/* --------------------------------------------------
   HEADER & NAVIGATION
---------------------------------------------------*/
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 14px 0 rgba(24, 121, 155, 0.07);
  position: relative;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 74px;
}
header nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #1A1A1A;
  letter-spacing: 0.01em;
  padding: 2px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.18s, border 0.18s;
}
header nav a:hover, header nav a:focus {
  color: #005D7B;
  border-bottom: 2px solid #E2B030;
}
header .cta.primary {
  margin-left: 22px;
}
.logo {
  height: 44px;
}

/* --------------------------------------------------
   BUTTONS & CTA
---------------------------------------------------*/
.cta {
  display: inline-flex;
  align-items: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  padding: 0.75em 2.25em;
  border-radius: 30px;
  font-size: 1.125rem;
  background: #E2B030;
  color: #fff;
  box-shadow: 0 4px 16px rgba(34, 81, 124, 0.07);
  border: none;
  transition: background 0.18s, box-shadow 0.16s, color 0.18s, transform 0.15s;
  margin: 12px 0 0 0;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
}
.cta.primary {
  background: #005D7B;
  color: #fff;
}
.cta.secondary {
  background: #E2B030;
  color: #fff;
}
.cta:hover, .cta:focus {
  background: #E2B030;
  color: #005D7B;
  outline: none;
  transform: translateY(-2px) scale(1.045);
  box-shadow: 0 8px 28px 0 rgba(0,93,123,0.17);
}
.cta.primary:hover, .cta.primary:focus {
  background: #fff;
  color: #005D7B;
  border: 2px solid #005D7B;
}

/* --------------------------------------------------
   HERO SECTIONS
---------------------------------------------------*/
.hero {
  background: linear-gradient(115deg, #F8F9FA 55%, #F0ECDB 90%);
  padding: 60px 0 60px 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 320px;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 24px;
}
.hero p {
  color: #25303B;
  font-size: 1.125rem;
  max-width: 580px;
}

/* --------------------------------------------------
   FEATURES & CARDS
---------------------------------------------------*/
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-grid > div {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 1px 10px rgba(226,186,48,0.07);
  padding: 26px 20px 22px 20px;
  min-width: 225px;
  max-width: 300px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  position: relative;
  margin-bottom: 20px;
  transition: box-shadow .2s, transform .18s;
}
.feature-grid > div:hover {
  box-shadow: 0 4px 20px #E2B03040;
  transform: translateY(-2px) scale(1.02);
}
.feature-grid img {
  width: 40px;
  height: 40px;
  margin-bottom: 6px;
}
.feature-grid h3 {
  font-size: 1.08rem;
  margin-bottom: 6px;
  color: #005D7B;
}
.feature-grid p {
  font-size: 0.99rem;
  color: #25303B;
}

/* --------------------------------------------------
   TESTIMONIALS
---------------------------------------------------*/
.testimonials {
  background: #F1FAFE;
}
.testimonial-card {
  color: #25303B;
  background: #fff;
  border-left: 6px solid #E2B030;
  margin-bottom: 24px;
  width: 100%;
}
.testimonial-card p {
  font-size: 1.08rem;
  color: #25303B;
}
.testimonial-card span {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #005D7B;
  font-size: 0.96rem;
  font-weight: 700;
  align-self: flex-end;
}

/* --------------------------------------------------
   COMMON & LEGAL CONTENT BLOCKS
---------------------------------------------------*/
.text-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}
.text-section ul {
  margin-left: 16px;
  margin-bottom: 10px;
  list-style: disc inside;
  color: #223D44;
}
.text-section li {
  margin-bottom: 5px;
}

/* FAQ Blocks */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-list h3 {
  color: #E2B030;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.faq-list p {
  font-size: 1rem;
  color: #25303B;
  margin-bottom: 10px;
}

.note {
  border-left: 4px solid #E2B030;
  padding: 12px 18px;
  background: #FFFBEC;
  font-size: 1rem;
  color: #005D7B;
  border-radius: 7px;
  margin-bottom: 20px;
}

/* --------------------------------------------------
   PRICING TABLE
---------------------------------------------------*/
.pricing-table {
  width: 100%;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(34,81,124,0.07);
  border-collapse: collapse;
  margin-bottom: 30px;
  overflow: hidden;
}
.pricing-table thead tr {
  background: #EBF2FB;
}
.pricing-table th,
.pricing-table td {
  padding: 18px 14px;
  text-align: left;
  font-size: 1rem;
}
.pricing-table th {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #005D7B;
  font-size: 1.02rem;
  font-weight: 700;
}
.pricing-table td {
  border-bottom: 1px solid #F8F9FA;
}
.pricing-table ul {
  margin-left: 18px;
  list-style: disc inside;
}
.plan-features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 18px;
  align-items: center;
}
.plan-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #EFF7F8;
  padding: 9px 12px;
  border-radius: 9px;
  font-size: 1rem;
  color: #227478;
}
.plan-features img {
  width: 18px;
  height: 18px;
}

/* --------------------------------------------------
   CTA BARS/SECTIONS
---------------------------------------------------*/
.cta {
  margin-top: 20px;
}
section.cta {
  background: linear-gradient(90deg, #f5f7f4 60%, #fffbe0 100%);
  text-align: center;
  padding: 50px 0 50px 0;
  margin-bottom: 0;
}
section.cta .content-wrapper {
  align-items: center;
}

/* --------------------------------------------------
   FOOTER
---------------------------------------------------*/
footer {
  background: #005D7B;
  color: #FAFAFB;
  padding: 40px 0 30px 0;
  border-top-left-radius: 45px 20px;
  border-top-right-radius: 36px 15px;
  box-shadow: 0 -2px 24px rgba(34,81,124,0.13);
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
  align-items: flex-start;
}
footer img {
  width: 70px;
  margin-bottom: 10px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 1rem;
}
footer nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  opacity: 0.9;
  border-bottom: 1px solid transparent;
  transition: border 0.18s, color 0.18s;
}
footer nav a:hover, footer nav a:focus {
  color: #E2B030;
  border-bottom: 1px solid #E2B030;
}
footer span {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 0.97rem;
  margin-bottom: 0.4em;
  color: #F8F9FA;
  opacity: 0.97;
  display: block;
}

/* --------------------------------------------------
   MOBILE NAVIGATION (BURGER MENU)
---------------------------------------------------*/
.mobile-menu-toggle {
  display: none;
  background: #005D7B;
  color: #fff;
  font-size: 2rem;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  align-items: center;
  justify-content: center;
  border: none;
  transition: background 0.14s, color 0.14s;
  position: relative;
  z-index: 111;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #E2B030;
  color: #005D7B;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  z-index: 999;
  transform: translateX(100%);
  opacity: 0;
  transition: transform .36s cubic-bezier(.47,.13,.14,.88), opacity .26s;
  box-shadow: 0 0 38px rgba(0,93,123,0.15);
  padding-top: 30px;
  padding-right: 24px;
  padding-left: 32px;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  background: #E2B030;
  color: #fff;
  border: none;
  font-size: 2em;
  padding: 0.3em 0.75em 0.3em 0.75em;
  border-radius: 50%;
  margin-bottom: 30px;
  box-shadow: 0 3px 10px rgba(226,186,48,0.05);
  transition: background .16s, color .16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #005D7B;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 15px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.17rem;
  color: #005D7B;
  font-weight: 700;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: border 0.17s, color 0.18s;
  border-radius: 6px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  border-bottom: 2px solid #E2B030;
  background: #f8f4e0;
  color: #E2B030;
}

/* Show/Hide elements for mobile nav */
@media (max-width: 991px) {
  header nav, header .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
}
@media (min-width: 992px) {
  .mobile-menu {
    display: none !important;
  }
}

/* --------------------------------------------------
   COOKIE CONSENT BANNER & MODAL
---------------------------------------------------*/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  max-width: 100vw;
  background: #fffbe0;
  color: #005D7B;
  z-index: 1999;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 10px 16px 10px;
  box-shadow: 0 -4px 20px rgba(214,194,116,0.12);
  gap: 12px;
  font-size: 1rem;
  border-top: 2px solid #E2B030;
}
.cookie-banner p {
  color: #222b32;
  font-size: 1rem;
  margin-bottom: 8px;
  text-align: center;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.cookie-banner button {
  background: #E2B030;
  color: #fff;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 8px;
  padding: 9px 20px;
  margin: 0 0 0 0;
  box-shadow: 0 2px 8px #E2B0301a;
  transition: background 0.19s, color 0.18s, transform 0.12s;
}
.cookie-banner button.settings {
  background: #fff;
  color: #005D7B;
  border: 1.5px solid #E2B030;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #005D7B;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}
.cookie-banner button.settings:hover, .cookie-banner button.settings:focus {
  background: #E2B030;
  color: #fff;
}

/* Cookie Modal */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 2001;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(40,46,39,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.cookie-modal-backdrop.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 8px 34px rgba(34,81,124,0.20);
  max-width: 380px;
  width: 95vw;
  padding: 32px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: modalBump .32s cubic-bezier(.57,-0.07,.83,1.07);
}
@keyframes modalBump {
  from { transform: translateY(30px) scale(0.96); opacity: 0; }
  to   { transform: none; opacity: 1; }
}
.cookie-modal h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #005D7B;
  font-size: 1.12rem;
  margin-bottom: 4px;
  margin-top: 2px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #F4F4DE;
  border-radius: 7px;
  padding: 12px;
  margin-bottom: 9px;
}
.cookie-modal .toggle {
  accent-color: #E2B030;
  width: 19px;
  height: 19px;
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 1.4rem;
  color: #333;
  background: #FDF4C0;
  border-radius: 50%;
  width: 33px;
  height: 33px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  box-shadow: 0 2px 7px #E2B03018;
  transition: background 0.14s, color 0.16s;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  background: #E2B030;
  color: #fff;
}

/* --------------------------------------------------
   CONFIRMATION & INFO PAGES
---------------------------------------------------*/
.confirmation {
  background: linear-gradient(104deg,#F8F9FA 80%, #FAEDCD 100%);
  min-height: 320px;
  padding: 60px 0;
}
.confirmation .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 30px;
}
.confirmation-text {
  font-size: 1.12rem;
  color: #25303B;
}
.next-steps {
  margin: 18px auto 12px auto;
  padding: 14px 18px;
  background: #EFF7F9;
  border-radius: 8px;
  max-width: 420px;
}
.next-steps ul {
  list-style: disc inside;
  color: #185D7B;
}
.next-steps li {
  margin-bottom: 9px;
}

/* --------------------------------------------------
   SECTIONS & SPACING
---------------------------------------------------*/
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  width: 100%;
}

/* --------------------------------------------------
   RESPONSIVE & FLEX LAYOUTS
---------------------------------------------------*/
@media (max-width: 1199px) {
  .container {
    max-width: 940px;
  }
  .feature-grid > div {
    min-width: unset;
    max-width: 42vw;
  }
}
@media (max-width: 991px) {
  .container {
    max-width: 98vw;
    padding: 0 12px;
  }
  .feature-grid {
    gap: 16px;
  }
  .content-grid {
    gap: 14px;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.32rem;
  }
  .container {
    padding: 0 7px;
  }
  section {
    padding: 30px 6px;
  }
  .hero {
    padding: 32px 0 24px 0;
  }
  .feature-grid {
    gap: 13px;
  }
  .card, .feature-grid > div {
    min-width: 90%;
    max-width: 100%;
    border-radius: 15px;
    padding: 19px 13px 16px 13px;
  }
  .footer .container {
    flex-direction: column;
    gap: 20px;
  }
  .testimonial-card {
    max-width: 97vw;
    font-size: 0.99rem;
    padding: 14px 7px;
    gap: 10px;
  }
  .testimonial-card span {
    font-size: 0.93rem;
  }
  .text-image-section {
    flex-direction: column;
    gap: 17px;
  }
  .content-wrapper {
    gap: 12px;
  }
  .plan-features ul {
    gap: 13px;
  }
  .pricing-table th, .pricing-table td {
    padding: 10px 7px;
    font-size: 0.97rem;
  }
}

@media (max-width: 520px) {
  .container {
    padding: 0 2.5vw;
  }
  .feature-grid {
    flex-direction: column;
    gap: 9px;
    align-items: stretch;
  }
  .footer .container {
    flex-direction: column;
    gap: 11px;
  }
  section {
    padding: 21px 2px;
  }
}

/* Small tables become stacked */
@media (max-width: 660px) {
  .pricing-table thead {
    display: none;
  }
  .pricing-table tr {
    display: flex;
    flex-direction: column;
    border-bottom: 2px solid #F8F9FA;
    margin-bottom: 12px;
    background: #fff;
  }
  .pricing-table td {
    font-weight: 400;
    border-bottom: none;
    display: flex;
    gap: 7px;
    align-items: center;
  }
}

/* All input switches look similar (cookie modal) */
input[type="checkbox"].toggle {
  width: 22px;
  height: 22px;
  accent-color: #E2B030;
  vertical-align: middle;
  margin-right: 6px;
}

/* Artistic micro-interactions for accent */
.card, .feature-grid > div, .testimonial-card {
  transition: box-shadow .18s, transform .14s;
}
.card:hover, .feature-grid > div:hover, .testimonial-card:hover {
  box-shadow: 0 6px 32px 0 #E2B03040;
  transform: translateY(-2px) scale(1.02);
  z-index: 2;
}

/* Extra for unique and creative touches */
h1, h2, h3, .cta.primary {
  text-shadow: 1px 3px 21px #E2B0301e;
  letter-spacing: 0.03em;
}

/* Hide focus outlines except on tab or keyboard navigation */
:focus {
  outline: 2px solid #E2B030;
  outline-offset: 2px;
  transition: outline 0.12s;
}

/* Hide cookie modal scroll when open */
body.cookie-modal-open {
  overflow: hidden;
}
