/* ========================
   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;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  font-size: 100%;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}
body {
  background: #F6F7FB;
  color: #1B365D;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  min-height: 100vh;
  letter-spacing: 0.015em;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #1B365D;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #FFBD59;
  outline-offset: 2px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #1B365D;
  line-height: 1.1;
  letter-spacing: -0.006em;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
p {
  margin-bottom: 16px;
  font-size: 1rem;
  color: #1B365D;
  font-family: 'Roboto', Arial, sans-serif;
}
strong {
  font-weight: 700;
  color: #1B365D;
}

ul, ol {
  margin-bottom: 16px;
  padding-left: 24px;
}
ul {
  list-style: disc;
}
ol {
  list-style: decimal;
}
li {
  margin-bottom: 8px;
}

/* Container & Layout */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
}

/* Spacing & Sectioning (from requirements) */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(27, 54, 93, 0.05);
}
/* Cards & Flex patterns */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(27, 54, 93, 0.06);
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 4px 28px rgba(27, 54, 93, 0.10);
  transform: translateY(-4px) scale(1.02);
}
.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: flex-start;
  gap: 12px;
  padding: 24px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(27, 54, 93, 0.08);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Hero Section */
.hero {
  background: #1B365D;
  color: #fff;
  border-radius: 0 0 24px 24px;
  margin-bottom: 44px;
  padding: 56px 0 44px 0;
  box-shadow: 0 6px 32px rgba(27, 54, 93, 0.12);
}
.hero h1 {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 24px;
}
.hero p {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 40px;
}
.hero .cta.primary {
  background: #FFBD59;
  color: #1B365D;
  font-size: 1.1rem;
}

/* NAVIGATION */
.flex-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
}
.logo-link img {
  height: 48px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #1B365D;
  padding: 6px 4px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
  letter-spacing: -0.01em;
}
.main-nav a:hover,
.main-nav a.active {
  color: #FFBD59;
  background: rgba(27,54,93,0.08);
}

.cta {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 14px 38px;
  border-radius: 32px;
  font-size: 1.1rem;
  background: #FFBD59;
  color: #1B365D;
  border: none;
  display: inline-block;
  transition: background 0.2s, color 0.2s, box-shadow 0.18s;
  box-shadow: 0 2px 8px rgba(255,189,89,0.10);
  letter-spacing: -0.01em;
  text-align: center;
  cursor: pointer;
  margin-top: 20px;
}
.cta.primary {
  background: #FFBD59;
  color: #1B365D;
}
.cta:hover, .cta:focus {
  background: #1B365D;
  color: #fff;
  box-shadow: 0 4px 18px rgba(27,54,93,0.16);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.4rem;
  color: #1B365D;
  cursor: pointer;
  line-height: 1;
  z-index: 1001;
  margin-left: 16px;
  transition: color 0.15s, background 0.2s, transform 0.18s;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  color: #FFBD59;
  outline: 2px solid #FFBD59;
}

.mobile-menu {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: #1B365D;
  color: #fff;
  z-index: 2000;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(.87,.1,.31,1.23);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 52px 28px;
  width: 100vw;
  min-height: 100vh;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 22px;
  right: 24px;
  background: transparent;
  border: none;
  color: #FFBD59;
  font-size: 2.2rem;
  cursor: pointer;
  transition: color .2s;
  z-index: 2010;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fff;
  outline: 2px solid #FFBD59;
  background: rgba(255,189,89,0.08);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 48px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.3rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  padding: 16px 0 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.09);
  transition: color 0.17s;
  outline: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #FFBD59;
}

/* Hide nav on mobile, show burger */
@media (max-width: 1100px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1101px) {
  .mobile-menu {
    display: none !important;
  }
}

/* Footer */
footer {
  background: #1B365D;
  color: #fff;
  padding: 44px 0 0 0;
  margin-top: 64px;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
}
.footer-content img {
  height: 36px;
  margin-bottom: 18px;
}
.footer-content p {
  font-size: 1rem;
  color: #fff;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 4px;
}
.footer-nav a {
  color: #FFBD59;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.06rem;
  font-weight: 600;
  transition: color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
  text-decoration: underline;
}
.footer-info {
  font-size: 0.96rem;
  color: #fff;
  text-align: right;
  margin-bottom: 12px;
  opacity: 0.84;
}

