/* ===========================================================
   CSS RESET & NORMALIZATION
   =========================================================== */
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;
  box-sizing: border-box;
  font: inherit;
  vertical-align: baseline;
}
html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}
body {
  min-height: 100vh;
  background: #F4F7F8;
  color: #22313B;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  background-color: transparent;
  color: #235065;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #bfa14d;
}
ul, ol {
  list-style-position: inside;
  margin-bottom: 24px;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border: none;
}
button, input, textarea, select {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  outline: none;
  background: none;
  border: none;
}

/*
 =============================================================
  BRAND LUXURY_PREMIUM COLOR PALETTE & FONT DECLARATIONS
 ===========================================================
*/
:root {
  --brand-primary: #235065;
  --brand-secondary: #89B4C0;
  --brand-accent: #F4F7F8;
  --gold: #bfa14d;
  --gold-light: #e4d5b5;
  --brand-dark: #22313B;
  --brand-mid: #5f7383;
  --white: #fff;
  --danger: #A33B2E;
  --success: #386641;
}
@font-face {
  font-family: 'Montserrat';
  font-display: swap;
  font-style: normal;
  font-weight: 700;
  src: local('Montserrat Bold'), url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Open Sans Regular'), url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap');
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  color: var(--brand-dark);
  letter-spacing: 0.01em;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--brand-primary);
}
h3 {
  font-size: 1.35rem;
  color: var(--brand-primary);
}
h4, h5, h6 {
  font-size: 1.13rem;
}

p, li {
  font-size: 1rem;
  color: var(--brand-mid);
}
strong, b {
  font-weight: 600;
  color: var(--brand-dark);
}
.subheadline {
  font-size: 1.25rem;
  color: var(--brand-mid);
  margin-bottom: 24px;
  font-style: italic;
}

/* SPACING & LAYOUT CONTAINERS */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--brand-accent);
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(38,46,60,0.10);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
  width: 100%;
}

/* Main Nav */
header {
  background: var(--white);
  border-bottom: 1.5px solid var(--brand-accent);
  box-shadow: 0 1px 6px rgba(38,46,60,0.06);
  position: sticky;
  top: 0;
  z-index: 60;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
header img[src*='logo'] {
  height: 48px;
  margin-right: 28px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--brand-dark);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
}
.main-nav .cta-button.primary {
  margin-left: 18px;
}

/* Burger Button */
.mobile-menu-toggle {
  display: none;
  background: var(--gold);
  color: var(--white);
  border-radius: 8px;
  font-size: 2.2rem;
  padding: 6px 16px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 2px 14px rgba(191,161,77,.07);
}
.mobile-menu-toggle:focus {
  outline: 3px solid var(--gold);
}

/* MOBILE NAVIGATION OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34, 49, 59, 0.98);
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding-top: 40px;
  transform: translateX(-120vw);
  transition: transform 0.36s cubic-bezier(.83,.03,.52,.97);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--brand-dark);
  color: var(--gold);
  border-radius: 50%;
  font-size: 2rem;
  border: none;
  margin: 22px 18px 20px 0;
  padding: 0.25em 0.38em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(34,49,59,.08);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
  align-items: flex-end;
  padding: 10px 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  color: var(--gold);
  font-weight: 700;
  padding: 12px 0;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  border-radius: 8px;
  min-width: 200px;
  text-align: right;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--brand-primary);
  color: var(--white);
}

/* CTA BUTTONS */
.cta-button {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 8px;
  padding: 12px 32px;
  margin: 12px 0 0 0;
  border: none;
  box-shadow: 0 2px 16px rgba(191,161,77,.05);
  background: var(--gold);
  color: var(--white);
  cursor: pointer;
  transition: background 0.22s, color 0.22s, box-shadow 0.22s;
  outline: none;
  border: 1.5px solid var(--gold);
  text-shadow: 0 1px 0 rgba(34,49,59,0.05);
}
.cta-button.primary {
  background: var(--gold);
  color: var(--brand-dark);
  border: 1.5px solid var(--gold);
}
.cta-button.primary:hover, .cta-button.primary:focus {
  background: var(--white);
  color: var(--gold);
  border: 1.5px solid var(--gold);
  box-shadow: 0 4px 18px rgba(191,161,77,0.12);
}
.cta-button.secondary {
  background: var(--brand-primary);
  color: var(--white);
}
.cta-button.secondary:hover, .cta-button.secondary:focus {
  background: var(--gold);
  color: var(--brand-dark);
}

