/* =========================================================
   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,
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;
}
html {
  box-sizing: border-box;
}
body {
  background: #F8F9F9;
  color: #183153;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.66;
  min-height: 100vh;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #F2A34D;
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover {
  color: #183153;
  text-decoration: none;
}
ul, ol {
  padding-left: 24px;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
@media (max-width: 768px) {
  section {
    padding: 28px 8px;
    margin-bottom: 36px;
  }
}

/* =========================================================
   BRAND & COLOR VARIABLES (with fallbacks for older browsers)
   ========================================================= */
:root {
  --color-primary: #183153;
  --color-secondary: #F2A34D;
  --color-accent: #F8F9F9;
  --color-danger: #DF3D4B;
  --color-success: #49C991;
}

/* =========================================================
   TYPOGRAPHY & ARTISTIC FONTS
   ========================================================= */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
h1, h2, h3, h4, .logo {  
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--color-primary);
}
h1 {
  font-size: 2.8rem;
  margin-bottom: 18px;
  line-height: 1.15;
  text-shadow: 1px 2px 0 #F2A34D20;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}
p, ul, li, blockquote {
  font-family: 'Roboto', Arial, sans-serif;
}
p, li {
  font-size: 1rem;
  margin-bottom: 10px;
}
blockquote {
  font-style: italic;
  color: var(--color-primary);
  font-size: 1.08rem;
  border-left: 5px solid var(--color-secondary);
  padding-left: 18px;
  margin-bottom: 10px;
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
}

/* Creative Artistic flourishes for headings */
h2::after {
  content: '';
  display: block;
  width: 45px;
  height: 3px;
  background: var(--color-secondary);
  border-radius: 2px;
  margin-top: 7px;
  margin-left: 1px;
  opacity: 0.8;
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
}

/* =========================================================
   CONTAINER & LAYOUT STRUCTURE
   ========================================================= */
.container {
  max-width: 1140px;
  padding-left: 18px;
  padding-right: 18px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 24px;
}
.feature-grid > div {
  background: #FFF;
  border-radius: 22px;
  box-shadow: 0 5px 32px #18315312;
  padding: 32px 28px 24px 28px;
  max-width: 270px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  box-sizing: border-box;
  position: relative;
  margin-bottom: 20px;
  transition: background 0.22s, box-shadow 0.22s, transform 0.16s;
}
.feature-grid > div:hover {
  background: var(--color-secondary);
  box-shadow: 0 2px 32px #18315320;
  color: #fff;
  transform: translateY(-5px) scale(1.025) rotate(-0.7deg);
}
.feature-grid img {
  width: 44px;
  height: 44px;
  margin-bottom: 10px;
}

.text-section {
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 5px 24px #18315310;
  padding: 25px 20px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.19s cubic-bezier(.61,.13,.79,.53), box-shadow 0.17s;
}
.card:hover {
  transform: translateY(-6px) scale(1.03) rotate(-1deg);
  box-shadow: 0 8px 36px #F2A34D1F;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fffdf7;
  border-radius: 18px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 24px #1831531a;
  color: #222;
  max-width: 700px;
}
.testimonial-author {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.07rem;
  color: var(--color-secondary);
  margin-left: 10px;
  font-weight: 700;
}

@media (max-width: 900px) {
  .feature-grid {
    gap: 22px;
    justify-content: flex-start;
  }
  .card-container, .content-grid {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .feature-grid, .card-container, .content-grid {
    flex-direction: column;
    align-items: stretch;
  }
}

/* =========================================================
   HEADER, NAVIGATION, BURGER MENU
   ========================================================= */
header {
  background: #fff;
  box-shadow: 0 2px 22px #18315312;
  position: relative;
  z-index: 40;
  padding-top: 2px;
}
header .container {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  padding-top: 19px;
  padding-bottom: 13px;
}
.logo img {
  height: 52px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.07rem;
  color: var(--color-primary);
  opacity: 0.94;
  letter-spacing: 0.5px;
  border-radius: 9px;
  padding: 6px 12px;
  transition: background 0.16s, color 0.16s, box-shadow 0.12s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-secondary);
  color: #fff;
  box-shadow: 0 2px 7px #F2A34D19;
  text-decoration: none;
}

.btn-primary, .btn-secondary {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.03rem;
  border: none;
  border-radius: 24px;
  box-shadow: 0 1px 7px #18315314;
  padding: 12px 35px;
  margin-left: 10px;
  letter-spacing: 0.7px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.13s, box-shadow 0.16s;
  text-decoration: none;
  outline: none;
  text-align: center;
}
.btn-primary {
  color: #fff;
  background: var(--color-primary);
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
  transform: scale(1.06) translateY(-2px) rotate(-2deg);
}
.btn-secondary {
  color: var(--color-primary);
  background: var(--color-secondary);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #fff;
  color: var(--color-secondary);
  border: 1.5px solid var(--color-secondary);
  transform: scale(1.055) rotate(1deg);
}

/* MOBILE HEADER */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 22px;
  top: 22px;
  z-index: 100;
  width: 46px;
  height: 46px;
  font-size: 2rem;
  color: var(--color-primary);
  background: #F8F9F9;
  border: none;
  border-radius: 50%;
  box-shadow: 0 2px 10px #18315310;
  cursor: pointer;
  transition: background .15s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: var(--color-secondary);
  color: #fff;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 6px 64px #18315331;
  z-index: 2000;
  transform: translateX(-100vw);
  opacity: 0;
  transition: transform 0.49s cubic-bezier(.68,1.03,.01,.96), opacity 0.29s ease;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.1rem;
  background: #F2A34D;
  color: #fff;
  border: none;
  margin: 17px 25px 0 0;
  border-radius: 50%;
  height: 46px;
  width: 46px;
  cursor: pointer;
  transition: background .15s;
  box-shadow: 0 1px 10px #F2A34D33;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #183153;
  color: #F2A34D;
}
.mobile-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 23px;
  align-items: center;
  justify-content: center;
  margin: 30px 0;
}
.mobile-nav a {
  font-size: 1.42rem;
  font-family: 'Montserrat', sans-serif;
  color: #183153;
  padding: 14px 24px;
  border-radius: 20px;
  transition: background .17s, color .17s;
  text-decoration: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-secondary);
  color: #fff;
}

