/* -------------------------------------------------------------
   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, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  font-family: 'Roboto', Arial, sans-serif;
  background: #F7F4EE;
  color: #1E3D59;
  min-height: 100vh;
  font-size: 16px;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
ul, ol {
  list-style: none;
}
a {
  color: #A4266C;
  text-decoration: none;
  transition: color 0.15s;
}
a:focus, a:hover {
  color: #FF0080;
  outline: none;
}
button {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  transition: background .2s, color .2s, box-shadow .2s;
}
strong {
  font-weight: 700;
}

/* -------------------------------------------------------------
   LAYOUT UTILITIES & CONTAINERS
------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(164,38,108, .11);
}

/* -------------------------------------------------------------
   TYPOGRAPHY (VIBRANT & ENERGETIC)
------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1E3D59;
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 1.13;
  margin-bottom: 12px;
}
h1 {
  font-size: 2.4rem;
  color: #A4266C;
  text-shadow: 0 4px 16px #FDC6DC40;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  color: #1E3D59;
  margin-top: 12px;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.35rem;
  color: #1E3D59;
  margin-bottom: 8px;
}
h4 {
  font-size: 1.08rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #1E3D59;
}
.text-section, .text-image-section {
  font-family: 'Roboto', Arial, sans-serif;
  color: #303956;
}
.text-section h3, .text-section h2 {
  margin-top: 18px;
}
blockquote {
  font-style: italic;
  color: #1E3D59;
  background: #F7F4EE;
  border-left: 4px solid #A4266C;
  padding: 18px 24px;
  border-radius: 12px;
  margin-bottom: 8px;
}

/* -------------------------------------------------------------
   HEADER / NAVIGATION (VIBRANT, BOLD)
------------------------------------------------------------- */
header {
  background: #fff;
  box-shadow: 0 1px 16px rgba(164,38,108, .08);
  width: 100%;
  z-index: 99;
  position: sticky;
  top: 0;
}
.logo img {
  height: 46px;
  width: auto;
  margin-right: 24px;
  transition: transform 0.2s;
}
.logo img:hover {
  transform: scale(1.07) rotate(-2deg);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  padding: 6px 8px;
  color: #1E3D59;
  border-radius: 6px;
  transition: background .18s, color .18s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  color: #fff;
  background: #A4266C;
}
.mobile-menu-toggle {
  display: none;
  background: #A4266C;
  color: #fff;
  font-size: 2rem;
  padding: 10px 16px;
  border-radius: 6px;
  margin-left: 16px;
  z-index: 300;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 12px #A4266C22;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #1E3D59;
  color: #fff;
}

/* Mobile menu overlay */
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #A4266C;
  z-index: 400;
  padding: 24px 0 0 0;
  transform: translateX(-100%);
  transition: transform 0.33s cubic-bezier(.77,0,.18,1);
  box-shadow: 4px 0 32px #A4266C33;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 0 24px 24px 0;
  background: none;
  font-size: 2.2rem;
  color: #fff;
  border: none;
  padding: 2px 10px;
  border-radius: 50%;
  transition: background 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #fff;
  color: #A4266C;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-left: 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 8px 2px 8px 2px;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  color: #FFEF49;
  background: #fff1;
}

@media (max-width: 990px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 991px) {
  .mobile-menu {
    display: none !important;
  }
}

/* -------------------------------------------------------------
   HERO/CTA, BUTTONS, PRIMARY INTERACTIONS
------------------------------------------------------------- */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.18rem;
  padding: 14px 32px;
  border-radius: 40px;
  background: #1E3D59;
  color: #fff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 12px #1E3D5912;
  transition: background 0.16s, color 0.16s, box-shadow 0.18s, transform 0.16s;
  margin-top: 10px;
}
.button.button-primary {
  background: #A4266C;
  color: #fff;
  box-shadow: 0 4px 18px #A4266C33;
}
.button:hover, .button:focus {
  background: #FF0080;
  color: #fff;
  transform: scale(1.04);
  box-shadow: 0 4px 24px #A4266C33;
}