/* HERO & GENERAL SECTION STYLES */
.hero {
  background: var(--brand-primary);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0 0 36px 36px;
  color: var(--white);
  padding-top: 64px;
  padding-bottom: 64px;
  box-shadow: 0 7px 28px rgba(35,80,101,0.10);
  position: relative;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 600px;
}
.hero h1, .hero .subheadline {
  color: var(--white);
}

/* Features Section */
.features, .trust, .stats, .clients, .process, .faq, .team, .about {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(35,80,101,0.07);
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 32px;
}
.feature-grid > div {
  flex: 1 1 250px;
  min-width: 230px;
  background: var(--brand-accent);
  border-radius: 13px;
  padding: 28px 22px 18px 22px;
  margin-bottom: 20px;
  box-shadow: 0 1px 7px rgba(35,80,101,0.03);
  transition: box-shadow 0.2s;
  border-top: 3px solid var(--gold);
}
.feature-grid > div:hover {
  box-shadow: 0 7px 20px rgba(35,80,101,0.13);
}

.feature-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: center;
  justify-content: flex-start;
}
.feature-icons > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--brand-primary);
  font-size: 1.08rem;
  font-weight: 700;
  text-align: center;
}
.feature-icons img {
  height: 32px;
  margin-bottom: 2px;
  filter: drop-shadow(0 1px 5px rgba(35,80,101,0.10));
}

/* Trust/Stats Boxes */
.stat-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
  margin-top: 28px;
}
.stat-grid > div {
  background: var(--brand-accent);
  padding: 24px 32px;
  border-radius: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  text-align: center;
  box-shadow: 0 1px 9px rgba(35,80,101,0.07);
  border-bottom: 3px solid var(--gold);
  min-width: 170px;
}
.stat-grid h3 {
  color: var(--gold);
  font-size: 2.2rem;
  margin-bottom: 8px;
}
.stat-grid p {
  color: var(--brand-mid);
  font-size: 1.08rem;
}

/* Testimonials */
.testimonials, .testimonial-grid {
  background: var(--brand-accent);
  border-radius: 20px;
  padding-top: 34px;
  margin-bottom: 40px !important;
}
.testimonials h2, .testimonials h1 {
  color: var(--brand-primary);
}
.testimonial-slider, .testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 28px 24px 28px;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 2px 20px rgba(191,161,77,0.08), 0 1.5px 7px rgba(35,80,101,0.06);
  border-left: 5px solid var(--gold);
  min-width: 250px;
  max-width: 380px;
  margin-bottom: 20px;
  color: var(--brand-dark);
}
.testimonial-card p {
  font-size: 1.13rem;
  color: var(--brand-dark);
  font-style: italic;
}
.testimonial-card strong {
  font-weight: 700;
  color: var(--brand-primary);
  font-size: 0.97rem;
}

/* Blog Overview & Articles */
.blog-overview {
  background: var(--brand-accent);
  border-radius: 20px;
}
.blog-categories {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.blog-categories ul {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.blog-categories li {
  display: inline;
  font-size: 1rem;
}
.blog-categories a {
  padding: 6px 16px;
  border-radius: 9px;
  background: var(--brand-secondary);
  color: var(--brand-dark);
  font-weight: 500;
  margin-right: 6px;
  transition: background 0.18s, color 0.18s;
}
.blog-categories a:hover, .blog-categories a:focus {
  color: var(--golde);
  background: var(--gold-light);
}
.featured-post-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 28px;
}
.featured-post-list article {
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 1.5px 10px rgba(35,80,101,0.06);
  padding: 30px 26px 20px 26px;
  min-width: 250px;
  max-width: 420px;
  flex: 1 1 350px;
  transition: box-shadow 0.22s;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 8px;
}
.featured-post-list article h2 {
  font-size: 1.18rem;
  color: var(--brand-primary);
  margin-bottom: 10px;
}
.featured-post-list article a {
  color: var(--gold);
  text-decoration: underline;
}
.featured-post-list article a:hover, .featured-post-list article a:focus {
  color: var(--brand-primary);
}

/* Call to Action Section */
.cta {
  text-align: center;
  background: var(--brand-primary);
  border-radius: 18px;
  color: var(--white);
  box-shadow: 0 4px 24px rgba(38,46,60,0.09);
}
.cta .cta-button {
  margin-top: 22px;
}
.cta h2, .cta p {
  color: var(--white);
}

/* Pricing Table */
.pricing-table {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 2px 9px rgba(191,161,77,0.09);
  padding: 28px 18px 20px 18px;
  margin-bottom: 22px;
}
.pricing-table table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
}
.pricing-table th, .pricing-table td {
  text-align: left;
  padding: 13px 10px;
  font-size: 1rem;
}
.pricing-table th {
  background: var(--gold-light);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  color: var(--brand-dark);
}
.pricing-table tr:nth-child(even) td {
  background: #f9f6f1;
}
.pricing-table td {
  color: var(--brand-primary);
}