@media (max-width: 992px) {
  .main-nav {
    gap: 10px;
    font-size: 15px;  
  }
}
@media (max-width: 850px) {
  header .container {
    gap: 8px;
  }
  .main-nav {
    gap: 4px;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    gap: 0;
    padding-top: 11px;
    padding-bottom: 7px;
  }
  .main-nav, .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 500px) {
  .logo img {
    height: 34px;
  }
}

/* =========================================================
   HERO SECTION & ARTISTIC EFFECTS
   ========================================================= */
.hero {
  background: linear-gradient(-8deg, #F2A34D 0% 64%, #F8F9F9 100%);
  padding: 66px 0 57px 0;
}
.hero .container {
  align-items: center;
  justify-content: center;
  min-height: 250px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 17px;
  background: rgba(255,255,255,0.95);
  border-radius: 22px;
  padding: 38px 30px;
  box-shadow: 0 7px 36px #18315314;
}
.hero .subheadline {
  font-size: 1.14rem;
  color: var(--color-primary);
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .hero { padding: 35px 0 22px 0; }
  .hero .content-wrapper { padding: 20px 10px; }
}

/* =========================================================
   LISTS, ICONS, & INFO
   ========================================================= */
.core-values-list, .contact-info-list, .contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.core-values-list li,
.contact-info-list li,
.contact-details-list li {
  list-style-type: none;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 1rem;
}
.core-values-list li:before, .contact-info-list li:before,
.contact-details-list li:before {
  content: '';
  display: none;
}
.core-values-list li img,
.contact-info-list li img,
.contact-details-list li img {
  width: 24px;
  height: 24px;
  margin-right: 5px;
}

.map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  margin-top: 15px;
  padding: 13px 0 0 0;
}
.map-placeholder span {
  color: #183153;
  font-size: 0.99rem;
}

/* =========================================================
   FOOTER
   ========================================================= */
