/* ============================== RESET & BASE ============================== */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-tap-highlight-color: transparent;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  outline: none;
}
body {
  font-family: 'Nunito', Arial, sans-serif;
  background: #181e22;
  color: #f2f4f5;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a {
  color: #EB744B;
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer;
  font-weight: 500;
}
a:hover, a:focus {
  color: #fea782;
  text-decoration: underline;
}
ul,ol {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
/* ============================== BRAND TYPOGRAPHY ============================== */
h1, h2, h3, h4, h5 {
  font-family: 'Quicksand', 'Nunito', Arial, sans-serif;
  color: #fff;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.015em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
h5 {
  font-size: 1rem;
}
p, li, blockquote {
  font-family: 'Nunito', Arial, sans-serif;
  font-size: 1rem;
  color: #ecf0f1;
  margin-bottom: 10px;
  font-weight: 400;
}
strong {
  font-weight: 700;
  color: #ffdbb3;
}
blockquote {
  border-left: 4px solid #C75329;
  padding-left: 18px;
  font-style: italic;
  color: #333;
  background: #fff;
  font-size: 1.1rem;
  margin-bottom: 12px;
}
.text-section ul {
  list-style: disc inside;
  margin-bottom: 18px;
}
.text-section ul li {
  margin-bottom: 8px;
  color: #fafcff;
}
/* ============================== CONTAINER & LAYOUT UTILS ============================== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  max-width: 850px;
  margin: 0 auto;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 600px) {
  .section {
    padding: 30px 7px;
    margin-bottom: 40px;
  }
}
/* ============================== FLEXBOX MANDATORY PATTERNS ============================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #23282c;
  border-radius: 11px;
  box-shadow: 0 1px 8px 0 rgba(37,40,51,0.11);
  margin-bottom: 20px;
  position: relative;
  border: 1.5px solid #30353b;
  transition: box-shadow 0.22s, border 0.18s;
}
.card:hover {
  box-shadow: 0 6px 24px 0 rgba(235,116,75,0.08);
  border-color: #EB744B;
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  color: #272C31;
  border-radius: 13px;
  box-shadow: 0 2px 14px 0 rgba(35,65,85,0.10);
  flex-direction: column;
  margin-bottom: 20px;
  border-left: 5px solid #EB744B;
  transition: transform 0.16s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 22px 0 rgba(35,65,85,0.13);
  transform: translateY(-4px) scale(1.015);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
/* ============================== HEADER & NAV ============================== */
header {
  background: #22282d;
  box-shadow: 0 1px 8px 0 rgba(37,40,51,0.09);
  border-bottom: 2.5px solid #353c43;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 18px 14px 18px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
header nav a {
  font-family: 'Quicksand', 'Nunito', Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.01em;
  color: #ececec;
  padding: 6px 0 4px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.18s, border-bottom 0.23s;
  position: relative;
  text-shadow: 0 1px 0 #2e3640;
}
header nav a:hover, header nav a:focus {
  color: #EB744B;
  border-bottom: 2px solid #EB744B;
  text-decoration: none;
}
header nav .btn-primary {
  margin-left: 18px;
  padding: 8px 22px;
  background: #EB744B;
  color: #fff;
  border-radius: 26px;
  font-weight: 700;
  border: none;
  font-size: 1rem;
  letter-spacing: 0.03em;
  box-shadow: 0 1px 4px rgba(235,116,75,0.09);
  transition: background 0.19s, color 0.13s;
  text-shadow: 0 1px 0 #bc4e20;
}
header nav .btn-primary:hover,
header nav .btn-primary:focus {
  background: #C75329;
  color: #fff2ef;
}
header img {
  height: 44px;
  width: auto;
  margin-right: 18px;
}
.mobile-menu-toggle {
  background: none;
  color: #EB744B;
  border: none;
  font-size: 2rem;
  display: none;
  cursor: pointer;
  margin-left: 18px;
  transition: color 0.18s;
}
.mobile-menu-toggle:focus {
  color: #fea782;
}
@media (max-width: 980px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
/* ============================== MOBILE MENU ============================== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #23282c;
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.5,1.7,.5,1.01);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #EB744B;
  border: none;
  font-size: 2rem;
  padding: 24px 18px 6px 18px;
  cursor: pointer;
  align-self: flex-end;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 24px 36px 12px 36px;
  width: 100vw;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Quicksand', Arial, sans-serif;
  font-size: 1.25rem;
  padding: 12px 0;
  /* adequate touch area */
  border-bottom: 2px solid transparent;
  transition: border-color 0.17s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #EB744B;
  border-bottom: 2px solid #EB744B;
  background: rgba(235,116,75,0.04);
}
@media (max-width: 600px) {
  .mobile-nav {
    padding: 20px 14px 10px 20px;
  }
}
body.mobile-menu-open {
  overflow: hidden;
}
/* ============================== HERO ============================== */
.hero {
  background: linear-gradient(120deg,#222B31 0 80%, #21292f 81% 100%);
  padding: 64px 0 46px 0;
  border-bottom: 3.5px solid #234155;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.hero h1 {
  color: #fff;
  text-shadow: 0 2px 10px #0a181b44,0 1px 0 #1a2325;
  letter-spacing: 0.01em;
  font-size: 2.2rem;
}
.hero p {
  max-width: 550px;
  margin-bottom: 30px;
  color: #e3e9ee;
  font-size: 1.08rem;
}
@media (max-width: 700px) {
  .hero {
    padding: 36px 0 22px 0;
  }
  .hero h1 {
    font-size: 1.5rem;
  }
}
/* ============================== FEATURES & CARDS ============================== */
.features, .feature-grid, .service-list, .team-list, .activity-list, .benefit-list, .tips-list, .blog-preview-list, .program-grid, .feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-grid li, .service-list li, .program-grid li, .activity-list li, .benefit-list li, .tips-list li, .blog-preview-list li, .team-list li, .feature-list li {
  background: #23282c;
  border-radius: 11px;
  box-shadow: 0 1px 8px 0 rgba(37,40,51,0.08);
  padding: 28px 22px 20px 22px;
  border: 1.5px solid #2e343b;
  transition: box-shadow 0.17s, border 0.14s, transform 0.14s;
  flex: 1 1 210px;
  min-width: 220px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.feature-grid li:hover, .service-list li:hover, .program-grid li:hover, .activity-list li:hover, .benefit-list li:hover, .tips-list li:hover, .blog-preview-list li:hover, .team-list li:hover, .feature-list li:hover {
  border-color: #EB744B;
  box-shadow: 0 5px 26px 0 rgba(235,116,75,0.10);
  transform: translateY(-4px) scale(1.02);
}
.feature-grid img, .activity-list img, .benefit-list img, .tips-list img, .team-list img, .feature-list img {
  width: 38px;
  height: 38px;
  margin-bottom: 8px;
  filter: grayscale(25%);
  opacity: 0.92;
}
.feature-grid h3, .service-list h3, .activity-list strong, .tips-list strong, .program-grid h3 {
  color: #EB744B;
  font-size: 1.15rem;
}
.feature-grid p, .service-list p, .activity-list p, .tips-list p, .program-grid p, .feature-list p, .team-list li {
  color: #e2e6e8;
  font-size: 1rem;
}
@media (max-width: 880px) {
  .feature-grid li, .service-list li, .program-grid li, .activity-list li, .benefit-list li, .tips-list li, .blog-preview-list li, .feature-list li {
    min-width: 170px;
    font-size: 0.96rem;
    padding: 20px 13px 16px 13px;
  }
}
@media (max-width: 600px) {
  .feature-grid, .service-list, .program-grid, .activity-list, .benefit-list, .tips-list, .feature-list, .team-list, .blog-preview-list {
    gap: 14px;
  }
  .feature-grid li, .service-list li, .program-grid li, .activity-list li, .benefit-list li, .tips-list li, .blog-preview-list li, .feature-list li {    
    min-width: 100%;
    padding: 14px 3px 13px 12px;
  }
}
/* ============================== CTA SECTION ============================== */
.cta {
  background: linear-gradient(90deg,#23282c 0 60%,#2b3137 100%);
  border-radius: 22px;
  box-shadow: 0 4px 22px 0 rgba(35,65,85,0.06);
  padding: 38px 28px;
  margin: 40px 0 28px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.cta h2 {
  color: #EB744B;
  font-size: 2rem;
  margin-bottom: 8px;
}
.cta p {
  color: #e2eaff;
}
@media (max-width: 700px) {
  .cta {
    padding: 18px 8px;
  }
}
/* ============================== BUTTONS ============================== */
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 26px;
  font-family: 'Quicksand', 'Nunito', Arial, sans-serif;
  font-size: 1.06rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  transition: background 0.18s, color 0.13s, transform 0.10s;
  text-align: center;
  box-shadow: 0 2px 14px 0 rgba(235,116,75,0.11);
  margin-top: 9px;
  margin-bottom: 7px;
  background: #EB744B;
  color: #fff;
  text-shadow: 0 1px 0 #BC4E20;
}
.btn-primary:hover, .btn-primary:focus {
  background: #C75329;
  color: #fff4ee;
  transform: scale(1.03);
}
.btn-secondary {
  background: #D9E8E1;
  color: #234155;
  box-shadow: 0 1px 6px rgba(40,40,50,0.10);
  text-shadow: none;
  margin-left: 0;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #234155;
  color: #fff;
}
/* ============================== FOOTER ============================== */
footer {
  background: #21262a;
  border-top: 2px solid #2c3137;
  margin-top: 48px;
  color: #f5f7fa;
  font-size: 1rem;
  padding: 38px 0 20px 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 36px;
  align-items: flex-start;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
footer nav a {
  color: #EB744B;
  font-size: 1rem;
  font-weight: 500;
}
footer nav a:hover {
  color: #fea782;
}
footer img {
  width: 54px;
  height: auto;
  margin-bottom: 13px;
}
footer div {
  margin-bottom: 7px;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}
@media (max-width: 600px) {
  footer {
    padding: 22px 0 12px 0;
    font-size: 0.95rem;
  }
}
/* ============================== CARDS GENERAL (for grid/section cards) ==============================*/
.card {
  min-width: 210px;
  flex: 1 1 235px;
  padding: 28px 20px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
.card h3 {
  color: #EB744B;
  font-size: 1.1rem;
  margin-bottom: 7px;
}
.card img {
  width: 38px;
  height: 38px;
}
/* ============================== MAP PLACEHOLDER ==============================*/
.map-placeholder {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 22px;
  background: #23282c;
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 22px;
}
.map-placeholder img {
  width: 56px;
  height: 56px;
}
@media (max-width: 700px) {
  .map-placeholder {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
  }
}
/* ============================== HIGHLIGHTS/BADGES ==============================*/
.highlight {
  background: #21262a;
  color: #EB744B;
  font-weight: 600;
  padding: 13px 18px;
  border-radius: 9px;
  margin-top: 17px;
  margin-bottom: 13px;
  font-size: 1.08rem;
  border-left: 4px solid #EB744B;
}
/* ============================== TEAM & VALUES GRIDS ==============================*/
.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 32px 0 18px 0;
}
.values-grid div {
  background: #23282c;
  border-radius: 10px;
  padding: 18px 22px 10px 22px;
  min-width: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1.5px solid #29313b;
}
.values-grid img {
  width: 29px;
  height: 29px;
  margin-bottom: 7px;
}
.team-list {
  margin: 22px 0 18px 0;
  flex-direction: column;
  gap: 13px;
}
.team-list li {
  display: flex;
  flex-direction: column;
  line-height: 1.5;
}
/* ============================== CONTACT INFO BLOCKS ==============================*/
.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 33px;
  justify-content: flex-start;
}
.info-block {
  background: #23282c;
  border-radius: 8px;
  padding: 17px 20px 14px 20px;
  min-width: 170px;
  align-items: flex-start;
  color: #EB744B;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 7px;
  box-shadow: 0 2px 11px 0 rgba(50,64,77,0.10);
}
.info-block img {
  width: 25px;
  height: 25px;
  margin-bottom: 6px;
}
.contact-info a {
  color: #EB744B;
  font-weight: 600;
}
.contact-info a:hover {
  color: #fea782;
}
@media (max-width: 700px) {
  .contact-info {
    flex-direction: column;
    gap: 14px;
  }
}
/* ============================== RESPONSIVE ADJUSTMENTS ==============================*/
@media (max-width: 980px) {
  .container {
    padding: 0 7px;
  }
}
@media (max-width: 700px) {
  h1 { font-size: 1.43rem; }
  h2 { font-size: 1.08rem; }
  .content-wrapper {
    padding: 0 7px;
  }
}
@media (max-width: 900px) {
  header .container {
    flex-direction: row;
  }
}
/* ============================== COOKIE BANNER ==============================*/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3500;
  background: #23282c;
  color: #fff;
  border-top: 3px solid #EB744B;
  padding: 19px 24px 19px 19px;
  box-shadow: 0 -3px 26px 0 rgba(35,41,51,0.12);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100vw;
  animation: slideUpBanner 0.32s cubic-bezier(.8,1.2,.3,.9);
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
    font-size: 0.97rem;
    padding: 18px 8px 16px 8px;
  }
}
@keyframes slideUpBanner {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 13px;
}
.cookie-banner .banner-btn,
.cookie-banner button {
  padding: 9px 22px;
  border-radius: 17px;
  font-size: 1rem;
  font-family: 'Quicksand',Arial,sans-serif;
  border: none;
  cursor: pointer;
  font-weight: 700;
  transition: background 0.15s, color 0.13s;
}
.cookie-banner .accept-btn { background: #EB744B; color: #fff; }
.cookie-banner .accept-btn:hover { background: #C75329; }
.cookie-banner .reject-btn { background: #fff; color: #22282d; }
.cookie-banner .reject-btn:hover { background: #d9dee3; }
.cookie-banner .settings-btn { background: #234155; color: #fff; }
.cookie-banner .settings-btn:hover { background: #183042; }
/* ============================== COOKIE MODAL ==============================*/
.cookie-modal-overlay {
  position: fixed;
  z-index: 3700;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(20, 28, 37, 0.73);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  opacity: 1;
  animation: fadeIn 0.18s;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #222;
  border-radius: 13px;
  box-shadow: 0 4px 41px 0 rgba(35,65,85,0.18);
  max-width: 360px;
  width: 97vw;
  padding: 34px 21px 22px 21px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  animation: scaleIn 0.27s cubic-bezier(.5,1.2,.5,1.01);
}
@keyframes scaleIn {
  from { transform: scale(0.92); opacity: 0.5; }
  to   { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  color: #EB744B;
  font-size: 1.28rem;
  margin-bottom: 4px;
}
.cookie-modal-close {
  position: absolute;
  top: 11px;
  right: 13px;
  background: none;
  border: none;
  color: #EB744B;
  font-size: 1.4rem;
  cursor: pointer;
  padding: 3px 6px;
  transition: color 0.17s;
}
.cookie-modal-close:hover { color: #C75329; }
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 19px;
  margin: 10px 0 0 0;
}
.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0 7px 0;
  border-bottom: 1px solid #d4dbe0;
}
.cookie-category .toggle-switch {
  position: relative;
  width: 40px;
  height: 22px;
}
.toggle-switch input[type="checkbox"] {
  opacity: 0;
  width: 40px;
  height: 22px;
  margin: 0;
}
.toggle-switch label {
  position: absolute;
  left: 0; top: 0;
  width: 40px;
  height: 22px;
  background: #d4dbe0;
  border-radius: 13px;
  cursor: pointer;
  transition: background 0.15s;
}
.toggle-switch input[type="checkbox"]:checked + label {
  background: #EB744B;
}
.toggle-switch label::after {
  content: '';
  display: block;
  position: absolute;
  left: 2px; top: 2px;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.18s;
  box-shadow: 0 1px 3px rgba(60,60,60,0.10);
}
.toggle-switch input[type="checkbox"]:checked + label::after {
  transform: translateX(18px);
}
.cookie-category.essential {
  opacity: 0.92;
}
/* ============================== THANK YOU PAGE ==============================*/
.thanks {
  padding-top: 60px;
  display: flex;
  justify-content: center;
}
.thanks h1 {
  color: #EB744B;
}
.thanks a.btn-primary {
  margin-top: 20px;
}
/* ============================== MISC UTILITIES ==============================*/
.mt-20 { margin-top: 20px; }
.mt-32 { margin-top: 32px; }
.mb-20 { margin-bottom: 20px; }
.mb-32 { margin-bottom: 32px; }
.gap-20 { gap: 20px; }
/* ============================== PRINT ==============================*/
@media print {
  header, .mobile-menu, .cookie-banner, .cookie-modal-overlay, footer {
    display: none !important;
  }
  body {
    background: #fff;
    color: #222;
  }
}