/* FAQ Section */
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.faq-list > div {
  background: var(--brand-accent);
  border-radius: 11px;
  box-shadow: 0 0.5px 5px rgba(35,80,101,0.04);
  padding: 18px 18px 11px 18px;
  flex: 1 1 270px;
}
.faq-list h3 {
  color: var(--gold);
}

/* Cards, Card Containers, Content Grids */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 1.5px 9px rgba(35,80,101,0.07);
  position: relative;
  overflow: hidden;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 24px 18px;
}
.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;
}
/* Text section inside about, kontakt, etc. */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/******* FOOTER ******/
footer {
  background: var(--brand-primary);
  color: var(--white);
  font-size: 0.98rem;
  padding-top: 34px;
  padding-bottom: 20px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 18px;
  border-bottom: 1.5px solid var(--gold-light);
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-nav a {
  color: var(--gold-light);
  font-size: 1rem;
  transition: color 0.19s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--gold);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--white);
  padding-left: 14px;
  font-size: 1rem;
}
.footer-contact img {
  margin-right: 7px;
  vertical-align: middle;
  height: 18px;
  display: inline-block;
}
.footer-legal {
  text-align: center;
  color: var(--gold-light);
  font-size: 0.93rem;
  margin-top: 14px;
}

/* CONTACT DETAILS */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 32px 0 28px 0;
}
.contact-details div {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--brand-mid);
}
.contact-details img {
  height: 20px;
}

/* Static Map Section */
.static-map-embed {
  background: var(--brand-accent);
  border-radius: 10px;
  padding: 26px 18px;
  color: var(--brand-mid);
  margin: 20px 0 0 0;
  box-shadow: 0 1.5px 6px rgba(35,80,101,.07);
}

/***********************
  COOKIE CONSENT BANNER
***********************/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 130;
  width: 100vw;
  background: #fffdf7;
  color: var(--brand-dark);
  box-shadow: 0 -4px 18px rgba(34,49,59,.13);
  padding: 22px 18px 22px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  font-size: 1.04rem;
  border-top: 2px solid var(--gold-light);
  transition: transform 0.4s cubic-bezier(.65,.05,.23,.99);
  transform: translateY(140px);
}
.cookie-banner.active {
  transform: translateY(0);
}
.cookie-banner .cookie-text {
  max-width: 620px;
  color: var(--brand-dark);
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 14px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 10px 24px;
  font-size: 1.02rem;
  border-radius: 7px;
  border: none;
  cursor: pointer;
  transition: background 0.19s, color 0.19s;
}
.cookie-btn.accept {
  background: var(--gold);
  color: var(--brand-dark);
  border: 1px solid var(--gold);
}
.cookie-btn.accept:hover {
  background: var(--white);
  color: var(--gold);
}
.cookie-btn.reject {
  background: var(--danger);
  color: var(--white);
  border: 1px solid var(--danger);
}
.cookie-btn.reject:hover {
  background: #fff7f6;
  color: var(--danger);
}
.cookie-btn.settings {
  background: var(--brand-primary);
  color: var(--white);
  border: 1px solid var(--brand-primary);
}
.cookie-btn.settings:hover {
  background: var(--gold-light);
  color: var(--brand-primary);
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(34,49,59,0.65);
  z-index: 131;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModal 0.22s;
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fffdf7;
  padding: 36px 32px 30px 32px;
  border-radius: 18px;
  max-width: 430px;
  min-width: 80vw;
  box-shadow: 0 10px 44px rgba(34,49,59,.18);
  display: flex;
  flex-direction: column;
  gap: 25px;
  position: relative;
  align-items: flex-start;
  z-index: 140;
}
@media (min-width: 600px) {
  .cookie-modal {
    min-width: 400px;
  }
}
.cookie-modal .close-modal {
  position: absolute;
  top: 20px; right: 22px;
  background: none;
  color: var(--brand-dark);
  font-size: 1.38rem;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.18s;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.cookie-category {
  border-radius: 8px;
  padding: 13px 12px 9px 14px;
  background: #fffae7;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 1.03rem;
  color: var(--brand-dark);
}
.cookie-category.essential {
  background: #e8e5d7;
}
.cookie-category label {
  font-weight: bold;
}
.cookie-category input[type=checkbox] {
  accent-color: var(--gold);
  width: 20px; height: 20px;
}
.cookie-category .locked {
  color: var(--brand-primary);
  font-size: 1.12rem;
  margin-left: 7px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 12px;
  width: 100%;
  justify-content: flex-end;
}
.cookie-modal .cookie-modal-actions .cookie-btn {
  min-width: 100px;
}

/* Animations */
@keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}
@keyframes slideUp {
  0% { transform:translateY(100px); opacity:0; }
  100% { transform:translateY(0); opacity:1; }
}

