/* Dawned Adventures Gymnastik - Elegant Classic Style CSS */
/* RESET AND 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, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #FFF8F0;
  color: #11324D;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #22577A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #38A3A5;
  outline: none;
}
ul, ol {
  margin-left: 1.5em;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  color: #1a2533;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-weight: 400;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.25rem;
  line-height: 1.15;
  margin-bottom: 22px;
}
h2 {
  font-size: 1.75rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
p, ul, ol {
  color: #35506a;
  font-size: 1rem;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  margin-bottom: 16px;
  line-height: 1.7;
}
strong {
  font-weight: 700;
}

/* LAYOUT CONTAINERS */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(34, 87, 122, 0.07);
  border: 1px solid #e7e6e2;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s;
}
.card:hover {
  box-shadow: 0 4px 18px rgba(34,87,122,.13);
  z-index: 2;
}
.card-content {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.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;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(34, 87, 122, 0.04);
  padding: 24px 18px;
  width: 100%;
  max-width: 350px;
  transition: box-shadow 0.23s, border 0.23s;
  border: 1px solid #e7e6e2;
}
.feature-item img {
  width: 46px;
  margin-bottom: 6px;
}
.feature-item:hover,
.feature-item:focus {
  box-shadow: 0 6px 24px rgba(56,163,165,0.10);
  border: 1.5px solid #38A3A5;
}

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

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #f8f6f2;
  border-radius: 12px;
  margin-bottom: 20px;
  border: 1px solid #e7e6e2;
  box-shadow: 0 4px 18px rgba(34,87,122,.06);
  max-width: 540px;
  color: #193451;
}
.testimonial-card p {
  font-size: 1.1rem;
  font-style: italic;
  color: #184361;
}
.testimonial-card strong {
  color: #22577A;
}

.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 26px;
}
.team-member {
  background: #fff;
  box-shadow: 0 2px 10px rgba(56, 163, 165, 0.06);
  border-radius: 10px;
  padding: 24px 18px;
  min-width: 240px;
  flex: 1 1 220px;
  border: 1px solid #e7e6e2;
}
.team-member h3 {
  font-size: 1.18rem;
  margin-bottom: 8px;
}

.faq-list h2 {
  margin-top: 32px;
  font-size: 1.22rem;
  color: #193451;
}
.faq-list p {
  background: #fff;
  border-radius: 8px;
  margin: 0 0 12px 0;
  padding: 13px 18px;
  border-left: 4px solid #38A3A5;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-details p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}
.contact-details img {
  width: 20px;
  opacity: 0.75;
}

/* HEADER & NAVIGATION */
header {
  background: #fff;
  border-bottom: 1px solid #e7e6e2;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 8px rgba(34, 87, 122, 0.03);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 18px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
header nav a {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-size: 1.07rem;
  color: #193451;
  position: relative;
  padding: 4px 2px;
  transition: color 0.18s;
}
header nav a:after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background: #38A3A5;
  transition: width 0.2s;
  position: absolute;
  left: 0;
  bottom: -2px;
}
header nav a:hover, header nav a.active, header nav a:focus {
  color: #38A3A5;
}
header nav a:hover:after, header nav a:focus:after {
  width: 100%;
}
.cta-btn {
  display: inline-block;
  background: #22577A;
  color: #fff;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  letter-spacing: 0.03em;
  font-size: 1rem;
  font-weight: 700;
  padding: 11px 28px;
  border-radius: 30px;
  border: none;
  box-shadow: 0 2px 8px rgba(56, 163, 165, 0.12);
  margin-left: 18px;
  transition: background 0.19s, box-shadow 0.18s, transform 0.18s;
  cursor: pointer;
}
.cta-btn:hover, .cta-btn:focus {
  background: #38A3A5;
  color: #fff;
  transform: translateY(-2px) scale(1.035);
  box-shadow: 0 6px 18px rgba(34, 87, 122, 0.09);
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  color: #22577A;
  font-size: 2.1rem;
  border: none;
  cursor: pointer;
  margin-left: 16px;
  z-index: 201;
  transition: color 0.17s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: #38A3A5;
}
.mobile-menu {
  display: none;
}
.mobile-menu.active {
  display: flex;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34, 87, 122, 0.86);
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  z-index: 200;
  transition: background 0.25s;
  animation: mobileMenuSlideIn 0.38s cubic-bezier(.71,0,.36,1);
}
@keyframes mobileMenuSlideIn {
  from {transform: translateX(30%); opacity: 0;}
  to {transform: translateX(0); opacity: 1;}
}
.mobile-menu .mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.1rem;
  margin: 30px 38px 18px 0;
  align-self: flex-end;
  cursor: pointer;
  z-index: 210;
  transition: color 0.17s;
}
.mobile-menu .mobile-menu-close:hover,
.mobile-menu .mobile-menu-close:focus {
  color: #FFD7B5;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  align-items: center;
}
.mobile-nav a {
  font-size: 1.15rem;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  color: #FFF8F0;
  background: none;
  padding: 13px 0;
  margin: 0 0 0 0;
  text-align: center;
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,0.11);
  transition: background 0.19s, color 0.18s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: rgba(56,163,165,0.17);
  color: #FFE6C8;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(118deg, #FFF8F0 67%, #e4f8fa 100%);
  padding: 64px 0 44px 0;
}
.hero .content-wrapper {
  align-items: flex-start;
}
.hero h1 {
  font-size: 2.4rem;
  font-weight: 400;
  margin-bottom: 20px;
  color: #22577A;
}
.hero p {
  font-size: 1.18rem;
  margin-bottom: 24px;
  color: #2d4157;
}
.hero .cta-btn {
  font-size: 1.12rem;
  padding: 14px 40px;
}

