/* ---- CSS RESET & NORMALIZE ---- */
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,
b,
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,
sumary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  background: #F1F4F8;
}
body {
  background: #F1F4F8;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #233142;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
*,*:before,*:after {
  box-sizing: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #B8203A;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  text-decoration: underline;
  color: #233142;
}
ol, ul {
  list-style: disc inside;
}
li + li {
  margin-top: 8px;
}
/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: .01em;
  color: #233142;
}
h1 {
  font-size: 2.75rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
.text-section h3 {
  font-size: 1.125rem;
  margin-bottom: 8px;
}
p, ul, ol {
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 12px;
}
.hero-sub {
  font-size: 1.25rem;
  color: #233142;
  opacity: 0.85;
  margin-bottom: 24px;
}
/* ---- LAYOUT CONTAINERS ---- */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-section {
  padding: 32px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 1px 16px rgba(35, 49, 66, 0.06), 0 1.5px 2.5px rgba(35, 49, 66, 0.05);
  margin-bottom: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  margin-bottom: 20px;
  position: relative;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(35, 49, 66, 0.05);
  transition: box-shadow .22s;
}
.card:hover, .feature-card:hover, .service-card:hover {
  box-shadow: 0 5px 28px rgba(35, 49, 66, 0.12);
  z-index: 1;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
}
.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;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 24px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(35,49,66,0.10);
  color: #233142;
}
.testimonial-card span {
  font-size: 1rem;
  color: #233142;
  opacity: 0.70;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.small-contact {
  font-size: 0.97rem;
  color: #566477;
  margin-top: 8px;
}
/* ---- HERO & CTA SECTIONS ---- */
.hero {
  background: linear-gradient(88deg, #fff 0%, #F1F4F8 100%);
  padding: 72px 0 40px 0;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
}
.cta-banner {
  background: linear-gradient(90deg, #233142 58%, #B8203A 100%);
  color: #fff;
  margin-bottom: 60px;
  padding: 48px 0 40px 0;
}
.cta-banner h2,
.cta-banner p {
  color: #fff;
}
.cta-banner .btn-primary {
  background: #fff;
  color: #B8203A;
  border: none;
}
.cta-banner .btn-primary:hover {
  background: #F1F4F8;
  color: #233142;
}
/* ---- HEADER & FOOTER ---- */
header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(35, 49, 66, 0.07);
  position: relative;
  z-index: 100;
  margin-bottom: 20px;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 70px;
}
.main-navigation {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.main-navigation a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.07rem;
  color: #233142;
  font-weight: 500;
  opacity: 0.86;
  transition: color .2s, opacity .2s;
  padding: 5px 8px;
  border-radius: 5px;
}
.main-navigation a:hover,
.main-navigation a:focus {
  color: #B8203A;
  background: #F1F4F8;
  opacity: 1;
}
header .btn-primary {
  margin-left: 16px;
  flex-shrink: 0;
}
footer {
  background: #233142;
  padding: 48px 0 32px 0;
  color: #fff;
  box-shadow: 0 -2px 18px rgba(35, 49, 66, 0.09);
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 0;
}
.footer-logo {
  flex: 1 1 140px;
}
.footer-logo img {
  max-width: 56px;
  margin-bottom: 18px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: #fff;
  opacity: 0.85;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 2px 0;
  transition: opacity .2s, color .2s;
}
.footer-nav a:hover {
  color: #B8203A;
  opacity: 1;
}

/* ---- BUTTONS ---- */
.btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.09rem;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 8px;
  min-width: 150px;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  border: none;
  background: none;
  transition: background .2s, color .2s, box-shadow .2s, border .2s;
  box-shadow: 0 2px 10px rgba(35,49,66,0.06);
}
.btn-primary {
  background: linear-gradient(90deg, #B8203A 0%, #233142 95%);
  color: #fff;
  border: none;
}
.btn-primary:hover, .btn-primary:focus {
  background: #233142;
  color: #fff;
  box-shadow: 0 6px 28px rgba(35,49,66,0.13);
}
.btn-secondary {
  background: #fff;
  color: #B8203A;
  border: 2px solid #B8203A;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #B8203A;
  color: #fff;
}

/* ---- FEATURE CARDS ---- */
.features-grid, .services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 20px 0 0 0;
}
.feature-card, .service-card {
  flex: 1 1 220px;
  min-width: 220px;
  background: #fff;
  padding: 28px 24px;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(35, 49, 66, 0.07);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  position: relative;
  transition: box-shadow .2s, transform .16s;
  margin-bottom: 20px;
}
.feature-card img, .service-card img {
  margin-bottom: 8px;
  width: 38px;
  height: 38px;
}
.feature-card h3, .service-card h3 {
  margin-bottom: 6px;
  font-size: 1.19rem;
}
.price {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.09rem;
  font-weight: 600;
  color: #B8203A;
  margin-top: 8px;
}

/* ---- FAQ ACCORDION (simple) ---- */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 8px rgba(35,49,66,0.05);
  padding: 15px 16px;
}
.faq-item h3 {
  margin-bottom: 6px;
}

