/* =========================================================
   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,
main, 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 {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
  height: 100%;
}
body {
  background: #fff;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.5;
  color: #222;
  font-size: 16px;
  min-height: 100vh;
}
*, *:before, *:after {
  box-sizing: inherit;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
}
button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
:focus {
  outline: 2px solid #FFA600;
  outline-offset: 1px;
}

/* =========================================================
   FONT IMPORTS & BASE
   ========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500;700&display=swap');

body {
  font-family: 'Roboto', Arial, sans-serif;
}
h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #003F5C;
  letter-spacing: 0.01em;
  line-height: 1.15;
  text-rendering: optimizeLegibility;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 16px;
}
h4 {
  font-size: 1rem;
  margin-bottom: 12px;
}
p, li, address, label {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
}
strong {
  font-weight: 700;
  color: #003F5C;
}

/* =========================================================
   LAYOUT CONTAINERS
   ========================================================= */
.container {
  width: 100%;
  max-width: 1168px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
      align-items: center;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* =========================================================
   BRAND & NAVIGATION
   ========================================================= */
.logo img {
  height: 52px;
  width: auto;
  display: block;
}
header {
  width: 100%;
  background: #fff;
  border-bottom: 2px solid #EDEDED;
  position: relative;
  z-index: 35;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  gap: 24px;
}

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
nav.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.025em;
  color: #003F5C;
  font-size: 1rem;
  padding: 8px 16px;
  border-radius: 10px;
  transition: background 0.16s, color 0.16s;
}
nav.main-nav a:hover,
nav.main-nav a:focus {
  background: #EDEDED;
  color: #FFA600;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFA600;
  color: #003F5C;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.12rem;
  letter-spacing: 0.02em;
  padding: 12px 32px;
  border-radius: 32px;
  border: 2px solid #FFA600;
  box-shadow: 0 4px 14px rgba(0, 63, 92, .07);
  transition: background 0.22s, color 0.22s, box-shadow 0.22s, border 0.22s;
}
.cta-btn.secondary {
  background: #003F5C;
  color: #FFF;
  border-color: #003F5C;
}
.cta-btn:hover,
.cta-btn:focus {
  background: #003F5C;
  color: #FFA600;
  border: 2px solid #003F5C;
  box-shadow: 0 8px 24px rgba(0,63,92,0.10);
}
.cta-btn.secondary:hover,
.cta-btn.secondary:focus {
  background: #FFA600;
  color: #003F5C;
  border: 2px solid #FFA600;
}
 
/* ============ Hamburger and Mobile Menu ============= */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  color: #003F5C;
  background: #FFA600;
  border-radius: 12px;
  width: 48px;
  height: 48px;
  justify-content: center;
  align-items: center;
  margin-left: 16px;
  transition: background 0.18s;
  position: relative;
  z-index: 101;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #003F5C;
  color: #FFA600;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #FFF;
  position: fixed;
  top: 0;
  left: 100vw;
  width: 100vw;
  height: 100vh;
  z-index: 1000;
  box-shadow: -4px 0 24px rgba(0,63,92,0.13);
  transition: transform 0.34s cubic-bezier(0.72,0.04,0.26,0.98);
  transform: translateX(0);
  overflow-y: auto;
  padding: 32px 24px 24px 32px;
  gap: 32px;
}
.mobile-menu.open {
  left: 0;
  transform: translateX(-100vw);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.2rem;
  color: #003F5C;
  background: #FFA600;
  border-radius: 8px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, color 0.18s;
  margin-bottom: 8px;
  margin-right: 6px;
  border: none;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #003F5C;
  color: #FFA600;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 12px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  padding: 14px 0;
  color: #003F5C;
  letter-spacing: 0.02em;
  border-radius: 12px;
  transition: background 0.13s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #EDEDED;
  color: #FFA600;
}

