/* =============================================================
   CSS Reset & Brand Variables
   ============================================================= */
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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F5F6FA;
  color: #1A2636;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 1em;
}
li {
  margin-bottom: 8px;
}
a {
  text-decoration: none;
  color: #1A2636;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #E3B748;
  outline: none;
}

/* Artistic Typography */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900|Roboto:400,400italic,700&display=swap');
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}
h1 {
  font-size: 2.5rem; /* 40px */
  color: #1A2636;
}
h2 {
  font-size: 2rem;
  color: #E3B748;
}
h3 {
  font-size: 1.25rem;
  color: #1A2636;
  font-weight: 700;
}
p, li, td, th {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #1A2636;
}
strong {
  font-weight: 700;
  color: #1A2636;
}
blockquote {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-style: italic;
  color: #1A2636;
  font-size: 1.1rem;
  background: #F5F6FA;
  border-left: 5px solid #E3B748;
  padding: 16px 24px;
  margin-bottom: 8px;
}

/* Artistic and Unique Visuals */
body {
  background: linear-gradient(114deg, #F5F6FA 70%, #E3B748 100%);
}

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

.content-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

/* =============================================================
   Header, Navigation, Burger Menu
   ============================================================= */
header {
  background: #1A2636;
  box-shadow: 0 2px 16px 0 rgba(26,38,54,0.14);
  position: relative;
  z-index: 1000;
}
header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 18px;
  padding-bottom: 18px;
}
.logo {
  display: flex;
  align-items: center;
}
.logo img {
  height: 50px;
  width: auto;
}
/* Desktop Nav */
nav.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
nav.main-nav a {
  color: #F5F6FA;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  position: relative;
  padding: 6px 8px;
  transition: color 0.2s;
}
nav.main-nav a::after {
  content: '';
  display: block;
  width: 0;
  height: 3px;
  background: #E3B748;
  border-radius: 1.5px;
  margin: 4px auto 0 auto;
  transition: width 0.3s cubic-bezier(.38,.63,.86,.65);
}
nav.main-nav a:hover::after, nav.main-nav a:focus::after {
  width: 70%;
}
nav.main-nav a:hover, nav.main-nav a:focus {
  color: #E3B748;
}

/* Header CTA */
.cta.primary {
  background: #E3B748;
  color: #1A2636 !important;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  padding: 12px 26px;
  border-radius: 32px 8px 32px 8px;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 16px rgba(227,183,72,0.13);
  border: none;
  cursor: pointer;
  margin-left: 16px;
  transition: background 0.2s, transform 0.15s;
  position: relative;
}
.cta.primary:hover, .cta.primary:focus {
  background: #1A2636;
  color: #E3B748 !important;
  outline: 2px solid #E3B748;
  outline-offset: 2px;
  transform: translateY(-2px) scale(1.03) rotate(-1deg);
}

/* Mobile Burger Menu -------------------------------------------------------- */
.mobile-menu-toggle {
  display: none;
  background: #E3B748;
  border: none;
  color: #1A2636;
  font-size: 2rem;
  border-radius: 10px;
  padding: 7px 14px;
  cursor: pointer;
  transition: background 0.2s, transform 0.18s;
  margin-left: auto;
  z-index: 2001;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #1A2636;
}

.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100vw;
  background: #1A2636;
  color: #F5F6FA;
  transform: translateX(-110vw);
  transition: transform 0.38s cubic-bezier(.71,.13,.37,1.03);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 28px;
  z-index: 2000;
  box-shadow: 2px 0 64px rgba(26,38,54,0.23);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #E3B748;
  align-self: flex-end;
  margin: 22px 0 8px 0;
  cursor: pointer;
  transition: color 0.18s;
}
.mobile-menu-close:focus {
  color: #F5F6FA;
  outline: 2px solid #E3B748;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 16px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #F5F6FA;
  font-size: 1.3rem;
  padding: 14px 0 8px 0;
  border-bottom: 1px solid #2c3647;
  transition: color 0.18s;
  min-width: 80vw;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #E3B748;
}

/* Responsive HIDE/SHOW Navigation */
@media (max-width: 1024px) {
    nav.main-nav, .cta.primary {
        display: none !important;
    }
    .mobile-menu-toggle {
        display: block;
    }
}
@media (min-width: 1025px) {
    .mobile-menu {
        display: none !important;
    }
}

