/* --------------------------------------------------------------
   CSS 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, 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;
}
body {
  line-height: 1.55;
  background: #F4F4EF;
  color: #243B4A;
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 16px;
  min-height: 100vh;
}
html {
  scroll-behavior: smooth;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
img {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
  border: none;
}
button, input, select, textarea {
  font: inherit;
}
hr {
  border: 0;
  border-top: 1px solid #e6e6e1;
  margin: 30px 0;
}

/* --------------------------------------------------------------
   Variables (with Fallbacks)
-------------------------------------------------------------- */
:root {
  --color-primary: #243B4A;
  --color-secondary: #8CA1A5;
  --color-accent: #F4F4EF;
  --color-bg: #F4F4EF;
  --color-contrast: #ffffff;
  --color-grey: #F0F1ED;
  --color-dark: #1B2834;
  --shadow-card: 0 4px 20px 0 rgba(36,59,74,0.07);
  --radius-card: 12px;
  --radius-btn: 32px;
  --transition: 0.25s cubic-bezier(.5,.1,.1,1);
}

/* --------------------------------------------------------------
   Typography
-------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', 'Times New Roman', serif;
  color: #243B4A;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.16;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.33rem;
}
h4 {
  font-size: 1.1rem;
}
p, ul, ol, blockquote {
  font-family: 'Georgia', 'Times New Roman', serif;
  color: #243B4A;
  font-size: 1.08rem;
  margin-bottom: 1.1em;
}
p {
  line-height: 1.7;
}
blockquote {
  font-style: italic;
  color: #243B4A;
  background: #F0F1ED;
  padding: 16px 24px;
  border-left: 4px solid #8CA1A5;
  margin: 0 0 24px 0;
  border-radius: 0 16px 16px 0;
}
cite {
  font-family: 'Georgia', 'Times New Roman', serif;
  color: #8CA1A5;
  font-size: 1rem;
  display: block;
  margin-top: 4px;
  font-style: normal;
}
strong, b {
  font-weight: 700;
}
em, i {
  font-style: italic;
}
ul li, ol li {
  margin-bottom: 8px;
}

/* --------------------------------------------------------------
   Container & Layout
-------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-bg);
  border-radius: 16px;
  box-shadow: 0 1px 8px 0 rgba(36,59,74,0.05);
}

/* Flex Utility Classes */
.card-container, .feature-grid, .service-highlights, .services-list, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.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;
  box-shadow: 0 2px 16px 0 rgba(36,59,74,0.08);
  border-radius: 14px;
  margin-bottom: 20px;
  min-width: 0;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  flex: 1 1 250px;
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 24px;
  margin-bottom: 20px;
  min-width: 220px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.feature-item:hover {
  box-shadow: 0 6px 24px 0 rgba(36,59,74,0.16);
  transform: translateY(-2px) scale(1.02);
}
.card {
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  background: #fff;
  padding: 28px 24px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover {
  box-shadow: 0 6px 30px 0 rgba(36,59,74,0.15);
  transform: translateY(-2px) scale(1.02);
}

/* --------------------------------------------------------------
   Header & Navigation
-------------------------------------------------------------- */
header {
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(36,59,74,0.06);
  z-index: 102;
  position: relative;
}
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo-link img {
  height: 48px;
  padding-right: 12px;
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 1.09rem;
  color: #243B4A;
  position: relative;
  padding: 2px 0;
  transition: color var(--transition);
}
.main-nav a:after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: #8CA1A5;
  transition: width var(--transition);
  margin-top: 3px;
}
.main-nav a:hover, .main-nav a:focus {
  color: #8CA1A5;
}
.main-nav a:hover:after, .main-nav a:focus:after {
  width: 100%;
}

.btn-primary, .btn-secondary {
  display: inline-block;
  font-family: 'Georgia', 'Times New Roman', serif;
  font-weight: 700;
  border: none;
  outline: none;
  border-radius: var(--radius-btn);
  padding: 10px 36px;
  font-size: 1.13rem;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  text-align: center;
  text-decoration: none;
  box-shadow: 0 2px 8px 0 rgba(36,59,74,0.06);
  background: var(--color-primary);
  color: #fff;
  position: relative;
}
.btn-primary:hover, .btn-primary:focus {
  background: #3e5976;
  box-shadow: 0 6px 20px 0 rgba(36,59,74,0.11);
}
.btn-secondary {
  background: #fff;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  font-weight: 700;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #ebf0f6;
  color: #243B4A;
  border-color: #8CA1A5;
}