footer {
  background: #183153;
  color: #fff;
  font-size: 1rem;
  padding: 29px 0 19px 0;
  margin-top: 30px;
  position: relative;
  z-index: 10;
}
footer .container {
  align-items: center;
  gap: 11px;
}
.footer-menu {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.footer-menu a {
  color: var(--color-secondary);
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 1.01rem;
  border-radius: 6px;
  padding: 4px 10px;
  transition: background .16s, color .13s;
}
.footer-menu a:hover, .footer-menu a:focus {
  background: #fff;
  color: var(--color-primary);
}
.footer-contact {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  justify-content: flex-start;
  opacity: 0.88;
  flex-wrap: wrap;
  font-size: 0.93rem;
}
@media (max-width: 768px) {
  .footer-menu {
    flex-direction: column;
    gap: 7px;
    align-items: flex-start;
  }
  .footer-contact {
    flex-direction: column;
    gap: 5px;
    align-items: flex-start;
  }
}

/* =========================================================
   COOKIE CONSENT BANNER & MODAL
   ========================================================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fff;
  color: #183153;
  z-index: 3000;
  box-shadow: 0 -2px 22px #F2A34D60;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 30px;
  padding: 25px 26px;
  animation: fadeinbanner 0.90s cubic-bezier(.29,.45,.61,.99);
}
@keyframes fadeinbanner { from { opacity:0; transform: translateY(90px); } to { opacity:1; transform: none; } }
.cookie-banner__text {
  font-size: 1.01rem;
  max-width: 700px;
  font-family: 'Roboto', Arial, sans-serif;
  margin-right: 17px;
}
.cookie-banner__actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
  margin-top: 2px;
}
.cookie-btn {
  font-family: 'Montserrat', sans-serif;
  padding: 11px 25px;
  border-radius: 20px;
  border: none;
  font-size: 1.01rem;
  font-weight: 700;
  background: #F2A34D;
  color: #fff;
  margin-right: 8px;
  cursor: pointer;
  box-shadow: 0 1px 7px #18315312;
  transition: background .19s, color .19s, transform .13s;
}
.cookie-btn.cookie-btn--accept {
  background: var(--color-secondary);
  color: #fff;
}
.cookie-btn.cookie-btn--accept:hover {
  background: var(--color-success);
  color: #fff;
  transform: scale(1.05) rotate(-1deg);
}
.cookie-btn.cookie-btn--reject {
  background: #df3d4b;
  color: #fff;
}
.cookie-btn.cookie-btn--reject:hover {
  background: #fff;
  color: #df3d4b;
  border: 2px solid #df3d4b;
  transform: scale(1.04) rotate(2deg);
}
.cookie-btn.cookie-btn--settings {
  background: #fff;
  color: var(--color-secondary);
  border: 1.5px solid var(--color-secondary);
}
.cookie-btn.cookie-btn--settings:hover {
  background: var(--color-primary);
  color: #fff;
}

@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 15px 8px;
  }
  .cookie-banner__actions {
    margin-right: 0;
    gap: 9px;
    margin-top: 9px;
  }
}

.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) scale(1);
  min-width: 320px;
  max-width: 400px;
  background: #fff;
  color: #183153;
  border-radius: 20px;
  box-shadow: 0 8px 48px #18315361;
  z-index: 4000;
  padding: 36px 32px 28px 32px;
  transition: opacity 0.22s, transform 0.22s;
  animation: popinmodal .7s cubic-bezier(.57,1.04,.93,.99);
  display: none;
}
.cookie-modal.open {
  display: block;
}
@keyframes popinmodal { from { opacity:0; transform: translate(-50%,-10%) scale(.8);} to { opacity:1; transform: translate(-50%,-50%) scale(1); } }
.cookie-modal h2 {
  font-size: 1.32rem;
  margin-bottom: 11px;
}
.cookie-modal__categories {
  margin-bottom: 18px;
}
.cookie-modal__category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.cookie-toggle {
  width: 34px;
  height: 20px;
  appearance: none;
  background: #ddd;
  border-radius: 12px;
  outline: none;
  position: relative;
  transition: background 0.18s;
  cursor: pointer;
}
.cookie-toggle:checked {
  background: #F2A34D;
}
.cookie-toggle::before {
  content: '';
  position: absolute;
  top: 2.5px;
  left: 3px;
  width: 15px;
  height: 15px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.15s;
  box-shadow: 0 1px 4px #18315314;
}
.cookie-toggle:checked::before {
  left: 15px;
}
.cookie-modal__actions {
  margin-top: 13px;
  display: flex;
  flex-direction: row;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal__close {
  position: absolute;
  right: 15px;
  top: 13px;
  background: none;
  border: none;
  color: #F2A34D;
  font-size: 1.5rem;
  cursor: pointer;
}
.cookie-modal__close:focus, .cookie-modal__close:hover {
  color: #183153;
}

@media (max-width: 520px) {
  .cookie-modal {
    min-width: 90vw;
    padding: 22px 7vw 15px 7vw;
  }
}

/* Overlay for modal */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 3900;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #18315366;
}
.cookie-modal.open ~ .cookie-modal-overlay {
  display: block;
}