/* =============================================================
   Sections, Flex Layouts & Mandatory Patterns
   ============================================================= */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 20px 40px 20px 6px;
  box-shadow: 0 2px 14px 0 rgba(26,38,54,0.10);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 260px;
  max-width: 360px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 36px 0 rgba(26,38,54,0.14);
  transform: translateY(-3px) scale(1.02) rotate(-1.5deg);
}

.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 20px 8px 16px 32px;
  margin-bottom: 20px;
  box-shadow: 0 2px 16px rgba(227,183,72,0.14);
  transition: box-shadow 0.2s;
  flex-direction: column;
  min-width: 300px;
  max-width: 650px;
}
.testimonial-card blockquote {
  background: transparent;
  border-left: 5px solid #E3B748;
  color: #1A2636;
  font-size: 1.1rem;
  margin-bottom: 9px;
}
.testimonial-card p {
  color: #1A2636;
  background: none;
  margin-bottom: 0;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  padding: 20px 12px 18px 12px;
  background: #fff;
  border-radius: 12px 32px 16px 4px;
  box-shadow: 0 2px 14px 0 rgba(26,38,54,0.07);
  transition: transform 0.16s, box-shadow 0.16s;
  min-width: 210px;
  max-width: 350px;
}
.feature-item:hover, .feature-item:focus {
  transform: translateY(-2px) scale(1.03) rotate(1.5deg);
  box-shadow: 0 8px 36px rgba(227,183,72,0.11);
}
.feature-item h3 {
  margin-bottom: 0;
  color: #E3B748;
}
.feature-item img {
  min-width: 32px;
  width: 38px;
  height: auto;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}

/* Address Block, Map Preview, Icons */
.address-block, .map-preview, .secondary-contact-details {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #E3B74811;
  border-radius: 8px;
  padding: 12px 16px;
  margin: 14px 0 19px 0;
  font-size: 1.04em;
}
.address-block img, .map-preview img, .secondary-contact-details img {
  width: 28px;
  height: 28px;
}

.secondary-contact-details {
  gap: 30px;
  font-size: 1.1em;
}

/* =========================================
   General Section Spacing/Typo
   ========================================= */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
h1, h2 {
  margin-bottom: 20px;
}
ul, ol {
  margin-top: 8px;
  margin-bottom: 20px;
}


/* --- CTA Buttons --- */
.cta.primary, .cta.secondary {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  border: none;
  border-radius: 32px 8px 32px 8px;
  padding: 14px 32px;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(227,183,72,0.11);
  letter-spacing: 0.05em;
  display: inline-block;
  margin-top: 16px;
  margin-bottom: 16px;
  transition: background 0.21s, color 0.21s, transform 0.21s, box-shadow 0.22s;
}
.cta.secondary {
  background: #1A2636;
  color: #fff !important;
  border: 2px solid #E3B748;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #E3B748;
  color: #1A2636 !important;
}

/* Loading animation for CTA (fake) */
.cta.primary.loading {
  pointer-events: none;
  opacity: 0.7;
}
.cta.primary.loading::after {
  content: '...';
  margin-left: 5px;
  color: #1A2636;
}