header .btn-primary {
  margin-left: 24px;
}

/* --------------------------------------------------------------
   MOBILE BURGER MENU
-------------------------------------------------------------- */
.mobile-menu-toggle {
  display: none;
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 16px;
  transition: background var(--transition), box-shadow var(--transition);
  z-index: 103;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #8CA1A5;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(36,59,74,0.97);
  z-index: 2000;
  transform: translateX(100vw);
  opacity: 0;
  transition: opacity 0.25s, transform 0.3s cubic-bezier(.7,0,.3,1);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  color: #fff;
  border: none;
  font-size: 2.2rem;
  align-self: flex-end;
  margin: 22px 28px 0 0;
  cursor: pointer;
  z-index: 2001;
  transition: color var(--transition);
}
.mobile-menu-close:focus {
  color: #8CA1A5;
  outline: 2px solid #8CA1A5;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  width: 100vw;
  margin-top: 48px;
  padding-left: 40px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.5rem;
  font-family: 'Georgia', 'Times New Roman', serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 8px 0;
  transition: color 0.2s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  color: #8CA1A5;
}

@media (max-width: 1020px) {
  .main-nav {
    gap: 18px;
  }
  header .btn-primary {
    margin-left: 12px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  header .btn-primary {
    display: none;
  }
}
/* Custom to avoid overlapping: ensure all containers spaced */
main > section, .section {
  margin-bottom: 60px;
}

/* --------------------------------------------------------------
   HERO
-------------------------------------------------------------- */
.hero {
  background: linear-gradient(90deg, rgba(244,244,239,0.96) 70%, rgba(140,161,165,0.12)), url('../assets/hero_bg.jpg') center/cover no-repeat;
  background-blend-mode: lighten;
  border-radius: 0 0 26px 26px;
  box-shadow: 0 6px 28px rgba(36,59,74,0.08);
  min-height: 330px;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  padding: 44px 0;
}
.hero .content-wrapper {
  align-items: flex-start;
  justify-content: center;
  gap: 18px;
}
.hero h1 {
  font-size: 2.5rem;
  color: #243B4A;
  font-weight: 700;
}
.hero p {
  font-size: 1.18rem;
  color: #5c6978;
  max-width: 540px;
  margin-bottom: 10px;
}
.hero .btn-primary {
  margin-top: 18px;
}

/* --------------------------------------------------------------
   FEATURES & SERVICES
-------------------------------------------------------------- */
.features {
  margin-bottom: 60px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-item img {
  width: 38px;
  height: 38px;
  margin-bottom: 6px;
}
.feature-item h3 {
  margin-bottom: 8px;
}
.service-highlights, .services-list {
  gap: 24px;
}
.service-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow-card);
  padding: 22px 20px 22px 20px;
  min-width: 200px;
  flex: 1 1 250px;
  margin-bottom: 20px;
  gap: 13px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.service-item img {
  width: 32px;
  height: 32px;
}
.service-item:hover {
  box-shadow: 0 8px 30px 0 rgba(36,59,74,0.13);
  transform: translateY(-2px) scale(1.03);
}

/* --------------------------------------------------------------
   TESTIMONIALS
-------------------------------------------------------------- */
.testimonials {
  background: #F0F1ED;
  border-radius: 20px;
  box-shadow: 0 1px 8px 0 rgba(36,59,74,0.04);
}
.testimonials .content-wrapper {
  gap: 32px;
}
.testimonial-card {
  background: #fff;
  box-shadow: 0 3px 20px 0 rgba(36,59,74,0.10);
  border-radius: 14px;
  padding: 32px 28px;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 20px;
  flex: 1 1 300px;
  min-width: 260px;
  position: relative;
  color: #243B4A;
}
.testimonial-card .testimonial-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 8px;
}
.testimonial-card blockquote {
  font-style: italic;
  color: #243B4A;
  background: none;
  border: none;
  padding: 0;
  font-size: 1.07rem;
  margin-bottom: 12px;
}
.testimonial-card cite {
  color: #8CA1A5;
  font-size: 1rem;
  font-style: normal;
  margin-left: 0;
}

/* Always ensure high contrast in testimonials */
.testimonial-card, .testimonial-card * {
  color: #243B4A !important;
  background-color: #fff;
}