/* =========================================================
   ARTISTIC & CREATIVE ADD-ONS
   ========================================================= */
/* Playful underline for active nav-item */
.main-nav a.active, .mobile-nav a.active {
  text-decoration: underline;
  color: var(--color-secondary);
  font-weight: 700;
  background: #fff4ed;
}

/* Fun artistic shapes (optional, decorative) */
.feature-grid > div::before {
  content: '';
  position: absolute;
  right: 18px;
  top: 17px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #F2A34D33;
  z-index: 1;
  pointer-events: none;
}
/* Creative colored stroke under section by default */
section:not(.hero) > .container > h2 {
  position: relative;
  padding-bottom: 8px;
  margin-bottom: 18px;
  display: inline-block;
  background: linear-gradient(120deg, #F2A34D22 40%, #fff 100%);
}

/* Feature Items */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 16px;
}

/* Misc Helpers */
.mt-2   { margin-top: 2px; }
.mt-10  { margin-top: 10px; }
.mt-16  { margin-top: 16px; }
.mb-8   { margin-bottom: 8px; }
.mb-16  { margin-bottom: 16px; }
.gap-8  { gap: 8px; }
.gap-14 { gap: 14px; }

/* Layout for .section (already handled globally on section) */

/* =========================================================
   FORMS & INPUTS (for potential expansion)
   ========================================================= */
input[type="text"], input[type="email"], textarea {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.02rem;
  background: #fff;
  color: #183153;
  border: 1px solid #F2A34D80;
  border-radius: 10px;
  padding: 11px 18px;
  margin-bottom: 14px;
  outline: none;
  box-shadow: 0 1px 4px #F2A34D11;
  transition: border 0.16s, box-shadow 0.19s;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  border-color: #F2A34D;
  box-shadow: 0 2px 12px #F2A34D19;
}
label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.99rem;
  font-weight: 600;
  color: #183153;
  margin-bottom: 6px;
  display: block;
}

/* =========================================================
   MEDIA QUERIES FOR RESPONSIVENESS
   ========================================================= */
@media (max-width: 600px) {
  h1 { font-size: 1.25rem; }
  h2 { font-size: 1.07rem; }
  .feature-grid > div, .card {
    min-width: unset;
    max-width: unset;
    padding: 19px 12px 15px 15px;
  }
  .testimonial-card {
    max-width: 98%;
    padding: 14px 9px;
    border-radius: 12px;
    font-size: 0.95rem;
  }
  .cookie-banner__text {
    font-size: 0.95rem;
  }
}

/* =========================================================
   HIGHLIGHTED LISTS
   ========================================================= */
ul li strong,
ol li strong {
  color: var(--color-secondary);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 0.2px;
}

/* =========================================================
   ANIMATION CLASSES
   ========================================================= */
.fade-in {
  opacity: 0;
  animation: fadeInInit 1s forwards;
}
@keyframes fadeInInit {
  from { opacity:0; transform: translateY(30px); }
  to { opacity:1; transform: none; }
}

/* =========================================================
   MOBILE ACCESSIBILITY - INCREASE TAP SIZE
   ========================================================= */
a, button {
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(242,163,77,0.2);
}

/* =========================================================
   Z-INDEX LAYERING
   ========================================================= */
header { z-index: 60; }
.mobile-menu { z-index: 2000; }
footer { z-index: 10; }
.cookie-banner { z-index: 3000; }
.cookie-modal { z-index: 4000; }

/* =============== END OF CSS =============== */
