/* --- CSS RESET & BASE --- */
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, 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, 
main, 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, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F5F5F5;
  color: #232324;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

img, picture, svg {
  max-width: 100%;
  display: block;
}
a {
  color: #283593;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #b58300;
}
ul, ol {
  margin: 0 0 16px 24px;
}
strong, b {
  font-weight: bold;
}

/* --- BRAND TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #283593;
  font-weight: 700;
  line-height: 1.15;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.5rem; margin-bottom: 16px; }
h4 { font-size: 1.2rem; margin-bottom: 12px; }
.subtitle {
  font-size: 1.25rem;
  color: #53477A;
  margin-bottom: 20px;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}

p, li, .text-section {
  font-size: 1.05rem;
  color: #4A4A4A;
  margin-bottom: 14px;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
.price {
  display: inline-block;
  background: #FFD600;
  color: #232324;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 8px;
  font-size: 1em;
  margin-left: 10px;
}

/* --- LAYOUT WRAPPERS --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 2px 24px 0 rgba(40, 53, 147, 0.05);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* --- HEADER & NAVIGATION --- */
header {
  background: #283593;
  color: #fff;
  width: 100%;
  padding: 0;
  box-shadow: 0 1px 10px 0 rgba(40, 53, 147, 0.07);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 16px 16px 16px;
  gap: 24px;
}
header nav {
  display: flex;
  gap: 30px;
}
header nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  opacity: 0.92;
  border-radius: 18px;
  padding: 6px 16px;
  transition: background 0.2s, color 0.2s;
}
header nav a.active, header nav a:hover, header nav a:focus {
  background: #FFD600;
  color: #283593;
}
header .cta {
  background: #FFD600;
  color: #283593;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 10px 26px;
  border-radius: 32px;
  margin-left: 30px;
  box-shadow: 0 2px 7px 0 rgba(255, 214, 0, 0.18);
  text-align: center;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
header .cta:hover,
header .cta:focus {
  background: #ffe066;
  color: #53477A;
  box-shadow: 0 4px 20px 0 rgba(255, 214, 0, 0.22);
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu-toggle {
  display: none;
  background: #FFD600;
  color: #283593;
  font-size: 2rem;
  border: none;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 200;
  box-shadow: 0 2px 7px 0 rgba(40, 53, 147, 0.08);
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #ffea80;
  color: #b58300;
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  background: #fff;
  box-shadow: 2px 0 32px 0 rgba(40, 53, 147,0.15);
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.77,0,.175,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  width: 100%;
  height: 100vh;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #FFD600;
  color: #283593;
  font-size: 2.2rem;
  border: none;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  margin: 20px 0 20px 20px;
  align-self: flex-start;
  cursor: pointer;
  box-shadow: 0 2px 7px 0 rgba(40, 53, 147, 0.08);
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #ffea80;
  color: #b58300;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  margin: 30px 0 0 36px;
  width: 90vw;
}
.mobile-nav a {
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #283593;
  font-weight: 600;
  padding: 14px 0;
  border-radius: 14px;
  width: 100%;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #FFD600;
  color: #53477A;
}

@media (max-width: 1024px) {
  header nav, header .cta {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1025px) {
  .mobile-menu, .mobile-menu-toggle {display: none!important;}
}

/* --- FOOTER --- */
footer {
  background: #283593;
  color: #fff;
  padding: 40px 0 0 0;
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
  margin-top: 80px;
  box-shadow: 0 -2px 24px rgba(40,53,147,0.06);
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 16px 16px 16px;
}
footer a {
  color: #FFD600;
  font-weight: 500;
  transition: color 0.15s;
  font-size: 1rem;
}
footer a:hover,
footer a:focus {
  color: #fff200;
  text-decoration: underline;
}
footer nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-legal {
  width: 100%;
  text-align: center;
  margin-top: 18px;
  font-size: 0.95rem;
  color: #d3d3e2;
}
.social-links {
  display: flex;
  gap: 16px;
  align-items: center;
}
.social-links img {
  width: 32px;
  height: 32px;
  background: #FFD600;
  border-radius: 50%;
  box-shadow: 0 2px 8px #ffd6001b;
  padding: 4px;
  transition: box-shadow 0.2s;
}
.social-links img:hover {
  box-shadow: 0 4px 16px #ffd6002a;
}

@media (max-width: 900px) {
  footer .container {flex-direction: column; gap: 20px; align-items: flex-start;}
}

/* --- GENERIC SECTION SPACING & FLEX --- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 14px #7962bb18;
  margin-bottom: 20px;
  position: relative;
  padding: 24px 20px 20px 20px;
  flex: 1 1 320px;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.22s, transform 0.16s;
}
.card:hover {
  box-shadow: 0 4px 32px #FFD60033;
  transform: translateY(-4px) scale(1.01);
}
.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #FFF9E1;
  border-radius: 24px;
  box-shadow: 0 2px 14px #FFD60033;
  position: relative;
  flex: 1 1 350px;
  transition: box-shadow 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 30px #FFD60055;
}
.testimonial-card p {
  font-size: 1.08rem;
  color: #324169;
  margin-bottom: 6px;
}
.testimonial-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.96em;
  color: #683800;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.testimonial-info strong {
  color: #283593;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- LISTS & FEATURES --- */
.feature-list,
.usp-list,
.benefit-grid,
.offer-list,
.service-list,
.address-section,
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.feature-list li,
.usp-list li,
.benefit-grid li,
.offer-list li,
.service-list li,
.address-section > div,
.contact-details > div {
  display: flex;
  align-items: center;
  background: #FFFAE0;
  border-radius: 18px;
  padding: 14px 14px 14px 18px;
  gap: 16px;
  font-size: 1.08rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #3d386a;
  box-shadow: 0 2px 8px #FFD6000a;
  margin-bottom: 0;
}
.feature-list img, .usp-list img, .benefit-grid img, .service-list img, .address-section img, .contact-details img {
  width: 26px;
  height: 26px;
  margin-right: 8px;
  flex-shrink: 0;
}

.info-box, .map-placeholder {
  background: #FFF9E1;
  border-radius: 16px;
  padding: 14px 18px;
  color: #6C5A22;
  font-size: 1rem;
  box-shadow: 0 2px 14px #FFD60019;
}

/* --- CTA BUTTONS --- */
.cta {
  display: inline-block;
  background: #FFD600;
  color: #283593;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.18rem;
  border-radius: 28px;
  padding: 12px 30px;
  box-shadow: 0 2px 12px 0 rgba(40, 53, 147, 0.06);
  cursor: pointer;
  border: none;
  margin-top: 10px;
  transition: background 0.2s, color 0.2s, box-shadow 0.19s;
  outline: none;
}
.cta:hover, .cta:focus {
  background: #ffe066;
  color: #53477A;
  box-shadow: 0 4px 24px 0 rgba(255, 214, 0, 0.25);
}

/* --- TEXT SECTION --- */
.text-section {
  background: #FFFAE6;
  border-radius: 16px;
  padding: 20px 24px;
  color: #4A466A;
  font-size: 1.08rem;
  margin-bottom: 10px;
  box-shadow: 0 2px 8px #FFD60014;
}

/* --- COOKIES BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff8e1;
  color: #283593;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 12px 18px 12px;
  gap: 18px;
  z-index: 9000;
  box-shadow: 0 -2px 16px #FFD60033;
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
  font-size: 1.02rem;
  transition: transform 0.35s cubic-bezier(.77,0,.175,1), opacity 0.22s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-banner .cookie-btn-group {
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: center;
}
.cookie-banner button,
.cookie-banner .cookie-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 650;
  font-size: 1rem;
  border: none;
  border-radius: 18px;
  padding: 8px 22px;
  box-shadow: 0 2px 7px #FFD60022;
  cursor: pointer;
  margin-top: 5px;
  transition: background 0.18s, color 0.18s, box-shadow 0.14s;
}
.cookie-banner .accept {
  background: #FFD600;
  color: #283593;
}
.cookie-banner .accept:hover,
.cookie-banner .accept:focus {
  background: #FFE066;
}
.cookie-banner .reject {
  background: #E9E9E9;
  color: #a26500;
}
.cookie-banner .reject:hover,
.cookie-banner .reject:focus {
  background: #FFD600;
  color: #53477A;
}
.cookie-banner .settings {
  background: #fff;
  color: #283593;
  border: 2px solid #FFD600;
}
.cookie-banner .settings:hover, 
.cookie-banner .settings:focus {
  background: #FFE066;
}

/* --- COOKIE MODAL --- */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(40,53,147,0.13);
  z-index: 11000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.22s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #fff8e1;
  color: #283593;
  border-radius: 20px;
  padding: 34px 28px 28px 28px;
  max-width: 95vw;
  min-width: 290px;
  box-shadow: 0 4px 33px #FFD60044;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal-content h3 {
  font-size: 1.35rem;
  color: #283593;
  margin-bottom: 18px;
}
.cookie-modal-content label {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1.05rem;
  margin-bottom: 13px;
}
.cookie-modal-content input[type="checkbox"] {
  accent-color: #FFD600;
  width: 20px; height: 20px;
  border-radius: 6px;
}
.cookie-modal-content .close-modal {
  align-self: flex-end;
  margin-bottom: -18px;
  background: #FFD600;
  color: #283593;
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 1.65rem;
  cursor: pointer;
  box-shadow: 0 1px 8px #FFD60033;
  transition: background 0.15s, color 0.15s;
}
.cookie-modal-content .close-modal:hover {
  background: #ffe066;
}
.cookie-modal-content .category {
  font-weight: bold;
  color: #6C4710;
  font-size: 1.1rem;
}
.cookie-modal-content .always {
  font-size: 1em;
  color: #BBB171;
}
.cookie-modal-content .cookie-btn-group {
  display: flex;
  gap: 15px;
  margin-top: 10px;
  justify-content: flex-end;
}

/* --- FORMATTING HELPERS --- */
.mt-2 { margin-top: 16px; }
.mb-2 { margin-bottom: 16px; }
.mt-4 { margin-top: 32px; }
.mb-4 { margin-bottom: 32px; }
.text-center { text-align: center; }

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1000px) {
  .container { max-width: 96vw; }
  .section { padding: 28px 8px; }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.27rem; }
  .section { margin-bottom: 36px; padding: 22px 5px; }
  .card-container, .content-grid { gap: 14px; }
  .testimonial-card { flex-direction: column; align-items: flex-start; gap: 7px; }
  .footer-legal { font-size: 0.91rem; }
  .content-wrapper { gap: 12px; }
  .address-section, .contact-details, .feature-list, .usp-list, .benefit-grid, .offer-list, .service-list {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 14px; }
  .container, footer .container { padding-left: 5px; padding-right: 5px; }
}
@media (max-width: 480px) {
  .footer-links, footer nav, .social-links {
    gap: 12px;
    flex-direction: column;
    align-items: flex-start;
  }
  .section { border-radius: 16px; }
}

/* --- ANIMATIONS & TRANSITIONS --- */
.section, .card, .testimonial-card, .cta, .feature-list li, .usp-list li, .benefit-grid li, .offer-list li, .service-list li, .info-box, .text-section {
  transition: box-shadow 0.26s, transform 0.18s;
}
.card:active, .testimonial-card:active { transform: scale(0.98); }
.cta:active {transform: scale(0.98);}

/* --- ACCESSIBILITY STYLES --- */
a:focus, button:focus, .cta:focus {
  outline: 2px solid #FFD600;
  outline-offset: 2px;
}

/* --- UTILITY --- */
::-webkit-scrollbar {width:9px; background:#F5F5F5;}
::-webkit-scrollbar-thumb {background:#FFD600; border-radius:8px;}

/* --- END OF STYLE.CSS --- */