/* --------------------------------------------------------------
   PRICING TABLE
-------------------------------------------------------------- */
.pricing-table {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  padding: 24px 18px 30px 18px;
  margin-bottom: 28px;
  overflow-x: auto;
  font-size: 1.06rem;
}
.pricing-table table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  margin-bottom: 10px;
}
.pricing-table th, .pricing-table td {
  padding: 13px 16px;
  text-align: left;
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 1.08rem;
}
.pricing-table th {
  background: #F0F1ED;
  color: #243B4A;
  font-weight: 700;
}
.pricing-table td {
  border-bottom: 1px solid #e6e6e1;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}

/* --------------------------------------------------------------
   FOOTER
-------------------------------------------------------------- */
footer {
  background: #243B4A;
  color: #fff;
  padding: 28px 0 0 0;
  border-radius: 22px 22px 0 0;
  margin-top: 48px;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.footer-top a img {
  height: 38px;
}
.footer-nav {
  display: flex;
  gap: 28px;
}
.footer-nav a {
  color: #fff;
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 1.11rem;
  opacity: .96;
  transition: color 0.18s;
  margin-bottom: 0;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #8CA1A5;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 12px;
  border-top: 1px solid #354b57;
  padding: 20px 0 16px 0;
}
.company-info {
  font-size: .99rem;
  color: #d8e0ea;
}
.copyright {
  font-size: .93rem;
  color: #9faab3;
}

/* --------------------------------------------------------------
   CTA & Contact Info Styling
-------------------------------------------------------------- */
.cta {
  background: linear-gradient(90deg, #F0F1ED 96%, #8CA1A5 4%);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  padding: 44px 18px;
  text-align: center;
  margin-bottom: 60px;
}
.cta h2 {
  font-family: 'Georgia', 'Times New Roman', serif;
  margin-bottom: 18px;
  font-size: 2rem;
  color: #243B4A;
}
.contact-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  font-size: 1.05rem;
  color: #546170;
  justify-content: center;
  margin-top: 16px;
}
@media (max-width: 670px) {
  .contact-info {
    flex-direction: column;
    align-items: center;
    gap: 9px;
  }
}
.cta .btn-primary {
  margin-bottom: 12px;
}

/* --------------------------------------------------------------
   Utility & Other Specific Classes
-------------------------------------------------------------- */
.text-section, .legal-section, .confirmation-message, .business-hours, .contact-details, .directions-text {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 12px 0 rgba(36,59,74,0.06);
  padding: 22px 20px;
  margin-bottom: 24px;
}
.associations, .commitments, .guarantees, .special-offers, .included-services {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
}
.associations img {
  height: 42px;
  margin-right: 14px;
}
@media (max-width: 900px) {
  .associations, .commitments, .guarantees, .special-offers, .included-services {
    gap: 5px;
  }
  .feature-item, .service-item {
    min-width: 150px;
  }
}

.directions-text p {
  margin-bottom: 0;
}

.guarantees ul, .commitments ul, .included-services ul, .special-offers ul {
  margin-bottom: 0;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-item h3 {
  font-size: 1.14rem;
  color: #243B4A;
}
.faq-item p {
  font-size: 1rem;
}

@media (max-width: 1000px) {
  .footer-top, .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .main-nav, .footer-nav {
    gap: 19px;
  }
}
@media (max-width: 768px) {
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
  .section, main > section, .hero {
    padding-left: 8px;
    padding-right: 8px;
  }
  .footer-top, .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .content-wrapper {
    gap: 18px;
  }
  .hero {
    padding: 30px 0;
  }
  .footer-nav {
    gap: 17px;
    flex-wrap: wrap;
  }
}
@media (max-width: 700px) {
  h1 {
    font-size: 1.7rem;
  }
  h2 {
    font-size: 1.2rem;
  }
  .btn-primary, .btn-secondary {
    font-size: 1rem;
    padding: 10px 20px;
  }
  .feature-grid, .service-highlights, .services-list {
    gap: 10px;
  }
  .feature-item, .service-item, .testimonial-card {
    padding: 16px 12px;
    font-size: 0.98rem;
  }
}

@media (max-width: 760px) {
  .feature-grid, .service-highlights, .services-list, .card-container, .card-grid, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .footer-top, .footer-bottom {
    gap: 8px;
  }
}

/* Mobile-specific for hero */
@media (max-width: 540px) {
  .hero {
    min-height: 120px;
    padding: 20px 0;
    border-radius: 0;
  }
  .hero h1 {
    font-size: 1.16rem;
  }
}

/* --------------------------------------------------------------
   Cookie Consent Banner
-------------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: #fff;
  color: #20293a;
  box-shadow: 0 -2px 28px 0 rgba(36,59,74,0.09);
  padding: 18px 24px;
  z-index: 3000;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 1.03rem;
  border-radius: 20px 20px 0 0;
  animation: cookieBannerSlideIn 0.44s cubic-bezier(.65,0,.35,1);
}
@keyframes cookieBannerSlideIn {
  0% { transform: translateY(100px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-left: auto;
}
.cookie-banner button {
  border: none;
  outline: none;
  border-radius: var(--radius-btn);
  background: #243B4A;
  color: #fff;
  font-family: 'Georgia', 'Times New Roman', serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 8px 28px;
  cursor: pointer;
  margin-left: 3px;
  margin-top: 5px;
  transition: background var(--transition), color var(--transition);
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #8CA1A5;
  color: #243B4A;
}
.cookie-banner .cookie-settings-btn {
  background: #fff;
  color: #243B4A;
  border: 1px solid #8CA1A5;
}
.cookie-banner .cookie-settings-btn:hover, .cookie-banner .cookie-settings-btn:focus {
  background: #8CA1A5;
  color: #fff;
}

@media (max-width: 520px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 16px 12px;
    font-size: .92rem;
  }
  .cookie-banner .cookie-actions {
    margin-left: 0;
    gap: 8px;
  }
}
/* Cookie Modal Styles */
.cookie-modal {
  display: none;
  position: fixed;
  z-index: 3500;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(36,59,74,0.76);
  align-items: center;
  justify-content: center;
  animation: fadeInBg 0.20s;
}
.cookie-modal.open {
  display: flex;
}
@keyframes fadeInBg {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  color: #243B4A;
  border-radius: 16px;
  box-shadow: 0 12px 32px 0 rgba(36,59,74,0.24);
  padding: 32px 22px 24px 22px;
  max-width: 380px;
  width: 93vw;
  animation: modalUpslide 0.33s cubic-bezier(.63,0,.22,1);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
@keyframes modalUpslide {
  0% { transform: translateY(60px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-modal-content h2 {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 1.20rem;
  margin-bottom: 10px;
}
.cookie-modal-category {
  background: #F0F1ED;
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .98rem;
  gap: 9px;
}
.cookie-modal-category label {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: .98rem;
  color: #243B4A;
}
.cookie-modal-category input[type="checkbox"] {
  width: 21px;
  height: 21px;
}
/* Essential always on visually */
.cookie-modal-category.essential label {
  font-weight: 700;
}
.cookie-modal-category.essential input[type="checkbox"] {
  accent-color: #8CA1A5;
}
.cookie-modal-content .cookie-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 6px;
}
.cookie-modal-content .cookie-modal-close {
  position: absolute;
  top: 12px; right: 14px;
  background: none;
  border: none;
  color: #8CA1A5;
  font-size: 1.6rem;
  cursor: pointer;
  transition: color 0.18s;
}
.cookie-modal-content .cookie-modal-close:hover, .cookie-modal-content .cookie-modal-close:focus {
  color: #243B4A;
}
.cookie-modal-content button {
  border: none;
  border-radius: var(--radius-btn);
  padding: 8px 24px;
  font-family: 'Georgia', 'Times New Roman', serif;
  background: #243B4A;
  color: #fff;
  font-weight: 700;
  margin-left: 0;
  transition: background var(--transition), color var(--transition);
  cursor: pointer;
}
.cookie-modal-content button.cookie-modal-cancel {
  background: #fff;
  color: #243B4A;
  border: 1px solid #8CA1A5;
}
.cookie-modal-content button.cookie-modal-cancel:hover {
  background: #8CA1A5;
  color: #fff;
}
.cookie-modal-content button:hover, .cookie-modal-content button:focus {
  background: #8CA1A5;
  color: #243B4A;
}

/* ------------------------------------------------------------------
   Accessibility and Focus Outlines
------------------------------------------------------------------ */
:focus {
  outline: 2px solid #8CA1A5;
  outline-offset: 1px;
}
a:focus, button:focus {
  outline: 2px solid #8CA1A5;
  outline-offset: 2px;
}

/* --------------------------------------------------------------
   End of Styles
-------------------------------------------------------------- */
