/* --- CSS RESET & BASE STYLES --- */
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  font-family: 'Open Sans', Georgia, 'Times New Roman', Times, serif;
  background-color: #F8F4E3;
  color: #215652;
  min-height: 100vh;
  font-size: 16px;
}
img {
  max-width: 100%;
  display: block;
}
a {
  background: none;
  color: #215652;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px dotted #215652;
  outline-offset: 2px;
}
a:hover {
  color: #ADCAB3;
}
ul, ol {
  list-style: none;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Georgia, 'Times New Roman', Times, serif;
  color: #215652;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  line-height: 1.22;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1.1rem;
}
p, ul, ol, li, table, .subtitle {
  font-family: 'Open Sans', Georgia, 'Times New Roman', Times, serif;
  font-size: 1rem;
  color: #37413A;
  margin-bottom: 12px;
}
.subtitle {
  color: #35666C;
  font-size: 1.15rem;
  font-style: italic;
  margin-bottom: 24px;
}
strong {
  font-weight: 600;
  color: #215652;
}

/* --- LAYOUT CONTAINERS --- */
.container {
  width: 100%;
  max-width: 1020px;
  margin-right: auto;
  margin-left: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}

/* --- HEADER & NAV --- */
header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #E2E1D3;
  padding: 0 0 0 0;
  position: relative;
  min-height: 72px;
  z-index: 98;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.logo-link {
  padding: 14px 0 14px 24px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
header img {
  height: 50px;
  width: auto;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  margin-left: auto;
  margin-right: 24px;
}
.main-nav a {
  font-family: 'Montserrat', serif;
  color: #215652;
  font-weight: 500;
  letter-spacing: 0.01em;
  font-size: 1.02rem;
  padding: 8px 10px;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover,
.main-nav a.active{
  color: #ADCAB3;
  background: rgba(33,86,82,0.07);
}
.cta-primary {
  background: #215652;
  color: #fff !important;
  border-radius: 22px;
  padding: 9px 28px;
  font-size: 1rem;
  font-family: 'Montserrat', serif;
  font-weight: 600;
  border: none;
  box-shadow: 0 4px 12px rgba(33, 86, 82, 0.07);
  margin-left: 10px;
  transition: background 0.28s, color 0.28s, box-shadow 0.28s;
  cursor: pointer;
  text-align: center;
  outline: none;
  display: inline-block;
}
.cta-primary:focus, .cta-primary:hover {
  background: #ADCAB3;
  color: #215652 !important;
  box-shadow: 0 6px 24px rgba(173, 202, 179, 0.19);
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu-toggle {
  display: none;
  background: #ADCAB3;
  color: #215652;
  border: none;
  font-size: 2.1rem;
  padding: 6px 16px;
  border-radius: 8px;
  margin-left: auto;
  cursor: pointer;
  transition: background 0.21s, box-shadow 0.2s;
  z-index: 110;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #215652;
  color: #fff;
  box-shadow: 0 3px 9px rgba(33,86,82,0.10);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right:0; bottom:0;
  background: rgba(248,244,227,0.98);
  z-index: 1800;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(0.6,0,0.3,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100vw;
  height: 100vh;
  box-shadow: 0 2px 16px rgba(33,86,82,0.09);
  padding-top: 48px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 16px;
  right: 22px;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #215652;
  cursor: pointer;
  z-index: 2000;
  padding:2px;
  border-radius: 6px;
  transition: background 0.2s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #E2E1D3;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-left: 36px;
  padding-top: 18px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', serif;
  color: #215652;
  font-size: 1.25rem;
  padding: 12px 0;
  font-weight: 600;
  border-radius: 5px;
  transition: background 0.21s, color 0.2s;
  outline: none;
  cursor: pointer;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #ADCAB3;
  color: #fff;
}

/* --- HERO SECTION --- */
.hero {
  background: linear-gradient(115deg, #F8F4E3 80%, #ADCAB3 100%);
  border-bottom: 1px solid #E2E1D3;
  min-height: 330px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 16px;
  margin-top: 32px;
  margin-bottom: 32px;
}
.hero h1{
  font-size: 2.35rem;
  margin-bottom: 12px;
}
.hero p.subtitle{
  font-size: 1.12rem;
  max-width: 540px;
}

/* --- FEATURE SECTION --- */
.features {
  background: none;
  padding-bottom: 28px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: stretch;
  margin-top: 12px;
}
.feature-item {
  display: flex; flex-direction: column; align-items: flex-start; gap: 15px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(173,202,179,0.13);
  padding: 28px 22px 22px 22px;
  min-width: 210px;
  flex: 1 1 230px;
  max-width: 300px;
  margin-bottom: 20px;
  transition: box-shadow 0.23s, transform 0.23s;
}
.feature-item img {
  width: 40px; height: 40px;
}
.feature-item h3 {
  font-size: 1.13rem;
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 12px 28px rgba(33,86,82,0.15);
  transform: translateY(-7px) scale(1.025);
}

/* --- TESTIMONIALS --- */
.testimonials {
  background: #F8F4E3;
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 20px 0 12px 0;
}
.testimonial-card {
  display: flex; flex-direction: column; align-items: flex-start; gap: 16px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 28px rgba(33,86,82,0.10);
  padding: 28px 26px 22px 26px;
  flex: 1 1 240px;
  min-width: 220px;
  max-width: 330px;
  margin-bottom: 20px;
  color: #215652;
  border-left: 4px solid #ADCAB3;
  font-size: 1.07rem;
  transition: box-shadow 0.22s, transform 0.24s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 16px 44px rgba(33,86,82,0.16);
  transform: translateY(-4px) scale(1.018);
}
.testimonial-card p {
  color: #215652;
  font-family: 'Montserrat', serif;
  font-size: 1.08rem;
  margin-bottom: 0;
}
.reviewer {
  color: #6D786C;
  font-size: 0.95rem;
  font-style: italic;
  margin-top:8px;
}
.trust-signals {
  color: #35666C;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.02rem;
  margin-top: 18px;
}
.trust-signals img {
  width: 24px; height: 24px;
}

/* --- ABOUT PAGE: TIMELINE & TEAM --- */
.timeline {
  margin: 18px 0 24px 24px;
  padding-left: 14px;
  border-left: 2px solid #ADCAB3;
}
.timeline li {
  margin-bottom: 11px;
  font-size: 1rem;
}
.founder-message {
  background: #fff;
  border-left: 4px solid #35666C;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(33, 86, 82, 0.09);
  padding: 20px 18px;
  margin-bottom: 20px;
  font-size: 1.04rem;
  color: #215652;
}
.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
}
.team-member {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(173,202,179,0.14);
  min-width: 180px;
  max-width: 240px;
  padding: 22px 14px;
  align-items: center;
  margin-bottom: 20px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.23s;
}
.team-member img {
  height: 40px;
  width: 40px;
}
.team-member:hover, .team-member:focus-within {
  box-shadow: 0 12px 32px rgba(33,86,82,0.13);
  transform: scale(1.035);
}
.value-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-top: 8px;
}
.value-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 9px;
  padding: 13px 18px;
  font-size: 1.03rem;
  box-shadow: 0 2px 10px rgba(173,202,179,0.13);
}
.value-list img {
  width: 23px; height: 23px;
}

/* --- SERVICES & CLASS LISTS --- */
.class-list, .benefit-list, .pricing-options, .event-items, .faq-list, .membership-benefits ul {
  margin: 1em 0 2em 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.class-list li,
.benefit-list li,
.event-items li,
.pricing-options li,
.faq-list li,
.membership-benefits ul li {
  background: #fff;
  border-radius: 9px;
  box-shadow: 0 1px 7px rgba(173,202,179,0.11);
  padding: 14px 19px;
  font-size: 1.07rem;
  color: #215652;
  display: flex;
  align-items: center;
  gap: 11px;
}
.benefit-list img,
.class-list img {
  width: 22px; height: 22px;
}

/* --- PRICING & TABLES --- */
.pricing-options,
.membership-benefits ul {
  gap: 13px;
}
.membership-comparison-table,
.class-timetable {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0 22px 0;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 14px rgba(33,86,82,0.07);
  overflow: hidden;
}
.membership-comparison-table th,
.class-timetable th {
  background: #ADCAB3;
  color: #215652;
  font-family: 'Montserrat', serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 13px 7px;
  text-align: left;
  border-bottom: 1px solid #E2E1D3;
}
.membership-comparison-table td,
.class-timetable td {
  padding: 12px 7px;
  font-size: 1rem;
  border-bottom: 1px solid #EFEFE7;
  color: #215652;
}
.membership-comparison-table tr:last-child td,
.class-timetable tr:last-child td {
  border-bottom: none;
}
.membership-comparison-table tbody tr:hover,
.class-timetable tbody tr:hover {
  background: #F8F4E3;
  transition: background 0.2s;
}
.membership-comparison-table th:first-child,
.membership-comparison-table td:first-child {
  border-left: none;
}

.filter-options {
  font-size: 0.95rem;
  margin-top: 8px;
  color: #6D786C;
}
.filter-options span {
  font-weight: 500;
  background: #fff;
  padding: 2px 13px;
  border-radius: 9px;
  margin-left: 6px;
}

/* --- FAQ & POLICY SECTIONS --- */
.faq-list {
  margin-top: 8px;
}
.faq-list li {
  background: #fff;
  box-shadow: 0 2px 9px rgba(33,86,82,0.08);
  border-radius: 8px;
  padding: 13px 20px;
  color: #215652;
}
.policy-intro, .policy-details {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 18px rgba(173,202,179,0.08);
  margin-bottom: 24px;
  padding: 24px 22px;
}
.gdpr-contact {
  font-size: 1rem;
  background: #F8F4E3;
  border-radius: 9px;
  padding: 12px 16px;
  margin-top: 12px;
}

/* --- CALL-TO-ACTION --- */
.call-to-action, .confirmation {
  background: #215652;
  padding: 48px 20px;
  text-align: center;
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 7px 26px rgba(33,86,82,0.14);
  margin-bottom: 60px;
}
.call-to-action h2, .confirmation h1 {
  color: #fff;
}
.call-to-action p, .confirmation p {
  color: #F8F4E3;
}
.call-to-action .cta-primary, .confirmation .cta-primary {
  background: #ADCAB3;
  color: #215652 !important;
  margin-top: 12px;
  box-shadow: 0 4px 12px rgba(33,86,82,0.08);
}
.call-to-action .cta-primary:hover, .confirmation .cta-primary:hover{
  background: #fff;
  color: #215652 !important;
}

/* --- CONTACT INFO --- */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
  margin-bottom: 20px;
}
.contact-info > ul,
.contact-info > div {
  display: flex;
  flex-direction: column;
  gap: 13px;
  font-size: 1.05rem;
}
.contact-info img {
  width: 21px; height: 21px; margin-right: 9px; vertical-align: middle;
}

/* --- FOOTER --- */
footer {
  width: 100%;
  background: #fff;
  color: #35666C;
  border-top: 1.5px solid #E2E1D3;
  padding-top: 25px;
  padding-bottom: 24px;
  margin-top: 40px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
  min-width: 140px;
}
.footer-nav a {
  color: #215652;
  font-size: 1.05rem;
  margin-bottom: 7px;
  transition: color 0.16s;
}
.footer-nav a:hover {
  color: #ADCAB3;
}
.footer-logo {
  margin-top: 8px;
}
.footer-logo img {
  width: 48px;
  height: auto;
}

footer .contact-info > div {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #35666C;
}

/* --- GENERAL CARDS & FLEX CONTAINERS --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  padding: 20px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(33,86,82,0.11);
  border-radius: 15px;
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 220px;
  min-width: 190px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
}
.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;
  margin-bottom: 20px;
}

/* --- BUTTON / INTERACTIVE STYLES --- */
button, .button {
  font-family: 'Montserrat', serif;
  font-weight: 600;
  font-size: 1.01rem;
  color: #215652;
  background: #ADCAB3;
  border: none;
  padding: 9px 23px;
  border-radius: 23px;
  margin: 4px 10px 4px 0;
  cursor: pointer;
  transition: background 0.22s, color 0.17s, box-shadow 0.23s;
  outline: none;
  box-shadow: 0 2px 8px rgba(33,86,82,0.09);
}
button:focus, .button:focus {
  background: #215652;
  color: #fff;
}
button:hover, .button:hover {
  background: #215652;
  color: #fff;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; right:0;
  bottom: 0;
  width: 100vw;
  z-index: 5050;
  background: #fffbe6;
  color: #215652;
  box-shadow: 0 -4px 24px rgba(173,202,179,0.17);
  padding: 22px 16px 17px 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 22px;
  font-size: 1.03rem;
  transition: transform 0.35s;
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner .cookie-actions {
  display: flex; flex-direction: row; gap: 14px;
}
.cookie-banner button {
  font-size: 1rem;
  padding: 7px 17px;
  margin: 0 0 0 7px;
  border-radius: 15px;
  background: #ADCAB3;
  color: #215652;
  box-shadow: 0 1.5px 5px rgba(33,86,82,0.07);
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #215652;
  color: #fff;
}

/* --- COOKIE SETTINGS POPUP --- */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(33,86,82,0.25);
  z-index: 6000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  opacity: 1;
  transition: opacity 0.34s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 48px rgba(33,86,82,0.22);
  padding: 36px 30px 28px 30px;
  min-width: 320px;
  max-width: 90vw;
  color: #215652;
  font-size: 1.05rem;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.cookie-modal h2 {
  font-size: 1.25rem;
  margin-bottom: 11px;
}
.cookie-modal .close-cookie-modal {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  color: #6D786C;
  border: none;
  font-size: 1.7rem;
  cursor: pointer;
  border-radius: 5px;
  padding:3px 5px;
  transition: background 0.18s;
}
.cookie-modal .close-cookie-modal:hover, .cookie-modal .close-cookie-modal:focus{
  background: #E2E1D3;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: flex-start;
  font-size: 1.03rem;
}
.cookie-category label {
  font-weight: 600;
  min-width: 130px;
}
.cookie-category input[type="checkbox"] {
  accent-color: #ADCAB3;
  width: 18px;
  height: 18px;
  margin-right: 7px;
  cursor:pointer;
}
.cookie-category input[disabled] {
  opacity: 0.7;
  pointer-events: none;
}
.cookie-modal .cookie-actions {
  display: flex; flex-direction: row; gap: 16px;
  margin-top: 17px;
}
.cookie-modal .cookie-actions button {
  font-size: 1.04rem;
  padding: 7px 20px;
  border-radius: 16px;
}
.cookie-modal .cookie-actions button.primary {
  background: #ADCAB3;
  color: #215652;
}
.cookie-modal .cookie-actions button.secondary {
  background: #215652;
  color: #fff;
}

/* --- ANIMATIONS & TRANSITIONS --- */
@media (prefers-reduced-motion: no-preference) {
  .feature-item,
  .testimonial-card,
  .team-member,
  .cta-primary,
  button,
  .card,
  .cookie-banner,
  .cookie-modal {
    transition: 
      background 0.25s,
      color 0.19s,
      box-shadow 0.19s,
      transform 0.22s;
  }
  .mobile-menu,
  .cookie-banner,
  .cookie-modal-overlay {
    transition: transform 0.32s cubic-bezier(0.66,0.01,0.34,1), opacity 0.35s;
  }
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1060px) {
  .feature-grid, .team-list, .testimonial-list, .content-grid, .card-container {
    flex-wrap: wrap;
    gap: 20px;
  }
  .feature-item, .testimonial-card, .team-member, .card {
    max-width: 46vw;
    min-width: 180px;
    flex: 1 1 180px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 97vw;
    padding-left: 10px;
    padding-right: 10px;
  }
  header {
    flex-direction: row;
    min-height: 58px;
    padding: 0 0 0 0;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    margin-right: 13px;
  }
  .logo-link {
    padding-left: 10px;
    padding-right: 2px;
  }
  .hero, .call-to-action, .confirmation {
    min-height: 210px;
    padding: 32px 8px;
  }
  .hero h1 {
    font-size: 1.45rem;
    margin-bottom: 14px;
  }
  .section {
    padding: 21px 7px;
    margin-bottom: 34px;
  }
  .features, .testimonials, .policy-intro, .policy-details {
    padding: 14px 7px;
  }
  .feature-grid, .team-list, .testimonial-list, .content-grid, .card-container {
    gap: 12px;
  }
  .feature-item, .testimonial-card, .team-member, .card {
    max-width: 98vw;
    min-width: 90vw;
    flex: 1 1 90vw;
    padding-left: 10px;
    padding-right: 10px;
  }
  .section:not(.hero):not(.call-to-action):not(.confirmation) {
    background: none;
  }
  .footer-nav {
    flex-direction: row;
    gap: 13px;
    margin-bottom: 10px;
  }
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
  }
  .contact-info {
    gap: 7px;
    margin-bottom: 10px;
    font-size: 0.97rem;
  }
  .policy-intro, .policy-details {
    border-radius: 7px;
    padding: 12px 5px;
  }
  .cookie-modal {
    min-width: 90vw;
    padding: 19px 5vw 18px 5vw;
  }
}
@media (max-width: 540px) {
  h1 { font-size: 1.15rem; }
  h2 { font-size: 1rem; }
  .team-member, .feature-item, .testimonial-card, .card {
    font-size: 0.98rem;
    padding: 9px 6vw;
  }
  .cookie-modal {
    min-width: 96vw;
    padding: 10px 2vw 10px 2vw;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 10px;
    font-size: 0.97rem;
    padding: 13px 4px;
  }
}

/* --- UTILITIES --- */
.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 24px; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 26px; }
.gap-10 { gap: 10px; }
.gap-20 { gap: 20px; }
.flex-row { display: flex; flex-direction: row; }
.flex-col { display: flex; flex-direction: column; }

/* --- SELECTION & SCROLLBAR --- */
::selection { background: #ADCAB3; color: #fff; }
::-webkit-scrollbar { width: 9px; background: #F8F4E3; }
::-webkit-scrollbar-thumb { background: #ADCAB3; border-radius: 9px; }

/* --- CLARIFICATION ON ACCESSIBILITY --- */
[tabindex]:focus { outline: 2px solid #215652; outline-offset: 2px; }

/* Ensures no overlap on all elements due to spacing rules */
.section, .card-container > *, .content-grid > *, .feature-grid > *, .team-list > *, .testimonial-list > *, .event-items > *, .faq-list > *, .value-list > * {
  margin-bottom: 20px;
}