@media (max-width: 992px) {
  nav.main-nav {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 993px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}
/* ============ Hero Section ============= */
.hero {
  background: linear-gradient(135deg, #EDEDED 65%, #FFF 100%);
  padding-top: 60px;
  padding-bottom: 60px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero h1 {
  font-size: 2.75rem;
  max-width: 650px;
  text-align: center;
  font-weight: 900;
  line-height: 1.16;
  letter-spacing: 0.01em;
}
.hero p {
  font-size: 1.2rem;
  color: #003F5C;
  max-width: 580px;
  text-align: center;
  margin: 0 auto 28px auto;
  margin-top: 12px;
}
.hero .cta-btn {
  margin: 0 auto;
  margin-top: 14px;
}

/* ============ Features Section ============= */
.features {
  background: #fff;
  border-bottom: 2px solid #ededed;
}
.features .content-wrapper > ul {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 24px;
}
.features .content-wrapper > ul > li {
  background: #F8FAFC;
  display: flex;
  align-items: center;
  flex: 1 1 250px;
  gap: 16px;
  padding: 18px 22px;
  border-radius: 24px;
  border: 2.5px solid #EDEDED;
  font-size: 1rem;
  margin-bottom: 20px;
  min-width: 225px;
  box-shadow: 0 2px 14px rgba(0,63,92,0.02);
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  position: relative;
  transition: border 0.18s, box-shadow 0.22s;
}
.features .content-wrapper > ul > li img {
  height: 32px;
  width: 32px;
  flex-shrink: 0;
  filter: grayscale(0.08) contrast(1.18);
  margin-right: 10px;
}
.features .content-wrapper > ul > li:hover, .features .content-wrapper > ul > li:focus {
  border-color: #FFA600;
  box-shadow: 0 8px 38px -8px #003F5C22;
  z-index: 2;
}

/* ============ Services Section ============= */
.services {
  background: #EDEDED;
  border-radius: 0 0 44px 44px;
  margin-bottom: 60px;
}
.services .content-wrapper > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 12px;
}
.services .content-wrapper > ul > li {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 14px rgba(0,63,92,.03);
  border: 2.3px solid #EDEDED;
  flex: 1 1 280px;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 28px 24px 32px 24px;
  margin-bottom: 20px;
  transition: border 0.14s, box-shadow 0.19s;
}
.services .content-wrapper > ul > li img {
  width: 38px;
  height: 38px;
}
.services .content-wrapper > ul > li h3 {
  color: #003F5C;
  font-size: 1.13rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 2px;
  margin-top: 0;
  font-weight: 700;
}
.services .content-wrapper > ul > li p {
  color: #222;
  font-size: 1rem;
}
.services .content-wrapper > ul > li:hover, .services .content-wrapper > ul > li:focus {
  border-color: #FFA600;
  box-shadow: 0 12px 38px -8px #003F5C32;
  z-index: 2;
}
.services .cta-btn {
  margin-top: 18px;
}

/* ============ Card, Card Containers ============= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(0,63,92,0.09);
  padding: 28px 24px;
  border: 2px solid #EDEDED;
  transition: border 0.15s, box-shadow 0.20s;
}
.card:hover, .card:focus {
  border-color: #FFA600;
  box-shadow: 0 8px 38px -8px #003F5C22;
  z-index: 2;
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.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;
}

/* ============ Testimonials ============= */
.testimonials {
  background: #F8FAFC;
  padding-top: 48px;
  padding-bottom: 48px;
}
.testimonials-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 32px 18px 32px;
  margin-bottom: 20px;
  border-radius: 22px;
  background: #fff;
  border: 2px solid #EDEDED;
  box-shadow: 0 2px 18px rgba(0,63,92,0.14);
  min-width: 270px;
  max-width: 410px;
  flex: 1 1 300px;
  position: relative;
  transition: border 0.14s, box-shadow 0.20s;
}
.testimonial-card p {
  color: #003F5C;
  font-size: 1.08rem;
  line-height: 1.68;
  font-style: italic;
}
.testimonial-card strong {
  color: #FFA600;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.testimonial-card:hover, .testimonial-card:focus {
  border-color: #FFA600;
  box-shadow: 0 16px 44px -14px #003F5C1a;
}

/* ============ Blog & Product Grids ============= */
.blog-grid, .product-grid, .service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.blog-grid article,
.product-card,
.service-item {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 13px rgba(0,63,92,0.09);
  border: 2px solid #EDEDED;
  padding: 28px 18px;
  display: flex;
  flex-direction: column;
  min-width: 240px;
  flex: 1 1 285px;
  margin-bottom: 20px;
  transition: border 0.16s, box-shadow 0.18s;
}
.blog-grid article:hover, .product-card:hover, .service-item:hover,
.blog-grid article:focus, .product-card:focus, .service-item:focus {
  border-color: #FFA600;
  box-shadow: 0 10px 36px -8px #003F5C22;
  z-index: 2;
}
.product-card img,
.service-item img {
  width: 46px;
  height: 46px;
  margin-bottom: 14px;
}
.product-card h3,
.service-item h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.22rem;
  color: #003F5C;
  margin-bottom: 8px;
  font-weight: 700;
}
.product-card .price,
.service-item .price {
  color: #FFA600;
  font-weight: 700;
  font-size: 1.03rem;
  margin-top: 12px;
}
.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.service-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ============ CTA Section ============= */
.cta {
  background: #003F5C;
  color: #FFA600;
  border-radius: 36px;
  margin-top: 38px;
  padding: 40px 20px;
}
.cta h2 {
  color: #FFA600;
  text-align: center;
}
.cta .cta-btn {
  background: #FFA600;
  color: #003F5C;
  margin: 0 auto;
  display: block;
}