/* -------------------------------------------------------------
   FEATURES, SERVICES, & CARD LAYOUTS (FLEXBOX ONLY)
------------------------------------------------------------- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 12px;
  margin-bottom: 16px;
}
.feature-grid li {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 22px #1E3D5947;
  padding: 24px 22px 20px;
  flex: 1 1 260px;
  min-width: 210px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow 0.17s, transform 0.14s;
}
.feature-grid li:hover {
  box-shadow: 0 8px 40px #d01c8647;
  transform: translateY(-4px) scale(1.02) rotate(-1deg);
}
.feature-grid img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 6px;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 20px 0 24px 0;
}
.service-card {
  background: #FFF7FA;
  border-radius: 18px;
  box-shadow: 0 2px 10px #A4266C13;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 300px;
  padding: 24px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 20px;
  border-left: 6px solid #A4266C;
  transition: box-shadow 0.16s, border-color 0.15s, transform 0.15s;
}
.service-card h3 {
  color: #1E3D59;
  font-size: 1.22rem;
}
.service-card span {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #A4266C;
  font-weight: 700;
  font-size: 1.08rem;
}
.service-card:hover, .service-card:focus {
  box-shadow: 0 8px 28px #A4266C3A;
  border-color: #FF0080;
  transform: translateY(-3px) scale(1.03);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 20px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-item {
  background: #F7F4EE;
  border-radius: 12px;
  box-shadow: 0 2px 7px #1E3D5912;
  padding: 18px 22px 16px 18px;
  margin-bottom: 8px;
}
.faq-item h3 {
  color: #A4266C;
  margin-bottom: 4px;
  font-size: 1.15rem;
}

/* -------------------------------------------------------------
   TESTIMONIALS (DISTINCT CARD STYLE)
------------------------------------------------------------- */
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 4px 24px #A4266C22;
  min-width: 260px;
  max-width: 460px;
  flex: 1 1 260px;
  flex-direction: column;
  margin-bottom: 20px;
  border-left: 5px solid #FF0080;
  position: relative;
  z-index: 10;
  transition: box-shadow 0.17s, transform 0.13s, border-color 0.13s;
}
.testimonial-card blockquote {
  background: transparent;
  border-left: none;
  padding: 0;
  color: #1E3D59;
  font-size: 1.11rem;
  line-height: 1.5;
}
.testimonial-card .testimonial-author {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #A4266C;
  font-weight: 700;
  align-self: flex-end;
}
.testimonial-card .stars {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 8px;
}
.testimonial-card .stars img {
  width: 18px;
  height: 18px;
}
.testimonial-card:hover {
  box-shadow: 0 10px 40px #FF008033;
  border-color: #FF0080;
  transform: scale(1.03) translateY(-4px);
}

/* -------------------------------------------------------------
   TEXT-IMAGE AND FLEXIBLE LAYOUT SECTIONS
------------------------------------------------------------- */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .feature-grid, .testimonial-list, .service-cards {
    flex-direction: column;
    gap: 20px;
  }
}

/* -------------------------------------------------------------
   FOOTER
------------------------------------------------------------- */
footer {
  background: #1E3D59;
  color: #fff;
  width: 100%;
  margin-top: 40px;
  font-size: 1rem;
  box-shadow: 0 -2px 24px #1E3D5932;
}
footer .container {
  padding: 0 18px;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  padding: 38px 0 28px 0;
  flex-direction: row;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  transition: color .13s;
}
.footer-nav a:hover {
  color: #FF0080;
}
.footer-contact {
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footer-contact h3 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 3px;
}
.footer-contact a { color: #FFEF49; }
.footer-contact p {
  display: flex; 
  align-items: center;
  gap: 7px;
}
.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 6px;
}
.footer-legal a {
  color: #fff;
  font-size: 0.98rem;
  text-decoration: underline;
  transition: color .14s;
}
.footer-legal a:hover {
  color: #FF0080;
}
.footer-social {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 17px;
  margin-top: 6px;
}
.footer-social img {
  width: 24px;
  height: 24px;
  transition: transform .16s;
  filter: saturate(1.4);
}
.footer-social a:hover img{
  transform: scale(1.2) rotate(-5deg);
  filter: saturate(3.2);
}
@media (max-width: 900px) {
  .footer-content {
    flex-direction: column;
    gap: 24px;
  }
  .footer-social {
    margin: 12px 0 0 0;
  }
}