/* ---- CONTACT DETAILS ---- */
.contact-details {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* ---- MOBILE MENU ---- */
.mobile-menu-toggle {
  display: none;
  background: #B8203A;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  font-size: 2rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  margin-left: 16px;
  transition: background .2s, color .2s;
  z-index: 150;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #233142;
  color: #fff;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  z-index: 1999;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.77,.2,.22,.98);
  box-shadow: -8px 0 40px rgba(35,49,66,0.04);
  display: flex;
  flex-direction: column;
  padding: 30px 24px 24px 32px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #233142;
  border: none;
  font-size: 2.3rem;
  position: absolute;
  top: 24px;
  right: 28px;
  cursor: pointer;
  z-index: 2000;
  transition: color .2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #B8203A;
}
.mobile-nav {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.17rem;
  color: #233142;
  font-weight: 600;
  padding: 13px 0 13px 6px;
  border-radius: 5px;
  text-align: left;
  transition: background .18s, color .2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F1F4F8;
  color: #B8203A;
}
@media (max-width: 1100px) {
  .container {
    max-width: 96vw;
  }
  .features-grid, .services-list {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .features-grid, .services-list {
    flex-direction: column;
    gap: 18px;
  }
  .feature-card, .service-card {
    min-width: 180px;
  }
}
@media (max-width: 768px) {
  .main-navigation {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  header .btn-primary {
    display: none;
  }
  header .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .container {
    max-width: 100vw;
    padding: 0 13px;
  }
  .content-wrapper {
    gap: 14px;
  }
  .hero {
    padding: 48px 0 28px 0;
  }
  .cta-banner {
    padding: 32px 0 30px 0;
  }
  .section {
    padding: 26px 7px;
    margin-bottom: 38px;
  }
  .text-section {
    padding: 22px 10px;
  }
  .features-grid, .services-list {
    flex-direction: column;
    gap: 16px;
  }
  .card-content {
    padding: 13px 10px;
  }
  .testimonial-card {
    padding: 13px 10px;
  }
  footer .container {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .footer-logo img {
    margin-bottom: 14px;
  }
}
@media (max-width: 600px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.32rem;
  }
  .hero {
    padding-top: 24px;
    padding-bottom: 14px;
  }
}
/* ---- COOKIE CONSENT BANNER ---- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: #233142;
  color: #fff;
  z-index: 33000;
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 -4px 40px rgba(35,49,66,.15), 0 2px 18px rgba(184,32,58,.10);
  padding: 22px 10px 16px 10px;
  gap: 20px;
}
.cookie-banner__msg {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 12px;
}
.cookie-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: center;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  padding: 8px 22px;
  border: none;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.cookie-btn--accept {
  background: #B8203A;
  color: #fff;
}
.cookie-btn--accept:hover, .cookie-btn--accept:focus {
  background: #A11833;
}
.cookie-btn--reject {
  background: #fff;
  color: #233142;
  border: 1.5px solid #B8203A;
}
.cookie-btn--reject:hover, .cookie-btn--reject:focus {
  background: #FDE6EC;
  color: #B8203A;
}
.cookie-btn--settings {
  background: none;
  color: #fff;
  border: 1.5px solid #fff;
}
.cookie-btn--settings:hover, .cookie-btn--settings:focus {
  background: #233142;
  color: #B8203A;
  border-color: #B8203A;
}
/* Cookie Modal */
.cookie-modal {
  position: fixed;
  z-index: 34000;
  left: 0; right: 0;
  top: 0; bottom: 0;
  background: rgba(35,49,66, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s;
}
.cookie-modal.open {
  pointer-events: auto;
  opacity: 1;
}
.cookie-modal__dialog {
  background: #fff;
  padding: 32px 22px 24px 22px;
  border-radius: 12px;
  color: #233142;
  box-shadow: 0 4px 40px rgba(35,49,66,.15);
  min-width: 90vw;
  max-width: 400px;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.cookie-modal__header {font-size: 1.15rem;font-weight:600;margin-bottom:9px;}
.cookie-modal__settings {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 18px;
  width: 100%;
}
.cookie-cat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  width: 100%;
}
.cookie-cat label {
  font-size: 1rem;
}
.cookie-cat input[type="checkbox"] {
  accent-color: #B8203A;
  width: 20px; height: 20px;
}
.cookie-cat--essential label {
  font-weight: 600;
}
.cookie-cat--essential input[type="checkbox"] {
  display: none;
}
.cookie-modal__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.cookie-modal__close {
  position: absolute;
  top: 17px; right: 22px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #233142;
  cursor: pointer;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  color: #B8203A;
}
@media (max-width: 500px) {
  .cookie-modal__dialog {
    min-width: 96vw;
    padding: 19px 4vw 15px 4vw;
  }
}
/* ---- UTILITY CLASSES ---- */
.mt-20 { margin-top: 20px !important; }
.mt-32 { margin-top: 32px !important; }
.mb-20 { margin-bottom: 20px !important; }
.mb-32 { margin-bottom: 32px !important; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-col { display: flex; flex-direction: column; }
.gap-20 { gap: 20px; }
text-center {text-align:center;}

/* ---- ANIMATIONS/MICROINTERACTIONS ---- */
.btn, .btn-primary, .btn-secondary,
.feature-card, .service-card,
.testimonial-card,
.faq-item, .card {
  transition: box-shadow .2s, transform .13s, background .18s, color .18s;
}
.btn:active, .btn-primary:active, .btn-secondary:active {
  transform: scale(0.96);
}
.card:active, .feature-card:active, .service-card:active {
  transform: scale(0.97);
}

/* ---- VISUAL HIERARCHY/MODERN GRADIENT ELEMENTS ---- */
.feature-card::before, .service-card::before {
  content: '';
  position: absolute;
  left: 0;top: 0;width: 100%;height: 8px;
  border-radius: 16px 16px 0 0;
  background: linear-gradient(90deg, #B8203A 0%, #233142 100%);
  opacity: .12;
  pointer-events: none;
}
.feature-card:hover::before, .service-card:hover::before {
  opacity: .18;
}

/* ---- VISIBILITY CLASSES ---- */
@media (min-width: 769px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}
/* ---- END ---- */