/* =====================
   Home Page & Content
======================= */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.features-grid > div {
  flex: 1 1 220px;
  min-width: 210px;
  background: #fff;
  border-radius: 14px;
  padding: 26px 18px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(27,54,93,0.07);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.18s, transform 0.15s;
}
.features-grid > div:hover {
  box-shadow: 0 4px 24px rgba(27,54,93,0.13);
  transform: translateY(-3px) scale(1.03);
}
.features-grid img {
  height: 40px;
  margin-bottom: 14px;
}
.features-grid h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.service-list li {
  flex: 1 1 240px;
  min-width: 200px;
  background: #fff;
  padding: 24px 16px;
  border-radius: 13px;
  box-shadow: 0 2px 8px rgba(27,54,93,0.07);
  margin-bottom: 20px;
  transition: box-shadow .17s, transform 0.15s;
}
.service-list li:hover {
  box-shadow: 0 4px 20px rgba(27,54,93,0.11);
  transform: scale(1.02);
}
.service-list h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 14px;
}
.testimonial-card {
  flex: 1 1 290px;
  min-width: 240px;
  background: #fff;
  border: 3px solid #FFBD59;
  color: #1B365D;
  padding: 32px 20px 22px 26px;
  border-radius: 18px;
  box-shadow: 0 3px 16px rgba(27,54,93,0.09);
  transition: box-shadow 0.18s, border-color 0.18s, transform 0.13s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 28px rgba(27,54,93,0.20);
  border-color: #1B365D;
  transform: translateY(-2px) scale(1.01);
}
.testimonial-card p {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 16px;
  color: #1B365D;
}
.testimonial-card span {
  font-size: 1.03rem;
  color: #1B365D;
  opacity: .74;
}

/* Content wrappers */
.text-section {
  margin-bottom: 22px;
}
.team-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
  margin-bottom: 18px;
}
.feature-list, .benefit-list, .legal-services-list, .faqs-list, .rights-list, .terms-sections {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 22px;
}
.benefit-list li, .feature-list li {
  display: flex;
  align-items: center;
  gap: 16px;
}
.benefit-list img, .feature-list img {
  height: 32px;
  width: 32px;
}

/* Oferta (service-cards) */
.service-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 24px;
}
.service-card {
  flex: 1 1 220px;
  min-width: 200px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(27,54,93,0.07);
  padding: 28px 18px 24px 18px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.13s;
}
.service-card:hover {
  box-shadow: 0 5px 24px rgba(27,54,93,0.13);
  transform: scale(1.025);
}
.service-card h2 {
  font-size: 1.2rem;
  color: #1B365D;
  margin-bottom: 10px;
}

.guide-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 30px;
}
.guide-list article {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 12px;
  padding: 24px 16px;
  box-shadow: 0 2px 10px rgba(27,54,93,0.08);
  margin-bottom: 20px;
  transition: box-shadow .17s, transform 0.13s;
}
.guide-list article:hover {
  box-shadow: 0 4px 20px rgba(27,54,93,0.14);
  transform: scale(1.015);
}

.news-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 30px;
}
.news-list article {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 12px;
  padding: 26px 18px;
  box-shadow: 0 2px 10px rgba(27,54,93,0.07);
  margin-bottom: 20px;
  transition: box-shadow .17s, transform 0.13s;
}
.news-list article:hover {
  box-shadow: 0 4px 20px rgba(27,54,93,0.14);
  transform: scale(1.015);
}
.news-list article span {
  color: #FFBD59;
  font-size: 0.98rem;
  margin-top: 14px;
  display: block;
}

.info-box {
  background: #FFBD59;
  color: #1B365D;
  border-radius: 12px;
  padding: 22px 20px;
  font-size: 1.09rem;
  font-weight: 500;
  margin: 20px 0 14px 0;
  box-shadow: 0 2px 8px rgba(255,189,89,0.09);
}
.map-placeholder {
  background: #e8eaf5;
  border: 2px dashed #1B365D;
  border-radius: 10px;
  color: #1B365D;
  text-align: center;
  padding: 24px;
  margin-top: 18px;
  margin-bottom: 16px;
  font-size: 1rem;
}
.contact-details ul {
  list-style-type: none;
  padding: 0 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.08rem;
}
.contact-details img {
  height: 20px;
  width: 20px;
}