/* FOOTER */
footer {
  background: #22577A;
  color: #fff;
  padding: 40px 0 0 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 20px;
}
.footer-brand img {
  width: 54px;
  margin-bottom: 10px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 10px;
}
.footer-nav a {
  color: #FFD7B5;
  font-size: 1rem;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  transition: color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
}
.footer-contact p, .footer-address p {
  font-size: 0.98rem;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.6;
}
.footer-social {
  display: flex;
  gap: 16px;
  margin-bottom: 10px;
}
.footer-social a img {
  width: 28px;
  opacity: 0.94;
  transition: opacity 0.14s, transform 0.20s;
}
.footer-social a:hover img {
  opacity: 1;
  transform: scale(1.13);
}
.footer-address {
  margin-top: 10px;
  flex-basis: 100%;
}
.footer-address p {
  color: #FFD7B5;
}

/* SPECIAL SECTIONS */
.section {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 9px rgba(34,87,122,0.05);
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fff9ef;
  color: #1a2533;
  box-shadow: 0 -2px 12px rgba(34, 87, 122, 0.08);
  padding: 18px 18px 14px 18px;
  z-index: 8888;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-size: 1rem;
  border-top: 1.5px solid #ffedc8;
  animation: fadeInBottom 0.4s;
}
@keyframes fadeInBottom {
  from {transform: translateY(100%); opacity: 0;}
  to {transform: translateY(0); opacity: 1;}
}
.cookie-banner .cookie-btn-group {
  display: flex;
  gap: 12px;
}
.cookie-btn, .cookie-banner .cta-btn {
  font-size: 1rem;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  padding: 7px 18px;
  border-radius: 22px;
  border: none;
  margin: 0 2px;
  cursor: pointer;
  transition: box-shadow 0.17s, background 0.19s, color 0.16s, border 0.15s;
}
.cookie-btn.accept {
  background: #22577A;
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #38A3A5;
  color: #fff;
}
.cookie-btn.reject {
  background: #DF4949;
  color: #fff;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #ca2020;
}
.cookie-btn.settings {
  background: transparent;
  color: #22577A;
  border: 1px solid #38A3A5;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #38A3A5;
  color: #fff;
}
/* Cookie Modal Popup */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(34, 87, 122, 0.75);
  animation: fadeInBg 0.3s;
}
@keyframes fadeInBg {
  from {opacity:0;}
  to {opacity:1;}
}
.cookie-modal-overlay.active {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cookie-modal {
  background: #fff;
  border-radius: 14px;
  max-width: 420px;
  width: 97vw;
  padding: 36px 20px 24px 20px;
  box-shadow: 0 8px 30px rgba(34,87,122,0.22);
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  position: relative;
  animation: fadeInCookieModal 0.32s;
}
@keyframes fadeInCookieModal {
  from {transform: translateY(40px); opacity:0;}
  to {transform: translateY(0); opacity:1;}
}
.cookie-modal h3 {
  font-size: 1.25rem;
  margin-bottom: 18px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
  font-size: 1.03rem;
}
.cookie-modal .toggle-switch {
  width: 36px;
  height: 20px;
  background: #DBEFFC;
  border-radius: 14px;
  position: relative;
  margin-left: 8px;
  flex-shrink: 0;
}
.cookie-modal .toggle-switch input {
  display: none;
}
.cookie-modal .toggle-switch .slider {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 14px;
  height: 14px;
  background: #22577A;
  border-radius: 50%;
  transition: left 0.18s, background 0.15s;
}
.cookie-modal .toggle-switch input:checked + .slider {
  left: 19px;
  background: #38A3A5;
}
.cookie-modal .essential {
  opacity: 0.8;
  font-style: italic;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 10px;
  right: 19px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: #22577A;
  cursor: pointer;
  transition: color .16s;
}
.cookie-modal .cookie-modal-close:hover {
  color: #ca2020;
}
.cookie-modal .cookie-btn-group {
  margin: 22px 0 0 0; display: flex; gap: 13px;
}

/* BUTTON & INTERACTIVE ELEMENT EFFECTS */
button, .cta-btn {
  outline: none;
  border: none;
  cursor: pointer;
}
button:focus, .cta-btn:focus {
  outline: 2px solid #38A3A5;
  outline-offset: 2px;
}
button::-moz-focus-inner {
  border: 0;
}

/* ANIMATIONS & MICROTNS */
.card, .feature-item, .testimonial-card, .team-member {
  transition: box-shadow 0.18s, border 0.13s, transform .18s;
}
.card:hover, .feature-item:hover, .testimonial-card:hover, .team-member:hover {
  transform: translateY(-2px) scale(1.015);
  box-shadow: 0 8px 28px rgba(56, 163, 165, 0.09);
  z-index: 2;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .container {
    max-width: 94vw;
  }
  .feature-grid, .team-list, footer .container {
    flex-wrap: wrap;
    gap: 18px;
  }
  .feature-item, .team-member {
    max-width: 99%;
  }
}
@media (max-width: 850px) {
  footer .container {
    flex-direction: column;
    gap: 22px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 8px;
    max-width: 99vw;
  }
  header .container {
    flex-direction: row;
    gap: 10px;
  }
  header nav {
    display: none;
  }
  .cta-btn {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .section {
    padding: 30px 6px;
  }
  .content-grid, .feature-grid, .team-list {
    flex-direction: column;
    gap: 16px;
  }
  .feature-item, .team-member {
    max-width: 97vw;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .testimonial-card {
    max-width: 99vw;
    padding: 16px 8px;
  }
}
@media (max-width: 540px) {
  h1 {
    font-size: 1.45rem;
  }
  h2 {
    font-size: 1.11rem;
  }
  .hero {
    padding: 34px 0 29px 0;
  }
  .footer-brand img {
    width: 38px;
  }
}

/* ACCESSIBLE/HIDDEN UTILITIES */
.visually-hidden {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* CLASSIC SPACING ENFORCEMENT */
.section, .card, .feature-item, .testimonial-card, .team-member {
  margin-bottom: 24px;
}
.content-grid, .card-container, .team-list, .feature-grid {
  gap: 20px;
}

/* ADDITIONAL UTIL CLASSES */
.muted {
  color: #8494a2;
  font-style: italic;
}

/* END OF STYLE FILE */