/* =====================
   JEWEL MOMENTUM MODERN BOLD CSS
   ===================== */

/* =====================
   1. 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, 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 {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  background: #F3F6FB;
  color: #17496C;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  border: 0;
}
button {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  border: none;
  outline: none;
  cursor: pointer;
  background: none;
  padding: 0;
  margin: 0;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  text-align: left;
  padding: 12px 16px;
  font-size: 16px;
}
th {
  background: #17496C;
  color: #FFF;
  font-weight: 800;
  letter-spacing: 0.5px;
}
tr:nth-child(even) td {
  background: #f6f8fc;
}

/* =====================
   2. FONT IMPORTS
   ===================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Open+Sans:wght@400;600;700&display=swap');

/* =====================
   3. COLOR VARIABLES
   ===================== */
:root {
  --primary: #17496C;
  --secondary: #F3F6FB;
  --accent: #E3A632;
  --accent-dark: #B68025;
  --white: #FFF;
  --black: #1e2329;
  --card-shadow: 0 8px 32px rgba(23,73,108,0.10), 0 2px 6px rgba(23,73,108,0.04);
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius: 10px;
}

/* =====================
   4. TYPOGRAPHY
   ===================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  font-weight: 900;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.6rem;
  margin-bottom: 16px;
  line-height: 1.16;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  line-height: 1.18;
}
h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}
p, li, td, th, span, a {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
}
strong {
  font-weight: 700;
}

/* =====================
   5. LAYOUT CONTAINERS & SPACING
   ===================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--secondary);
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--card-shadow);
  margin-bottom: 20px;
  position: relative;
  padding: 32px 24px;
  min-width: 280px;
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 16px 48px 0 rgba(23,73,108,0.18);
  transform: translateY(-4px) scale(1.02);
  z-index: 2;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  width: 100%;
}
.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;
  padding: 24px;
  background: var(--white);
  box-shadow: var(--card-shadow);
  border-radius: var(--radius);
  margin-bottom: 24px;
  min-width: 260px;
  max-width: 600px;
}
.testimonial-card p {
  color: var(--primary);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.testimonial-info {
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--accent-dark);
  font-size: 1rem;
  font-weight: 700;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 8px;
}
.feature-grid > div {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  padding: 28px 24px;
  min-width: 220px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  text-align: left;
  margin-bottom: 10px;
  transition: box-shadow 0.18s, transform 0.22s;
}
.feature-grid > div:hover {
  box-shadow: 0 18px 50px rgba(23,73,108,0.16);
  transform: translateY(-4px) scale(1.02);
}
.faq-preview {
  background: var(--secondary);
  border-radius: var(--radius);
  padding: 20px 18px;
  box-shadow: 0 2px 12px 0 rgba(23,73,108,0.06);
  margin-top: 10px;
}

/* =====================
   6. HERO, CTA & NEWSLETTER
   ===================== */
.hero {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-lg);
  margin-bottom: 42px;
  padding: 64px 20px 48px 20px;
  display: flex;
  align-items: center;
}
.hero h1, .hero p, .hero .cta-button {
  color: var(--white);
}
.hero h1 {
  font-size: 2.8rem;
  line-height: 1.11;
}
.cta-section, .newsletter-cta {
  background: var(--accent);
  border-radius: var(--radius-lg);
  color: var(--primary);
  margin-bottom: 60px;
}
.cta-section h2, .newsletter-cta h2 {
  color: var(--primary);
}

/* =====================
   7. BUTTONS & LINKS
   ===================== */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--white);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.19rem;
  font-weight: 800;
  padding: 16px 38px;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 10px rgba(230,166,50,0.10);
  margin-top: 8px;
  border: none;
  text-decoration: none;
  transition: background 0.18s, box-shadow 0.16s, transform 0.15s;
  outline: none;
}
.cta-button:hover,
.cta-button:focus {
  background: var(--accent-dark);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(182,128,37,0.18);
  transform: scale(1.04) translateY(-2px);
}
.cta-link {
  color: var(--accent);
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-bottom: 2.5px solid var(--accent);
  line-height: 2.6;
  transition: color 0.15s, border-color 0.14s;
}
.cta-link:hover,
.cta-link:focus {
  color: var(--accent-dark);
  border-color: var(--accent-dark);
}
.footer-menu a,
.mobile-nav a {
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 1rem;
  padding: 7px 0px;
  border-radius: 6px;
  transition: background 0.14s, color 0.14s;
}
.footer-menu a:hover,
.mobile-nav a:hover {
  background: var(--accent);
  color: var(--white);
}

/* =====================
   8. HEADER & NAVIGATION (DESKTOP & MOBILE)
   ===================== */