/* -------------------------------------------------------------
   COOKIE BANNER & MODAL
------------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1000;
  width: 100vw;
  background: #1E3D59;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px 16px 22px;
  box-shadow: 0 -2px 36px #1E3D5940;
  gap: 20px;
  font-size: 1rem;
  animation: slideUp .45s cubic-bezier(0.75,0,.25,1);
}
.cookie-banner .cookie-text {
  flex: 1 1 380px;
  font-size: 1rem;
  color: #fff;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
}
.cookie-banner .cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 32px;
  border: none;
  font-size: 1rem;
  padding: 10px 22px;
  font-weight: bold;
  cursor: pointer;
  transition: background .17s, color .17s, transform .14s;
  background: #A4266C;
  color: #fff;
}
.cookie-banner .cookie-btn.accept {
  background: #FF0080;
  color: #fff;
}
.cookie-banner .cookie-btn.settings {
  background: #fff;
  color: #1E3D59;
}
.cookie-banner .cookie-btn.reject {
  background: #1E3D59;
  color: #FFEF49;
  border: 2px solid #FFEF49;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  transform: scale(1.06);
  box-shadow: 0 2px 16px #FF008033;
}
@keyframes slideUp {
  0% { transform: translateY(100%); opacity:0 }
  60% { transform: translateY(-8px); opacity:.8 }
  100% { transform: translateY(0); opacity:1 }
}

.cookie-modal {
  position: fixed;
  z-index: 2001;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-55%) scale(0.95);
  background: #fff;
  color: #1E3D59;
  padding: 40px 30px 28px 30px;
  min-width: 320px;
  max-width: 96vw;
  border-radius: 20px;
  box-shadow: 0 8px 48px #A4266C3B;
  opacity: 1;
  display: none;
  flex-direction: column;
  gap: 18px;
  animation: fadeInModal .29s cubic-bezier(0.7,0,0.3,1);
}
.cookie-modal.open {
  display: flex;
}
.cookie-modal h2 {
  color: #A4266C;
  margin-top: 0;
  margin-bottom: 6px;
}
.cookie-modal .cookie-cats {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 0 0 12px 0;
}
.cookie-modal .cookie-cat {
  background: #F7F4EE;
  border-radius: 12px;
  padding: 13px 12px 10px 18px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.cookie-modal .cookie-cat .cookie-label {
  font-weight: 600;
  margin-right: 8px;
}
.cookie-modal .cookie-switch {
  appearance: none;
  width: 38px;
  height: 20px;
  background: #D5D9E2;
  border-radius: 24px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background .18s;
}
.cookie-modal .cookie-switch:checked {
  background: #A4266C;
}
.cookie-modal .cookie-switch:disabled {
  background: #ECEBED;
  opacity: 0.8;
  cursor: no-drop;
}
.cookie-modal .cookie-switch::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  transition: left .17s;
  box-shadow: 0 1px 2px #0001;
}
.cookie-modal .cookie-switch:checked::after {
  left: 19px;
}
.cookie-modal-close {
  position: absolute;
  top: 14px; right: 20px;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: #A4266C;
  cursor: pointer;
  z-index: 2;
}
.cookie-modal-actions {
  display: flex;
  gap: 22px;
  justify-content: flex-end;
  margin-top: 9px;
}
.cookie-modal-actions .cookie-btn {
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 18px;
}
@keyframes fadeInModal {
  from { opacity: 0; transform: translate(-50%,-62%) scale(0.93); }
  to   { opacity: 1; transform: translate(-50%,-55%) scale(1); }
}

@media (max-width: 540px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 8px 18px 12px;
    gap: 12px;
  }
  .cookie-banner .cookie-buttons {
    gap: 12px;
    flex-wrap: wrap;
  }
  .cookie-modal {
    padding: 20px 8px 12px 8px;
    min-width: 0;
  }
}

/* -------------------------------------------------------------
   MEDIA QUERIES (RESPONSIVE & FLEXBOX FIRST)
------------------------------------------------------------- */
@media (max-width: 820px) {
  .container {
    padding: 0 10px;
  }
  .footer-content {
    flex-direction: column;
    gap: 20px;
  }
  .feature-grid, .testimonial-list, .service-cards {
    flex-direction: column;
    gap: 20px;
  }
  .footer-social {
    margin-top: 16px;
  }
}
@media (max-width: 670px) {
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.25rem; }
  .content-wrapper { gap: 15px; }
  .service-cards, .feature-grid { gap: 14px; }
}
@media (max-width: 520px) {
  header .container { flex-direction: row; gap: 6px; }
  .logo img { height: 36px; }
  .button, .button.button-primary { font-size: 1rem; padding: 10px 16px; }
  .service-card, .feature-grid li, .testimonial-card, .faq-item { padding: 14px 10px; }
}

/* -------------------------------------------------------------
   MISC. COMPONENTS
------------------------------------------------------------- */
::-webkit-input-placeholder { color: #A4266C88; }
::-moz-placeholder { color: #A4266C88; }
:-ms-input-placeholder { color: #A4266C88; }
::placeholder { color: #A4266C88; }

hr {
  border: 0;
  border-top: 2px solid #A4266C22;
  margin: 28px 0 18px 0;
}

/* -------------------------------------------------------------
   BRAND COLOR DECORATION & HERO HIGHLIGHTS
------------------------------------------------------------- */
.section, .feature-grid li, .faq-item, .service-card {
  border-radius: 18px;
}
.section {
  box-shadow: 0 8px 32px rgba(164,38,108, .10);
  border-left: 5px solid #A4266C17;
}

/* Decorative Energetic Color Splashes (header underline, h1 gradient, etc.) */
h1, .button-primary {
  background-clip: initial;
}

/* -------------------------------------------------------------
   ACCESSIBILITY & FOCUS/INTERACTION
------------------------------------------------------------- */
a, .button, button, .mobile-menu-toggle, .cookie-btn, .cookie-modal-close {
  outline: 2px solid transparent;
  outline-offset: 1px;
  transition: outline 0.11s, box-shadow 0.12s;
}
a:focus-visible, .button:focus-visible, button:focus-visible,
.mobile-menu-toggle:focus-visible,
.cookie-btn:focus-visible,
.cookie-modal-close:focus-visible {
  outline: 2px solid #A4266C;
  box-shadow: 0 1px 8px #A4266C4F;
}

/* Hide visually but accessibly */
.sr-only {
  border: 0 !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  clip: rect(0,0,0,0) !important;
  overflow: hidden !important;
  position: absolute !important;
}

/* -------------------------------------------------------------
   CUSTOM FLEXBOX PATTERNS - spacing and alignment
------------------------------------------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/**** END OF FILE ****/
