/* ==========================================================================
   RESET & BASE
   ========================================================================== */
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 { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F4F7FB;
  color: #1F3556;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
strong { font-weight: bold; }
hr { border: 0; border-bottom: 1px solid #e5e8ed; margin: 24px 0; }
input, button, select, textarea {
  font-family: inherit; font-size: inherit; color: inherit;
}
button { background: none; border: none; cursor: pointer; }

/* ==========================================================================
   TYPOGRAPHY: Geometric, Angular, Modern
   ========================================================================== */
@import url('https://fonts.googleapis.com/css?family=Merriweather:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

h1, h2, h3, h4 {
  font-family: 'Merriweather', serif;
  font-weight: 900;
  color: #1F3556;
  letter-spacing: 0.02em;
}
h1 { font-size: 2.4rem; margin-bottom: 16px; line-height: 1.15; }
h2 { font-size: 1.7rem; margin-bottom: 14px; font-weight: 900; }
h3 { font-size: 1.15rem; margin-bottom: 10px; font-weight: 700; }
h4 { font-size: 1rem; margin-bottom: 8px; }
p, ul li, ol li, address, span {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #283e5a;
  line-height: 1.6;
  margin-bottom: 10px;
}

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

@media (max-width: 768px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.18rem; }
  .section, section { padding: 30px 10px; margin-bottom: 35px; }
}

/* ==========================================================================
   BRAND CONTAINER & LAYOUT
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
header {
  background: #fff;
  border-bottom: 2px solid #E2E9F4;
  padding: 0;
  z-index: 50;
  position: relative;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  min-height: 80px;
  gap: 24px;
}
header img { height: 44px; width: auto; }

.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.03em;
  color: #1F3556;
  padding: 8px 0;
  transition: color 0.22s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  color: #5C8DBD;
}

.cta-header {
  background: #1F3556;
  color: #fff;
  font-family: 'Merriweather', serif;
  font-weight: 900;
  font-size: 1rem;
  border-radius: 8px;
  padding: 10px 24px;
  margin-left: 24px;
  box-shadow: 0 4px 14px 0 rgba(31,53,86,0.07);
  border: 0;
  transition: background 0.23s;
}
.cta-header:hover, .cta-header:focus {
  background: #38507A;
  color: #fff;
}

.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  color: #1F3556;
  margin-left: 12px;
  border-radius: 8px;
  padding: 4px 12px;
  z-index: 110;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: #E2E9F4;
}

@media (max-width: 992px) {
  .main-nav, .cta-header {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ==========================================================================
   MOBILE MENU (SLIDE ANIMATION)
   ========================================================================== */
.mobile-menu {
  position: fixed;
  z-index: 999;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(31,53,86,0.97);
  color: #fff;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.22,.61,.36,1), background 0.23s;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  display: block;
  align-self: flex-end;
  font-size: 2.2rem;
  background: none;
  color: #fff;
  border-radius: 8px;
  margin: 20px 28px 0 0;
  padding: 4px 12px;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-close:active, .mobile-menu-close:focus {
  background: #91A1B3;
  color: #1F3556;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  margin-top: 38px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Merriweather', serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  padding: 10px 0;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
  width: 100%;
  text-align: center;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #91A1B3;
  color: #1F3556;
}

/* ==========================================================================
   HERO, FEATURE, ABOUT, SERVICES, CTA, CONTACT
   (STRICTLY FLEXBOX)
   ========================================================================== */
.hero {
  background: #1F3556;
  color: #fff;
  border-radius: 0 0 72px 0;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 24px 0 rgba(31,53,86,.08);
  padding-top: 30px;
  padding-bottom: 30px;
}
.hero h1 {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 900;
  text-shadow: 0 2px 12px rgba(31,53,86, 0.08);
}
.hero p {
  color: #F4F7FB;
  font-size: 1.15rem;
}
.cta-main {
  display: inline-block;
  background: #91A1B3;
  color: #fff;
  font-family: 'Merriweather', serif;
  font-weight: 900;
  font-size: 1.1rem;
  border-radius: 12px;
  padding: 12px 36px;
  margin-top: 20px;
  border: none;
  box-shadow: 0 6px 18px 0 rgba(31,53,86,0.08);
  transition: background 0.25s, box-shadow 0.23s, transform 0.23s;
  text-transform: uppercase;
  letter-spacing: 0.045em;
  cursor: pointer;
}
.cta-main:hover, .cta-main:focus {
  background: #1F3556;
  color: #fff;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 28px 0 rgba(31,53,86,0.13);
}
.cta-secondary {
  display: inline-block;
  background: #fff;
  color: #1F3556;
  font-family: 'Merriweather', serif;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 8px;
  padding: 10px 24px;
  border: 2px solid #91A1B3;
  margin-top: 10px;
  box-shadow: 0 2px 8px 0 rgba(31,53,86,0.07);
  transition: background 0.23s, color 0.23s, border 0.23s;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #1F3556;
  border-color: #1F3556;
  color: #fff;
}

/* Feature Grid (Startseite) */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  box-shadow: 0 4px 16px 0 rgba(31,53,86,0.07);
  border-radius: 18px;
  padding: 28px 24px;
  flex: 1 1 270px;
  min-width: 220px;
  max-width: 340px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-item h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  font-weight: bold;
  letter-spacing: 0.025em;
}
.feature-item img {
  width: 48px;
  height: 48px;
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 8px 32px rgba(31,53,86,0.13);
  transform: translateY(-2px) scale(1.018);
}

/* About/Preview/Card container pattern and consistency */
.about-preview, .services-preview, .contact-preview, .about, .services, .team, .testimonials, .info, .news-list,
.history, .cookie-policy, .legal-data-privacy, .gdpr-info, .terms-of-use, .cta-banner, .announcements, .contact-main, .contact-info, .thank-you-section {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 16px 0 rgba(31,53,86,0.08);
}

.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;
}
@media (max-width: 768px) {
  .feature-grid, .content-grid, .text-image-section, .team-list {
    flex-direction: column !important;
    gap: 18px !important;
    align-items: stretch;
  }
}

/* ==========================================================================
   SERVICE LISTS
   ========================================================================== */
.service-list, .service-list-full {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0;
  justify-content: flex-start;
}
.service-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 22px;
  background: #F4F7FB;
  border-radius: 10px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 12px;
  min-width: 175px;
  font-weight: 500;
  box-shadow: 0 2px 8px 0 rgba(31,53,86,0.06);
}
.service-list li img { width: 32px; height: 32px; }
.service-list-full {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}
.service-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  background: #F4F7FB;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(31,53,86,0.04);
  padding: 25px 22px 20px 22px;
  flex: 1 1 275px;
  min-width: 210px;
  max-width: 340px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-block img { width: 36px; height: 36px; margin-bottom: 4px; }