header {
  width: 100%;
  background: var(--white);
  box-shadow: 0 2px 10px 0 rgba(23,73,108,0.05);
  padding: 0px 0 0 0;
  margin-bottom: 0px;
  z-index: 80;
  position: relative;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 20px 14px 20px;
  min-height: 72px;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
header nav a {
  padding: 6px 12px;
  color: var(--primary);
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 6px;
  transition: background 0.13s, color 0.13s;
}
header nav a:not(.cta-button):hover {
  background: var(--secondary);
  color: var(--accent-dark);
}
header nav .cta-button {
  margin-left: 8px;
  padding: 10px 28px;
  font-size: 1.08rem;
}
.mobile-menu-toggle {
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 2.2rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 201;
  transition: background 0.2s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover
{
  background: var(--accent);
  color: var(--white);
  outline: 2px solid var(--accent-dark);
}
@media (min-width: 1025px) {
  .mobile-menu-toggle {
    display: none;
  }
}
@media (max-width: 1024px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* ----- MOBILE MENU OVERLAY ----- */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(23,73,108,0.97);
  color: var(--white);
  box-shadow: -2px 0 24px 0 rgba(23,73,108,0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  z-index: 500;
  transform: translateX(100vw);
  transition: transform 0.30s cubic-bezier(.47,.01,.39,1.25);
}
.mobile-menu.open {
  transform: translateX(0);
  transition: transform 0.33s cubic-bezier(.24,.95,.44,1.13);
}
.mobile-menu-close {
  background: var(--accent);
  color: var(--white);
  font-size: 2rem;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  margin: 16px 8px 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
  z-index: 502;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--accent-dark);
  color: var(--white);
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 38px;
  align-items: stretch;
  padding-left: 18px;
  padding-right: 12px;
}
.mobile-nav a {
  width: 100%;
  padding: 18px 0px 12px 12px;
  font-size: 1.28rem;
  color: var(--white);
  border-radius: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.03em;
  margin-bottom: 4px;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:active,
.mobile-nav a:hover {
  background: var(--accent);
  color: var(--white);
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
}

/* =====================
   9. FOOTER
   ===================== */
footer {
  background: var(--primary);
  color: var(--white);
  padding: 32px 0 0 0;
  width: 100%;
}
footer .container {
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: 0 20px 0 20px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 20px 0 10px 0;
}
footer img {
  max-width: 160px;
}
footer .text-section {
  margin: 16px 0 0 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--secondary);
}
.footer-menu {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 8px;
  margin-right: 18px;
  margin-left: 24px;
}
.footer-menu a {
  color: var(--white);
  padding: 4px 0px;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
}
.footer-menu a:active,
.footer-menu a:hover {
  color: var(--accent);
  background: none;
}
footer .newsletter {
  margin-top: 0;
  background: var(--accent);
  border-radius: var(--radius)
    var(--radius) 0 0;
  color: var(--primary);
  padding: 22px 18px;
  box-shadow: 0 2px 14px rgba(23,73,108, 0.06);
  min-width: 250px;
}
footer .newsletter h3 {
  color: var(--primary);
  font-size: 1.18rem;
  font-weight: 900;
}
footer .newsletter p {
  color: var(--primary);
  margin-top: 6px;
}

/* =====================
   10. BLOG CATEGORIES & TABLES
   ===================== */
.blog-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  align-items: center;
  margin-top: 24px;
}
.blog-categories a {
  background: var(--secondary);
  color: var(--primary);
  border-radius: 8px;
  padding: 8px 16px;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 8px;
  transition: background 0.16s, color 0.14s;
  border: 2px solid transparent;
}
.blog-categories a:hover,
.blog-categories a:focus {
  background: var(--accent);
  color: var(--white);
  border: 2px solid var(--accent-dark);
}

/* =====================
   11. TABLE, POLICY, THANK YOU
   ===================== */
table {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  margin-bottom: 28px;
}
.policy {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
  padding: 40px 20px;
  margin: 40px 0 64px 0;
}
.thank-you {
  min-height: 280px;
  display: flex; align-items: center; justify-content: center;
}

/* =====================
   12. MISCELLANEOUS
   ===================== */
ul li, ol li {
  margin-bottom: 12px;
  line-height: 1.6;
  padding-left: 0;
}
ul li strong {
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
}
div.text-section {
  margin-top: 5px;
  margin-bottom: 18px;
}
.address-map {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
/* For generic card usage - ensure spacing and no overlaps */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

/* ========== Cookie Consent Banner ========= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  box-shadow: 0 -2px 18px rgba(23,73,108,0.10);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 24px 20px 24px 32px;
  font-size: 1.04rem;
  animation: slideUpCookie 0.45s cubic-bezier(.21,1.21,.64,.95);
}
@keyframes slideUpCookie {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}
.cookie-banner button,
.cookie-banner .btn {
  padding: 10px 26px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  border: none;
  border-radius: 8px;
  margin: 0 0 0 0;
  transition: background 0.14s, color 0.14s;
  outline: none;
}
.cookie-banner-accept {
  background: var(--accent);
  color: var(--white);
}
.cookie-banner-accept:hover,
.cookie-banner-accept:focus {
  background: var(--accent-dark);
}
.cookie-banner-reject {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--accent);
}
.cookie-banner-reject:hover,
.cookie-banner-reject:focus {
  background: #f5eeea;
}
.cookie-banner-settings {
  background: var(--primary);
  color: var(--accent);
  border: 2px solid var(--accent);
}
.cookie-banner-settings:hover,
.cookie-banner-settings:focus {
  background: var(--accent);
  color: var(--white);
}

/* ========== Cookie Modal ========== */
.cookie-modal-backdrop {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(15,36,53,0.35);
  z-index: 11001;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeBackdrop 0.2s;
}
@keyframes fadeBackdrop {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 480px;
  width: 90vw;
  box-shadow: 0 8px 44px 0 rgba(23,73,108,0.23);
  padding: 38px 28px 26px 28px;
  z-index: 11002;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  animation: popModal 0.31s cubic-bezier(.23,1.33,.53,1);
}
@keyframes popModal {
  from { opacity: 0; transform: scale(.96) translateY(60px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal h2 {
  font-size: 1.45rem;
  color: var(--primary);
  margin-bottom: 12px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 19px;
}
.cookie-modal label {
  font-size: 1rem;
  color: var(--primary);
  font-weight: 600;
}
.cookie-modal input[type="checkbox"] {
  width: 20px; height: 20px;
  accent-color: var(--accent);
}
.cookie-modal .cookie-category.essential label {
  color: var(--primary);
  opacity: 0.8;
}
.cookie-modal .cookie-category.essential input {
  accent-color: var(--accent-dark);
  pointer-events: none;
}
.cookie-modal-buttons {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 16px;
  align-items: center;
}
.cookie-modal .btn {
  background: var(--accent);
  color: var(--white);
}
.cookie-modal .btn:hover,
.cookie-modal .btn:focus {
  background: var(--accent-dark);
}

/* =====================
   13. RESPONSIVENESS & MOBILE
   ===================== */
@media (max-width: 1120px) {
  .container    { max-width: 98vw; }
  .content-wrapper { gap:20px; }
}
@media (max-width: 1024px) {
  .feature-grid { gap: 16px; }
  footer .content-wrapper {
    flex-direction: column;
    gap: 26px;
    align-items: flex-start;
  }
  .footer-menu { margin-left: 0; margin-right: 0; }
}
@media (max-width: 900px) {
  .container { padding: 0 8px; }
}
@media (max-width: 800px){
  .section, .policy { padding: 24px 8px; }
  .hero { padding: 42px 10px 34px 10px; }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
  .content-wrapper {gap: 16px;}
  .feature-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid > div, .card {
    min-width: 0; width: 100%;
    padding: 18px 9px;
  }
  .hero {
    border-radius: var(--radius-md);
    flex-direction: column;
    min-height: 150px;
    padding: 28px 5px 20px 5px;
    margin-bottom: 30px;
  }
  footer img {
    max-width: 120px;
  }
  .section {
    margin-bottom: 30px;
    padding: 20px 6px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 8px 16px 14px;
  }
  .cookie-banner-buttons {
    gap:8px;
  }
  .newsletter {
    padding:12px 8px;
  }
  .thank-you {
    min-height: 150px;
  }
}
@media (max-width: 560px) {
  .hero h1 { font-size: 1.15rem; }
  h2 { font-size: 1.08rem; }
  th, td { font-size: 14px; }
  .footer-menu { font-size: 14px; }
  .cta-button { font-size: 1rem; padding: 12px 14px; }
  .cookie-modal { padding: 14px 8px 13px 8px; }
}
@media (max-width: 400px){
  .container { padding: 0 2px; }
  .cookie-banner { font-size: 13px; padding-left: 6px;}
}

/* =====================
   14. MICRO-ANIMATIONS
   ===================== */
a, .cta-button, .cta-link, .card, .feature-grid > div, .footer-menu a, .mobile-nav a {
  transition: all 0.18s cubic-bezier(.44,.9,.21,1.26);
}

/* =====================
   15. HIGHLIGHTS & ICONS
   ===================== */
li img, .feature-grid img, .text-section img {
  width: 36px;
  height: 36px;
  margin-right: 7px;
  vertical-align: middle;
  display: inline-block;
}
.text-section img {
  margin: 0 9px 0 0;
}

/* =====================
   16. FOCUS STATES
   ===================== */
a:focus, button:focus, .cta-button:focus, .cta-link:focus {
  outline: 2.5px solid var(--accent-dark);
  outline-offset: 1.5px;
}

/* ========== UTILITY CLASSES ========== */
.text-section { font-size: 1.06rem; }
.mt-4 { margin-top: 1.5rem; }
.mb-3 { margin-bottom: 1.1rem; }
.mt-2 { margin-top: .5rem; }

/* ========== END - JEWEL MOMENTUM CSS ========== */