.trust-indicators {
  display: flex;
  gap: 32px;
  margin-top: 16px;
  align-items: center;
}
.trust-indicators img {
  height: 28px;
  width: 28px;
  margin-right: 6px;
}
.trust-indicators span {
  display: flex;
  align-items: center;
  font-size: 1.01rem;
  background: #F6F7FB;
  border-radius: 22px;
  padding: 8px 22px;
  color: #1B365D;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  box-shadow: 0 1px 6px rgba(27,54,93,0.06);
}

.legal-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  align-items: center;
}
.legal-highlights p {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #F6F7FB;
  color: #1B365D;
  padding: 8px 19px;
  border-radius: 16px;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
}
.legal-highlights img {
  height: 20px;
  width: 20px;
}

/*******************
RESPONSIVE DESIGN
*******************/
@media (max-width: 1150px) {
  .features-grid > div,
  .service-card,
  .service-list li,
  .testimonial-card,
  .guide-list article,
  .news-list article {
    min-width: 180px;
  }
}
@media (max-width: 900px) {
  .features-grid, .testimonial-list, .service-categories, .service-list, .guide-list, .news-list {
    flex-direction: column;
    gap: 20px;
  }
  .footer-content {
    flex-direction: column;
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 98vw;
    padding-left: 10px;
    padding-right: 10px;
  }
  .section {
    padding: 34px 8px;
    border-radius: 9px;
  }
  .hero {
    padding: 32px 0 28px 0;
    border-radius: 0 0 16px 16px;
  }
  .hero h1 {
    font-size: 1.7rem;
    margin-bottom: 16px;
  }
  .content-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
  .content-grid, .trust-indicators, .legal-highlights {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .footer-info {
    text-align: left;
  }
  .info-box {
    font-size: 1rem;
    padding: 15px 10px;
  }
}
@media (max-width: 570px) {
  h1 {
    font-size: 1.38rem;
  }
  h2 {
    font-size: 1.13rem;
  }
  h3 {
    font-size: 0.98rem;
  }
  .footer-content img {
    height: 28px;
  }
  .cta, .cta.primary {
    font-size: 1rem;
    padding: 12px 16px;
  }
  .service-card, .guide-list article, .news-list article, .testimonial-card {
    padding: 14px 8px;
  }
  .testimonial-card {
    padding: 18px 8px 14px 10px;
  }
}

/*******************
 ANIMATIONS
*******************/
.cta, .cta.primary {
  transition: background 0.16s, color 0.16s, box-shadow 0.16s, transform 0.14s;
}
.card, .service-card, .testimonial-card, .guide-list article {
  transition: box-shadow 0.18s, transform 0.15s, border-color 0.16s;
}

/******************************************
COOKIE CONSENT BANNER + Preferences Modal
*******************************************/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  box-shadow: 0 -2px 12px rgba(27,54,93,0.07);
  border-top: 3px solid #FFBD59;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  padding: 24px 14px;
  max-width: 100vw;
  font-size: 1rem;
  animation: cookie-slide-up .65s cubic-bezier(.29,1.13,.34,1) both;
}
@keyframes cookie-slide-up {
  from {transform: translateY(120px); opacity: 0;}
  to {transform: translateY(0); opacity: 1;}
}
.cookie-banner p {
  flex: 2 1 65vw;
  font-size: 1rem;
  color: #1B365D;
  margin-bottom: 0;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
  align-items: center;
}
.cookie-banner button, .cookie-banner .cookie-pref-open {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 24px;
  border: none;
  padding: 10px 25px;
  font-size: 1rem;
  margin: 0 3px;
  cursor: pointer;
  transition: background .18s, color .14s, box-shadow .13s, transform .09s;
  box-shadow: 0 2px 6px rgba(255,189,89,0.09);
}
.cookie-banner .cookie-accept {
  background: #FFBD59;
  color: #1B365D;
}
.cookie-banner .cookie-accept:hover, .cookie-banner .cookie-accept:focus {
  background: #1B365D;
  color: #fff;
}
.cookie-banner .cookie-reject {
  background: #1B365D;
  color: #fff;
}
.cookie-banner .cookie-reject:hover, .cookie-banner .cookie-reject:focus {
  background: #FFBD59;
  color: #1B365D;
}
.cookie-banner .cookie-pref-open {
  background: #fff;
  color: #1B365D;
  border: 2px solid #1B365D;
}
.cookie-banner .cookie-pref-open:hover, .cookie-banner .cookie-pref-open:focus {
  background: #FFBD59;
  color: #1B365D;
  border-color: #FFBD59;
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 20px 7px;
    font-size: 0.97rem;
  }
  .cookie-banner .cookie-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
  }
}

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(27,54,93,0.52);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 4000;
  animation: cookie-modal-fade .32s cubic-bezier(.57,1.13,.54,1.44) both;
}
@keyframes cookie-modal-fade {
  from {opacity: 0;}
  to {opacity: 1;}
}
.cookie-modal-inner {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 34px rgba(27,54,93,0.18);
  max-width: 94vw;
  width: 410px;
  padding: 36px 32px 32px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  font-size: 1rem;
}
.cookie-modal-close {
  position: absolute;
  right: 16px; top: 14px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #1B365D;
  cursor: pointer;
  transition: color .14s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #FFBD59;
  outline: 2px solid #FFBD59;
}
.cookie-modal h3 {
  font-size: 1.19rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: #1B365D;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 0.99rem;
  background: #F6F7FB;
  border-radius: 10px;
  padding: 12px 13px 12px 17px;
}
.cookie-category .toggle {
  appearance: none;
  width: 36px;
  height: 20px;
  background: #ddd;
  border-radius: 10px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background .16s;
}
.cookie-category .toggle:checked {
  background: #FFBD59;
}
.cookie-category .toggle:before {
  content: "";
  display: block;
  position: absolute;
  left: 3px; top: 3px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.09);
  transition: left .15s cubic-bezier(.39,1.47,.55,1.06);
}
.cookie-category .toggle:checked:before {
  left: 19px;
}
.cookie-category .label {
  font-weight: 600;
  color: #1B365D;
}
/* Essential cookies always enabled */
.cookie-category.essential .toggle {
  background: #c9cfde !important;
  cursor: not-allowed;
}
.cookie-category.essential .toggle:before {
  background: #fff;
}
.cookie-modal-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}
.cookie-modal-actions button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 22px;
  font-size: 1rem;
  padding: 10px 23px;
  border: none;
  cursor: pointer;
  transition: background .12s, color .12s;
}
.cookie-modal-actions .accept {
  background: #FFBD59;
  color: #1B365D;
}
.cookie-modal-actions .accept:hover, .cookie-modal-actions .accept:focus {
  background: #1B365D;
  color: #fff;
}
.cookie-modal-actions .reject {
  background: #1B365D;
  color: #fff;
}
.cookie-modal-actions .reject:hover, .cookie-modal-actions .reject:focus {
  background: #FFBD59;
  color: #1B365D;
}
@media (max-width: 420px) {
  .cookie-modal-inner {
    padding: 20px 4px 12px 7px;
    width: 99vw;
    min-width: 0;
  }
}