.service-block h2 { font-size: 1.2rem; margin-bottom: 4px; margin-top: 4px; }
.service-block:hover, .service-block:focus-within {
  box-shadow: 0 8px 32px rgba(31,53,86,0.12);
  transform: translateY(-2px) scale(1.015);
}

@media (max-width: 768px) {
  .service-list, .service-list-full {
    flex-direction: column; gap: 0;
  }
}

/* ==========================================================================
   TEAM & TESTIMONIALS
   ========================================================================== */
.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 24px;
}
.team-member {
  background: #F4F7FB;
  border-radius: 13px;
  box-shadow: 0 2px 8px rgba(31,53,86,0.06);
  padding: 22px 20px;
  flex: 1 0 250px;
  min-width: 210px;
  max-width: 340px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  transition: box-shadow 0.19s, transform 0.16s;
}
.team-member h3 {
  margin-bottom: 0;
  color: #1F3556;
}
.team-member span {
  color: #1F3556;
  font-weight: bold;
}
.team-member:hover, .team-member:focus-within {
  box-shadow: 0 8px 30px rgba(31,53,86,0.08);
  transform: scale(1.018);
}

.testimonials {
  background: #F4F7FB;
  border-radius: 16px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 26px 22px 35px;
  background: #fff;
  color: #1F3556;
  border-radius: 14px;
  box-shadow: 0 4px 18px 0 rgba(31,53,86,0.10);
  margin-bottom: 24px;
  min-width: 250px;
  max-width: 560px;
  font-size: 1.02rem;
  position: relative;
  border-left: 7px solid #91A1B3;
  transition: box-shadow 0.18s, transform 0.18s;
}
.testimonial-card:before {
  content: '\201C';
  position: absolute;
  left: 10px;
  top: 14px;
  font-family: 'Georgia', serif;
  font-size: 2.7rem;
  color: #91A1B3;
  opacity: 0.15;
}
.testimonial-card p {
  color: #1F3556;
  font-weight: 500;
}
.testimonial-card span {
  color: #283e5a;
  font-size: .93rem;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 28px rgba(31,53,86,0.15);
  transform: scale(1.02);
}