/* --- Pricing Table --- */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 22px 0 30px 0;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(26,38,54,0.08);
}
.pricing-table th, .pricing-table td {
  padding: 17px 10px;
  text-align: left;
  border-bottom: 1px solid #E3B74833;
}
.pricing-table th {
  background: #E3B748;
  color: #1A2636;
  font-size: 1.1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
}
.pricing-table td {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #1A2636;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}


/* =============================================================
   Hero Sections
   ============================================================= */
.hero {
  background: #fff;
  border-radius: 0 0 80px 80px;
  box-shadow: 0 18px 38px -20px rgba(227,183,72,0.18);
  min-height: 320px;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  padding: 60px 20px 60px 20px;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.hero h1 {
  color: #1A2636;
  font-size: 2.8rem;
  line-height: 1.11em;
  text-shadow: 1px 4px 14px #E3B74811;
  margin-bottom: 13px;
}
.hero p {
  font-size: 1.2rem;
  color: #444;
  margin-bottom: 18px;
}
.hero .cta.primary {
  margin-top: 18px;
}

/* Artistic flourishes (decorative, not absolute for content) */
.hero::after {
  content: '';
  display: block;
  position: absolute;
  right: -80px; top: 14%;
  width: 180px; height: 180px;
  background: #E3B74833;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
}

/* =============================================================
   Specific Flex Patterns (always use display:flex for containers)
   ============================================================= */
.features {
  background: #F5F6FA;
  border-radius: 32px 8px;
  box-shadow: 0 2px 8px rgba(26,38,54,0.09);
}
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 28px;
}
.features .feature-item {
  flex: 1 1 215px;
}

/************************************
 Locations, Address, Map Info
************************************/
.locations {
  background: #fff;
  border-radius: 32px 8px 32px 8px;
  box-shadow: 0 2px 14px 0 rgba(26,38,54,0.08);
}
.locations ul {
  list-style: circle inside;
  color: #1A2636;
  margin-bottom: 10px;
}
.locations .address-block,
.locations .map-preview {
  margin-bottom: 16px;
}

/************************************
 CTA Section
************************************/
.cta {
  background: #E3B748;
  color: #1A2636;
  border-radius: 12px 48px 16px 12px;
  text-align: center;
  box-shadow: 0 2px 18px 0 rgba(227,183,72,0.12);
  padding: 32px 14px;
}
.cta h2 {
  color: #1A2636;
  font-size: 2.1rem;
  margin-bottom: 12px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.cta .cta.primary {
  margin-top: 20px;
  font-size: 1.2rem;
}
.cta .secondary-contact-details {
  justify-content: center;
  margin-top: 22px;
}

/************************************
 About, Team, Facts (text-section)
************************************/
.text-section {
  margin-bottom: 18px;
}
.facts ul {
  color: #1A2636;
}

/************************************
 Legal Pages (datenschutz, gdpr, etc.)
************************************/
.legal {
  background: #fff;
  border-radius: 28px 6px 18px 32px;
  box-shadow: 0 2px 16px rgba(26,38,54,0.06);
}
.legal h1, .legal h2 {
  color: #1A2636;
  margin-top: 0;
}
.legal .text-section {
  margin-top: 16px;
}
.legal ul {
  margin-bottom: 12px;
}

/************************************
 Confirmation Page
************************************/
.confirmation {
  background: #fff;
  border-radius: 24px 50px 18px 6px;
  padding: 40px 24px;
  box-shadow: 0 6px 32px rgba(227,183,72,0.10);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.confirmation h1 {
  color: #E3B748;
}

/* =============================================================
   Footer
   ============================================================= */
footer {
  background: #1A2636;
  color: #F5F6FA;
  padding: 40px 0 24px 0;
  border-radius: 52px 0 0 0;
  box-shadow: 0 -4px 24px rgba(26,38,54,0.16);
  position: relative;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin-bottom: 10px;
}
.footer-nav a {
  color: #E3B748;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  transition: color 0.2s;
  position: relative;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #F5F6FA;
}
.footer-info {
  text-align: center;
  font-size: 0.98em;
  color: #F5F6FA;
}


/* =============================================================
   Cookie Consent Banner & Modal
   ============================================================= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #1A2636;
  color: #F5F6FA;
  width: 100vw;
  box-shadow: 0 -4px 20px rgba(26,38,54,0.18);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 14px 20px 14px;
  animation: slideUp 0.8s cubic-bezier(.7,.1,.3,.97);
}
.cookie-banner p {
  color: #F5F6FA;
  font-size: 1.04em;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 15px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 10px 24px;
  border: none;
  font-weight: 700;
  border-radius: 9px 24px 9px 24px;
  font-size: 1rem;
  transition: background 0.19s, color 0.12s, box-shadow 0.12s;
  cursor: pointer;
  margin: 0;
  outline: none;
}
.cookie-banner .accept {
  background: #E3B748;
  color: #1A2636;
  box-shadow: 0 2px 18px #E3B74811;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #F5F6FA;
}
.cookie-banner .reject {
  background: #fff;
  color: #1A2636;
  border: 1.5px solid #E3B748;
  box-shadow: 0 1px 6px #E3B74810;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #E3B748;
  color: #1A2636;
}
.cookie-banner .settings {
  background: transparent;
  border: 1.5px solid #E3B748;
  color: #E3B748;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #E3B748;
  color: #1A2636;
}

@keyframes slideUp {
  0% { transform: translateY(150px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/********************************
 Cookie Modal
********************************/
.cookie-modal-backdrop {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(26,38,54,0.46);
  z-index: 3100;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.45s cubic-bezier(.7,.1,.3,.97);
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 28px 8px 28px 8px;
  box-shadow: 0 2px 26px rgba(26,38,54,0.24);
  padding: 32px 26px;
  min-width: 330px;
  max-width: 94vw;
  color: #1A2636;
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 3200;
  animation: popIn 0.36s cubic-bezier(.74,1.7,.48,1);
}
@keyframes popIn {
  0% { transform: scale(0.84); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  color: #E3B748;
  margin-bottom: 12px;
}
.cookie-modal ul {
  margin: 0 0 10px 18px;
  padding: 0;
  color: #222;
}
.cookie-modal .category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 13px;
}
.cookie-modal .category label {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #1A2636;
}
.cookie-modal .category input[type='checkbox'] {
  width: 20px;
  height: 20px;
  accent-color: #E3B748;
  cursor: pointer;
}
.cookie-modal .essential label {
  font-style: italic;
  color: #A3A8B2;
}
.cookie-modal .essential input[type='checkbox'] {
  accent-color: #E3B748;
}
.cookie-modal .modal-buttons {
  display: flex;
  gap: 18px;
}
.cookie-modal .modal-buttons button {
  flex: 1;
  padding: 11px 0;
}
.cookie-modal .close-modal {
  position: absolute; right: 18px; top: 18px;
  background: none;
  border: none;
  color: #E3B748;
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.16s;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  color: #1A2636;
}

/* =============================================================
   Responsive Design (Mobile-First)
   ============================================================= */
@media (max-width: 1024px) {
  .container, .content-wrapper {
    max-width: 95vw !important;
    padding-left: 8px;
    padding-right: 8px;
  }
  .hero {
    min-height: 150px;
    padding: 36px 10px 32px 10px;
    border-radius: 0 0 50px 50px;
  }
  .footer-nav, .content-grid, .feature-grid {
    gap: 12px !important;
  }
}

@media (max-width: 768px) {
  section, .section {
    padding: 26px 6px;
    margin-bottom: 32px;
  }
  .hero {
    padding: 36px 4px 32px 4px;
    border-radius: 0 0 38px 38px;
  }
  .hero .content-wrapper h1 {
    font-size: 2rem;
  }
  .feature-grid, .content-grid, .footer-nav {
    flex-direction: column;
    gap: 12px !important;
  }
  .feature-item {
    max-width: 96vw;
    padding: 14px 10px 12px 10px;
  }
  .testimonials .testimonial-card, .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    min-width: 90vw;
    max-width: 97vw;
    padding: 16px 6px;
  }
  .testimonial-card p, .testimonial-card blockquote {
    font-size: 1rem;
    padding: 4px 2px 4px 8px;
  }
  .cta {
    padding: 24px 4px 20px 4px;
  }
  .footer-info {
    font-size: 0.92em;
  }
  .prizing-table th, .pricing-table td {
    padding: 8px 2px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.35rem;
    text-align: left;
  }
  h2 {
    font-size: 1.12rem;
    text-align: left;
  }
  .cta.primary, .cta.secondary {
    font-size: 1.01rem;
    padding: 11px 13px;
  }
  .hero {
    padding: 15px 2px 13px 2px;
  }
  .feature-item, .testimonial-card, .card {
    min-width: 96vw;
    max-width: 99vw;
    padding: 10px 5px 7px 9px;
  }
  .card-container {
    gap: 8px;
  }
}

/* =============================================================
   Artistic Microinteractions & Subtle Animations
   ============================================================= */
.cta.primary, .cta.secondary, .feature-item, .card, .testimonial-card, .footer-nav a {
  transition: box-shadow 0.2s, background 0.2s, color 0.18s, transform 0.16s, border-color 0.12s;
}
.cta.primary:active {
  transform: scale(0.96) rotate(-0.9deg);
}
.feature-item:hover, .card:hover, .testimonial-card:hover {
  box-shadow: 0 8px 32px 0 rgba(227,183,72,0.13);
  transform: scale(1.01) translateY(-4px);
}
input, textarea, select, button {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}

/* =============================================================
   Accessibility (Focus States, Contrast)
   ============================================================= */
a:focus, button:focus {
  outline: 2px solid #E3B748;
  outline-offset: 2px;
}

/* Specifically for .testimonial-card (ALWAYS dark text on white) */
.testimonial-card, .testimonial-card * {
  color: #1A2636 !important;
  background: none;
}

/* =========================================
   Utility and Misc
   ========================================= */
.hide {
  display: none !important;
}
.text-center {
  text-align: center !important;
}
.mt-2 {margin-top:16px;}
.mb-2 {margin-bottom:16px;}
.mt-lg {margin-top:32px;}
.mb-lg {margin-bottom:32px;}

/* Prevent overlapping at all screen sizes */
.card, .feature-item, .testimonial-card {
  margin-bottom: 20px !important;
  min-width: 200px;
}
.card-container, .feature-grid, .content-grid {
  gap: 24px !important;
}

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