/* ============ Footer ============= */
footer {
  background: #F8FAFC;
  border-top: 2px solid #EDEDED;
  padding-top: 34px;
  padding-bottom: 34px;
  font-size: 1rem;
  width: 100%;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-nav a {
  color: #003F5C;
  font-weight: 500;
  font-size: 1rem;
  padding: 8px 14px;
  border-radius: 8px;
  transition: background 0.12s, color 0.12s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  background: #FFA600;
  color: #003F5C;
}
footer address {
  color: #222;
  font-size: 1rem;
  margin-top: 8px;
  font-style: normal;
}
footer address a {
  color: #003F5C;
}

/* ============ Tables ============= */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 36px;
  margin-bottom: 28px;
  font-size: 1rem;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 8px rgba(0,63,92,0.04);
}
.pricing-table caption {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.19rem;
  font-weight: 700;
  color: #003F5C;
  text-align: left;
  margin-bottom: 10px;
}
.pricing-table thead {
  background: #EDEDED;
}
.pricing-table th, .pricing-table td {
  padding: 12px 18px;
  text-align: left;
  border-bottom: 2px solid #EDEDED;
}
.pricing-table th {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #003F5C;
}
.pricing-table tbody tr:last-child td {
  border-bottom: none;
}

/* ============ Forms & Inputs ============= */
input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  border: 2px solid #EDEDED;
  border-radius: 10px;
  padding: 10px 15px;
  margin-bottom: 12px;
  transition: border 0.12s, box-shadow 0.13s;
}
input:focus, select:focus, textarea:focus {
  border-color: #FFA600;
  box-shadow: 0 2px 16px rgba(0,63,92,0.11);
}