/********* MEDIA QUERIES FOR RESPONSIVENESS *********/
@media (max-width: 1000px) {
  .container {
    max-width: 98vw;
    padding-left: 14px;
    padding-right: 14px;
  }
  .main-nav {
    gap: 12px;
  }
}
@media (max-width: 900px) {
  .feature-grid, .stat-grid, .testimonial-slider, .testimonial-grid, .featured-post-list, .faq-list {
    gap: 18px;
  }
  .card-container, .content-grid {
    gap: 13px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.45rem; }
  .container { padding-left: 8px; padding-right: 8px; }
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .footer-wrapper {
    flex-direction: column;
    gap: 18px;
    border-bottom: 0;
    padding-bottom: 0;
  }
  .stat-grid {
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
  }
  .feature-grid, .testimonial-slider, .testimonial-grid, .content-grid, .faq-list, .featured-post-list {
    flex-direction: column;
    gap: 11px;
  }
  .section {
    padding: 22px 6px;
    margin-bottom: 34px;
    border-radius: 12px;
  }
  .hero {
    padding-top: 38px; padding-bottom: 40px;
    border-radius: 0 0 18px 18px;
  }
  .text-image-section {
    flex-direction: column !important;
    gap: 13px;
  }
  .footer-contact {
    padding-left: 0;
  }
  .cookie-modal {
    min-width: 90vw;
    padding: 18px 10px 12px 10px;
  }
}
@media (max-width: 500px) {
  .hero {
    padding-top: 10vw;
    padding-bottom: 12vw;
  }
  .section {
    padding: 10px 2vw;
    margin-bottom: 18vw;
  }
}

/* Hide scrollbars for cookie modal overlay (optional aesthetic) */
.cookie-modal-overlay {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.cookie-modal-overlay::-webkit-scrollbar {
  display: none;
}

/********************
* Misc Small Details
********************/
hr {
  border: none;
  border-top: 1.5px solid var(--brand-accent);
  margin: 28px 0;
}
.section:target {
  animation: fadeIn 0.35s;
}
/***** Micro-interaction for buttons *****/
.cta-button:active, .cookie-btn:active {
  transform: scale(0.98);
}

/***** Focus states for accessibility *****/
.cta-button:focus, .cookie-btn:focus, .main-nav a:focus, .footer-nav a:focus, .mobile-nav a:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/***** Table Responsive for Pricing *****/
@media (max-width: 500px) {
  .pricing-table table, .pricing-table thead, .pricing-table tbody, .pricing-table tr, .pricing-table td, .pricing-table th {
    display: block;
    width: 100%;
  }
  .pricing-table td, .pricing-table th {
    padding: 8px 2vw;
  }
}

/************
* PRINT STYLES
*************/
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal {
    display: none !important;
  }
  body {
    background: #fff !important;
    color: #222 !important;
  }
}