/* ==========================================================================
   FOOTER (Structured, Geometric)
   ========================================================================== */
footer {
  background: #1F3556;
  color: #fff;
  padding: 36px 0 16px 0;
  border-radius: 42px 0 0 0;
  box-shadow: 0 -2px 20px rgba(31,53,86,0.085);
  position: relative;
}
footer .container {
  flex-direction: column;
  gap: 18px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.footer-nav a {
  color: #fff;
  font-weight: 500;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  transition: color 0.2s;
  padding: 6px 8px;
  border-radius: 8px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #91A1B3;
  background: rgba(255,255,255,0.08);
}
.footer-contact {
  text-align: center;
  font-size: .95rem;
  color: #91A1B3;
}

/* ==========================================================================
   ANNOUNCEMENTS / NEWS / TIMELINE
   ========================================================================== */
.news-list {
  background: #fff;
  border-radius: 14px;
}
.news-preview {
  background: #F4F7FB;
  border-radius: 10px;
  box-shadow: 0 1px 7px 0 rgba(31,53,86,0.04);
  padding: 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.16s, transform 0.16s;
}
.news-preview h2 {
  font-size: 1.13rem;
  margin-bottom: 8px;
}
.news-preview:hover, .news-preview:focus-within {
  box-shadow: 0 5px 18px rgba(31,53,86,0.09);
  transform: scale(1.013);
}

.announcements ul {
  padding-left: 0;
}
.announcements li {
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 12px;
  padding: 9px 16px;
  background: #F4F7FB;
  border-radius: 8px;
}

.timeline {
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.timeline li {
  padding-left: 18px;
  border-left: 3px solid #91A1B3;
  position: relative;
  font-size: 1rem;
}
.timeline li::before {
  content: '';
  position: absolute;
  left: -9px;
  top: 7px;
  width: 12px;
  height: 12px;
  background: #1F3556;
  border-radius: 3px;
  display: block;
}
@media (max-width: 600px) {
  .timeline li {
    font-size: 0.94rem;
  }
}

/* ==========================================================================
   CTA BANNER
   ========================================================================== */
.cta-banner {
  background: #1F3556;
  color: #fff;
  border-radius: 22px;
  box-shadow: 0 8px 26px rgba(31,53,86,0.11);
  padding: 42px 20px;
  text-align: center;
  margin-top: 32px;
  margin-bottom: 60px;
}
.cta-banner h2 { color: #fff; margin-bottom: 12px; }
.cta-banner p { color: #F4F7FB; }
.cta-banner .cta-main { margin-top: 24px; }

/* ==========================================================================
   COOKIE CONSENT BANNER
   ========================================================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 2px solid #91A1B3;
  box-shadow: 0 -2px 22px 0 rgba(31,53,86,0.08);
  padding: 18px 10vw 16px 10vw;
  z-index: 1000;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  justify-content: space-between;
  font-family: 'Roboto', Arial, sans-serif;
  transition: transform 0.32s cubic-bezier(.25,.7,.3,1), opacity 0.19s;
}
.cookie-banner.hide { transform: translateY(120%); opacity: 0; pointer-events: none; }
.cookie-banner p { color: #1F3556; margin-bottom: 0; font-size: .98rem; flex: 1; }
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-btn, .cookie-settings-btn {
  font-family: 'Merriweather', serif;
  font-size: .99rem;
  font-weight: 700;
  border: 0;
  border-radius: 8px;
  padding: 8px 18px;
  transition: background 0.14s, color 0.12s;
}
.cookie-btn.accept {
  background: #1F3556;
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #38507A;
}
.cookie-btn.reject {
  background: #91A1B3;
  color: #fff;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #1F3556;
  color: #fff;
}
.cookie-settings-btn {
  background: #fff;
  color: #1F3556;
  border: 2px solid #91A1B3;
  padding: 8px 16px;
}
.cookie-settings-btn:hover {
  background: #1F3556;
  color: #fff;
}
@media (max-width: 700px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; padding: 14px 5vw; gap: 14px; font-size: .96rem;}
  .cookie-banner .cookie-actions { align-self: flex-end; }
}

/* COOKIE PREFERENCE MODAL */
.cookie-modal-overlay {
  position: fixed;
  z-index: 1500;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(31,53,86,0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.18s;
}
.cookie-modal-overlay.active { opacity: 1; pointer-events: auto; }
.cookie-modal {
  background: #fff;
  width: 94vw;
  max-width: 400px;
  padding: 32px 26px 24px 26px;
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(31,53,86,0.17);
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: modalIn 0.32s cubic-bezier(.12,.6,.28,1);
  position: relative;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(60px) scale(.94);} 
  to   { opacity: 1; transform: translateY(0) scale(1);} 
}
.cookie-modal h2 {
  font-size: 1.2rem;
  margin-bottom: 3px;
  font-family: 'Merriweather', serif;
  color: #1F3556;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-cat {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
}
.cookie-cat label {
  font-size: 1rem; color: #1F3556; font-weight: bold; }
.cookie-cat input[type="checkbox"] {
  width: 20px; height: 20px; accent-color: #1F3556;
}
.cookie-cat .cat-desc {
  font-size: .93rem; color: #283e5a; margin-top: 3px;
}
.cookie-modal .cookie-actions {
  justify-content: flex-end;
  margin-top: 8px;
  gap: 12px;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 17px;
  right: 18px;
  background: none;
  color: #1F3556;
  font-size: 1.4rem;
  border-radius: 6px;
  padding: 2px 10px;
  transition: background 0.17s;
}
.cookie-modal .close-modal:focus, .cookie-modal .close-modal:hover {
  background: #91A1B3;
  color: #fff;
}

/* ==========================================================================
   UTILITY CLASSES & HELPERS
   ========================================================================== */
.mb-0     { margin-bottom: 0 !important; }
.mt-0     { margin-top: 0 !important; }
.mt-12    { margin-top: 12px !important; }
.mb-20    { margin-bottom: 20px !important; }
.mt-32    { margin-top: 32px !important; }
.text-center { text-align: center !important; }
.round { border-radius: 50%; }

/* ==========================================================================
   MEDIA QUERIES FOR RESPONSIVENESS
   ========================================================================== */
@media (max-width: 1100px) {
  .container { max-width: 93vw; }
}
@media (max-width: 900px) {
  .feature-grid, .service-list-full, .team-list {
    gap: 18px;
  }
  .feature-item, .team-member, .service-block {
    min-width: 170px; max-width: 100%;
  }
}
@media (max-width: 700px) {
  header .container {
    min-height: 65px;
    padding: 0 10px;
  }
  .feature-item, .service-block, .team-member, .testimonial-card {
    min-width: 100%; max-width: 100%;
    padding: 18px 12px;
  }
  .content-wrapper { gap: 14px; }
}

@media (max-width: 500px) {
  :root { font-size: 15px; }
  h1 { font-size: 1.15rem !important; }
  .cta-banner, .about-preview, .services-preview, .contact-preview,
  .thank-you-section, .info, .values, .history, .terms-of-use, .cookie-policy,
  .legal-data-privacy, .gdpr-info {
    padding: 14px 4px;
    margin-bottom: 20px;
    border-radius: 10px;
  }
}

/* ==========================================================================
  CARD & CONTAINER PATTERN: FLEX ONLY
   =========================================================================*/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 16px 0 rgba(31,53,86,0.08);
  padding: 22px 20px;
  transition: box-shadow 0.17s, transform 0.17s;
}
.card:hover { box-shadow: 0 4px 26px rgba(31,53,86,0.13); transform: scale(1.015); }

/* Generic patterning for ul/ol in info blocks */
.info ul, .info ol {
  padding-left: 0;
}
.info li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #E2E9F4;
  margin-bottom: 3px;
}
.info li:last-child { border-bottom: none; }
.info li img {
  width: 22px; height: 22px; margin-right: 5px;
}

/* ==========================================================================
   FORMS (for possible future use)
   ========================================================================== */
input[type="text"], input[type="email"], textarea {
  background: #F4F7FB;
  border: 1.5px solid #91A1B3;
  padding: 12px;
  border-radius: 8px;
  font-size: 1rem;
  color: #1F3556;
  margin-bottom: 16px;
  transition: border 0.17s, box-shadow 0.13s;
}
input:focus, textarea:focus {
  border: 1.5px solid #1F3556;
  outline: none;
  box-shadow: 0 0 0 3px #c1d3eb44;
}

button[type="submit"], input[type="submit"] {
  background: #1F3556;
  color: #fff;
  font-family: 'Merriweather', serif;
  font-weight: 800;
  font-size: 1rem;
  border: 0;
  border-radius: 8px;
  padding: 12px 28px;
  cursor: pointer;
  box-shadow: 0 4px 14px 0 rgba(31,53,86,0.07);
  transition: background 0.2s, box-shadow 0.15s;
}
button[type="submit"]:hover, input[type="submit"]:hover {
  background: #38507A;
}

/* ==========================================================================
   MISC: ADDRESS, THANK YOU, ETC.
   ========================================================================== */
address {
  font-style: normal;
  background: #F4F7FB;
  border-radius: 10px;
  padding: 16px 10px;
  font-size: 1rem;
  color: #1F3556;
  margin-bottom: 20px;
}

.thank-you-section {
  text-align: center;
  padding-bottom: 60px;
}

.thank-you-section h1 {
  color: #1F3556;
}

/* ==========================================================================
   ACCESSIBILITY: FOCUS INDICATORS
   ========================================================================== */
a:focus, button:focus, .cta-main:focus, .cta-header:focus, .cta-secondary:focus, .cookie-btn:focus, .cookie-settings-btn:focus {
  outline: 2.5px solid #91A1B3;
  outline-offset: 2px;
}

/* ==========================================================================
   GEOMETRIC / ANGULAR EFFECTS
   ========================================================================== */
/* Diagonal/angled border effect for hero/footer */
@media (min-width: 800px) {
  .hero {
    border-bottom-right-radius: 98px 128px;
  }
  footer {
    border-radius: 58px 0 0 0;
  }
}

/* Subtle geometric dot background for sections */
.section, section {
  background-image: linear-gradient(135deg, #E2E9F4 1px, transparent 1px), linear-gradient(45deg, #E2E9F4 1px, transparent 1px);
  background-size: 30px 30px;
  background-position: 0 0, 15px 15px;
}
.hero, .cta-banner {
  background-image: linear-gradient(135deg, #283e5a11 1px, transparent 1px), linear-gradient(45deg, #283e5a11 1px, transparent 1px);
  background-size: 32px 32px;
  background-position: 0 0, 16px 16px;
}

/* ==========================================================================
   END OF CSS
   ========================================================================== */