/* ============= BLOG, LEGAL, CONFIRMATION, TEAM PAGES ============= */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 36px;
}
.category-filters, .filters, .sort-options {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.category-filters ul, .filters ul {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding-left: 0;
}
.category-filters li, .filters li {
  font-size: 0.98rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  background: #EDEDED;
  padding: 5px 14px;
  border-radius: 20px;
  color: #003F5C;
}
.sort-options select {
  min-width: 120px;
}

/* ============ MAP BLOCK ============= */
.map {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #F8FAFC;
  border-radius: 16px;
  border: 2px solid #ededed;
  padding: 20px 28px;
  margin-top: 18px;
}
.map img {
  width: 78px;
  height: 78px;
}

/* ============ Confirmation/Thank You Section ============= */
.confirmation {
  background: #fffbe8;
  border-radius: 24px;
  padding: 60px 24px 44px 24px;
  margin-top: 36px;
  margin-bottom: 60px;
  box-shadow: 0 2px 16px rgba(255,166,0,0.06);
}
.confirmation h1 {
  color: #003F5C;
  margin-bottom: 22px;
}
.confirmation a.cta-btn {
  margin-top: 20px;
}

/* ============ Legal Sections (Privacy/GDPR/Cookies, TOS) ============= */
.legal {
  background: #F8FAFC;
  border-radius: 24px;
  padding: 48px 24px 44px 24px;
  margin-top: 36px;
  margin-bottom: 60px;
  box-shadow: 0 2px 18px rgba(0,63,92,0.06);
}
.legal h1, .legal h2 {
  color: #003F5C;
}
.legal ul {
  margin-top: 12px;
  margin-bottom: 8px;
  list-style-type: disc;
  padding-left: 26px;
}
.legal ul li {
  padding-left: 0;
  margin-bottom: 6px;
  color: #222;
  font-size: 1rem;
}

/* ============ Geometric/Decorative Accents ============= */
.features ul > li::before, .services ul > li::before, .product-card::before, .blog-grid article::before {
  content: '';
  display: none;
}

/* ============ Responsive Design ============= */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.3rem;
  }
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  header .container {
    flex-direction: row;
    gap: 10px;
    height: 64px;
  }
  .logo img {
    height: 38px;
  }
  .section,
  .cta {
    padding: 30px 8px;
    margin-bottom: 38px;
  }
  .hero {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .content-wrapper {
    gap: 18px;
  }
  .features .content-wrapper > ul,
  .services .content-wrapper > ul,
  .card-container,
  .content-grid,
  .testimonials-slider,
  .blog-grid, .product-grid, .service-grid {
    flex-direction: column;
    gap: 16px;
  }
  .features .content-wrapper > ul > li, .services .content-wrapper > ul > li {
    min-width: 160px;
    width: 100%;
    padding: 12px 10px;
    font-size: 0.99rem;
  }
  .product-card, .service-item, .blog-grid article, .testimonial-card {
    min-width: 0;
    max-width: 100%;
    padding: 16px 10px;
  }
  .testimonial-card {
    padding: 14px 10px 10px 10px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .map {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 10px;
    gap: 10px;
  }
  .category-filters ul, .filters ul {
    gap: 10px;
  }
  .legal, .confirmation {
    border-radius: 10px;
    padding: 20px 5px 18px 5px;
    margin-top: 18px;
    margin-bottom: 36px;
  }
  footer {
    padding-top: 18px;
    padding-bottom: 18px;
    margin-top: 38px;
  }
}

/* ============ Microinteractions & Transitions ============= */
.card, .testimonial-card, .features .content-wrapper > ul > li, .service-item, .product-card, .blog-grid article {
  transition: border 0.18s, box-shadow 0.20s, transform 0.18s;
}
.card:hover, .testimonial-card:hover, .features .content-wrapper > ul > li:hover,
.service-item:hover, .product-card:hover, .blog-grid article:hover {
  transform: translateY(-4px) scale(1.027);
  z-index: 2;
}

.cta-btn, .footer-nav a, nav.main-nav a, .mobile-menu-toggle, .mobile-menu-close, .mobile-nav a {
  transition: background 0.18s, color 0.18s, border 0.18s;
}

/* ============ Cookie Consent Banner & Modal ============= */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #003F5C;
  color: #FFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 16px 28px 16px;
  z-index: 11000;
  box-shadow: 0 -8px 36px -10px #003F5C44;
  gap: 18px;
  font-size: 1rem;
  border-radius: 24px 24px 0 0;
}
.cookie-banner p {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 4px;
  text-align: center;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
  justify-content: center;
}
.cookie-banner button {
  background: #FFA600;
  color: #003F5C;
  padding: 9px 28px;
  border-radius: 22px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  margin: 0 2px;
  transition: background 0.15s, color 0.15s;
  box-shadow: 0 2px 14px rgba(255,166,0,0.11);
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #003F5C;
  color: #FFA600;
}