/*****************************
VISUAL BOLDNESS & HIGH CONTRAST
******************************/
section, .section {
  box-shadow: 0 2px 14px rgba(27,54,93,0.07);
  border-radius: 16px;
  background: #fff;
}

/* Geometric accents for modern bold (decorative) */
.hero:before {
  content: '';
  position: absolute;
  left: -60px; top: 0;
  width: 120px; height: 120px;
  background: #FFBD59;
  opacity: 0.09;
  border-radius: 40px 60px 32px 78px;
  z-index: 0;
  display: none;
}
@media (min-width: 1020px) {
  .hero:before {
    display: block;
  }
}

/*****************************
ACCESSIBILITY - HIGHLIGHT FOCUS
******************************/
:focus-visible {
  outline: 2px solid #FFBD59 !important;
  outline-offset: 2px;
}
::-webkit-input-placeholder { color: #b2b8c6; }
::-moz-placeholder { color: #b2b8c6; }
:-ms-input-placeholder { color: #b2b8c6; }
::placeholder { color: #b2b8c6; }

input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  padding: 8px 11px;
  border: 1.8px solid #c9cfde;
  border-radius: 8px;
  transition: border .11s;
  background: #fff;
  margin-bottom: 20px;
  box-sizing: border-box;
}
input:focus, textarea:focus, select:focus {
  border-color: #1B365D;
}

/*****************************
MISC UTILITIES
******************************/
.mb-20 { margin-bottom: 20px !important; }
.mt-20 { margin-top: 20px !important; }
.gap-20 { gap: 20px; }
.hide { display: none !important; }
.text-center { text-align: center; }
.bold { font-weight: 700; font-family: 'Montserrat', Arial, sans-serif; }

/***********************
END CSS
***********************/