.cookie-modal-backdrop {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(0,63,92,0.30);
  z-index: 11100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.32s;
}
.cookie-modal {
  background: #fff;
  border-radius: 22px;
  padding: 38px 28px 30px 28px;
  max-width: 340px;
  box-shadow: 0 8px 32px -5px #003F5C26;
  color: #003F5C;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: cookiePop 0.34s cubic-bezier(0.81,0.23,0.44,1.09);
}
@keyframes cookiePop {
  0% { opacity: 0; transform: scale(0.85); }
  70% { opacity: 1; transform: scale(1.06); }
  100% { opacity: 1; transform: scale(1); }
}
.cookie-modal h3 {
  font-size: 1.1rem; color: #003F5C; font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 8px;
}
.cookie-modal .category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}
.cookie-modal label {
  font-size: 1rem;
  color: #003F5C;
  font-weight: 500;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #FFA600;
  width: 19px;
  height: 19px;
}
.cookie-modal .close-btn {
  position: absolute;
  right: 12px;
  top: 12px;
  background: #FFA600;
  color: #003F5C;
  border-radius: 50%;
  width: 32px; height: 32px;
  display: flex;
  align-items: center; justify-content: center;
  font-size: 1.3rem;
  border: none;
  cursor: pointer;
}
.cookie-modal .close-btn:hover, .cookie-modal .close-btn:focus {
  background: #003F5C;
  color: #FFA600;
}

@media (max-width: 600px) {
  .cookie-modal {
    max-width: 98vw;
    padding: 18px 7px 18px 7px;
  }
  .cookie-banner {
    font-size: 0.96rem;
    border-radius: 14px 14px 0 0;
    padding: 16px 4px 21px 4px;
  }
}

/* =========================================================
   GEOMETRIC / STRUCTURED DESIGN -- SHAPES & EFFECTS
   ========================================================= */
section, .hero, .cta, .legal, .confirmation, .features, .services, .about, .product-listing, .blog-overview {
  /* geometric background accents in subtle ways */
  position: relative;
}
section:after, .hero:after, .cta:after {
  content: '';
  display: block;
  position: absolute;
  right: -64px;
  top: -44px;
  width: 120px;
  height: 120px;
  background: rgba(255,166,0,.12);
  clip-path: polygon(50% 0, 100% 60%, 0 100%);
  z-index: 0;
  pointer-events: none;
}
@media (max-width: 768px) {
  section:after, .hero:after, .cta:after {
    width: 54px;
    height: 54px;
    right: -24px; top: -18px;
  }
}

/* Angular font accents on main headings */
h1, h2, h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  text-transform: none;
  font-style: normal;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 0 #FFF, 0 0.5px 1px #FFA60005;
}
h1 {
  font-size: 2.5rem;
  font-weight: 900;
}
@media (max-width: 600px) {
  h1 { font-size: 1.5rem; }
}

/* ============ Misc Utility ============= */
.hide {
  display: none !important;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.mt-8 {
  margin-top: 8px;
}
.mt-16 {
  margin-top: 16px;
}
.mb-16 {
  margin-bottom: 16px;
}
.gap-8 {
  gap: 8px;
}
.gap-16 {
  gap: 16px;
}
.gap-24 {
  gap: 24px;
}
.gap-32 {
  gap: 32px;
}
section {
  padding: 15px;
}
/* =========================================================
   END
   ========================================================= */
