/* --- RESET & NORMALIZE --- */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #F4F7FB;
  color: #224048;
  min-height: 100vh;
  line-height: 1.6;
  font-size: 1rem;
  -webkit-text-size-adjust: 100%;
}
img, video {
  max-width: 100%;
  height: auto;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #11628A;
  letter-spacing: 0;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; }

ul, ol {
  margin-bottom: 1.5em;
  margin-left: 1.25em;
}
li {
  margin-bottom: 8px;
}
address {
  font-style: normal;
  margin-bottom: 16px;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

/* --- TYPOGRAPHY --- */
body, p, ul, ol, li, a, span, address {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #224048;
}
b, strong {
  font-weight: 700;
}

.primary-cta, .main-nav a, .footer-nav a, .mobile-nav a, button, input[type="submit"] {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.015em;
}

/* --- HEADER --- */
header {
  background: #fff;
  box-shadow: 0 4px 16px 0 rgba(34, 64, 72, 0.05);
  position: relative;
  z-index: 1050;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 18px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.logo-link img {
  height: 48px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  color: #224048;
  text-decoration: none;
  font-size: 1.13rem;
  padding: 8px 0;
  position: relative;
  transition: color 0.25s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #11628A;
  /* underline effect */
}

.primary-cta {
  display: inline-block;
  background: #11628A;
  color: #fff;
  border-radius: 28px;
  padding: 12px 32px;
  font-size: 1.15rem;
  box-shadow: 0 2px 10px 0 rgba(17,98,138,0.1);
  text-decoration: none;
  transition: background 0.15s, color 0.1s, box-shadow 0.18s;
  border: none;
  cursor: pointer;
}
.primary-cta:hover, .primary-cta:focus {
  background: #224048;
  color: #F4F7FB;
  box-shadow: 0 8px 24px 0 rgba(17,98,138,0.17);
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 22px;
  right: 22px;
  width: 52px;
  height: 52px;
  background: #11628A;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  z-index: 1200;
  transition: background 0.17s;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(34, 64, 72, 0.12);
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #224048;
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 1300;
  transform: translateX(-105vw);
  transition: transform .32s cubic-bezier(.41,1.02,.72,.98);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow-y: auto;
  box-shadow: 0 8px 48px 0 rgba(32,40,56, 0.12);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 24px 24px 0 0;
  background: none;
  border: none;
  color: #224048;
  font-size: 2.4rem;
  cursor: pointer;
  z-index: 2;
  transition: color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #11628A;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  padding: 48px 32px;
  margin: 0;
}
.mobile-nav a {
  color: #224048;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 700;
  padding: 16px 12px;
  border-radius: 12px;
  transition: background 0.13s,color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F4F7FB;
  color: #11628A;
}

/* Hide main nav and show burger on mobile */
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .primary-cta {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* --- HERO & SECTIONS --- */
.hero {
  background: #11628A;
  color: #fff;
  border-radius: 0 0 36px 36px;
  padding: 52px 0 44px 0;
  display: flex;
}
.hero h1,
.hero h2,
.hero p {
  color: #fff;
}
.hero .primary-cta {
  background: #fff;
  color: #11628A;
  margin-top: 14px;
}
.hero .primary-cta:hover,
.hero .primary-cta:focus {
  background: #224048;
  color: #fff;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 24px 0 rgba(17,98,138,0.07);
}

/* --- FEATURE GRID / CARD CONTAINER --- */
.feature-grid,
.category-grid,
.values-list ul,
.unique-points ul,
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 32px 0 0 0;
}
.category-grid > div,
.feature-grid > li,
.values-list ul > li,
.unique-points ul > li,
.faq-list > div {
  background: #F4F7FB;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(17,98,138,0.09);
  padding: 28px 22px;
  min-width: 220px;
  flex: 1 1 245px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  transition: box-shadow 0.21s, transform 0.2s;
}
.category-grid > div:hover,
.feature-grid > li:hover,
.values-list ul > li:hover,
.unique-points ul > li:hover,
.faq-list > div:hover {
  box-shadow: 0 10px 38px 0 rgba(17,98,138,0.15);
  transform: translateY(-4px) scale(1.02);
}
.category-grid img,
.feature-grid img,
.faq-list img {
  width: 40px; height: 40px; object-fit: contain;
  margin-bottom: 8px;
}

/* --- SERVICE LIST --- */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 0;
  margin: 34px 0 0 0;
  list-style: none;
}
.service-list > li {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px 0 rgba(17,98,138,0.08);
  padding: 28px 22px;
  min-width: 210px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
  position: relative;
  transition: box-shadow 0.21s, transform 0.2s;
}
.service-list > li:hover {
  box-shadow: 0 10px 34px 0 rgba(17,98,138,0.12);
  transform: scale(1.025);
}
.service-list img {
  width: 36px; height: 36px; object-fit: contain; margin-bottom: 10px;
}
.price {
  margin-top: 10px;
  font-weight: 700;
  color: #11628A;
  font-size: 1rem;
  background: #F4F7FB;
  padding: 3px 16px;
  border-radius: 24px;
  display: inline-block;
}

.contact-cta {
  margin-top: 18px;
  display: flex;
}

/* --- TEXT SECTION, COMMUNICATION, FAQ ETC. --- */
.text-section, .commitment-descriptions, .local-community, .team-introduction, .milestones, .communication-channels,
.benefit-summaries, .feedback-info, .next-steps {
  background: #F4F7FB;
  border-radius: 12px;
  padding: 24px 20px;
  margin-top: 22px;
}
.text-section h3, .commitment-descriptions h3, .local-community h3, .team-introduction h3, .milestones h3,
.communication-channels h3, .benefit-summaries h3 {
  font-size: 1.1rem; color: #11628A; margin-bottom: 10px;
}

ul, ol {
  padding-left: 1.2em;
}

.internal-links {
  display: flex;
  gap: 20px;
  margin-top: 24px;
}
.internal-links a {
  color: #11628A;
  font-weight: 700;
  text-decoration: none;
  background: #F4F7FB;
  padding: 8px 24px;
  border-radius: 22px;
  transition: background 0.13s, color 0.13s;
}
.internal-links a:hover {
  background: #11628A;
  color: #fff;
}

/* --- TESTIMONIALS --- */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 28px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 22px 0 rgba(17,98,138,0.08);
  margin-bottom: 20px;
  margin-top: 20px;
  position: relative;
}
.testimonial-card blockquote {
  color: #224048;
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.5;
  border-left: 5px solid #11628A;
  padding-left: 18px;
}
.testimonial-card p {
  color: #11628A;
  font-size: 1rem;
  font-weight: 700;
}

/* --- ADDRESS MAP --- */
.address-map {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 24px;
  background: #F4F7FB;
  border-radius: 16px;
  margin-top: 8px;
  font-size: 1rem;
  font-weight: 500;
  color: #224048;
}
.address-map img {
  width: 32px;
  height: 32px;
}

/* --- FOOTER --- */
footer {
  background: #11628A;
  color: #fff;
  width: 100%;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 20px 22px 20px;
}
.footer-logo img {
  height: 48px;
  width: auto;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: #fff;
  text-decoration: underline;
  font-size: 1rem;
  margin-bottom: 5px;
  transition: color 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #F4F7FB;
  text-decoration: none;
}
.footer-contact {
  font-size: 1rem;
  color: #f4f7fb;
}
footer small {
  width: 100%;
  margin-top: 22px;
  color: #cee6f5;
}

/* --- CATALOG SEARCH --- */
.catalog-search {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  align-items: center;
  margin-bottom: 20px;
  margin-top: 16px;
}
.catalog-search label {
  font-weight: 700;
  margin-right: 8px;
  color: #224048;
}
.catalog-search input[type="search"] {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  border: 2px solid #11628A;
  border-radius: 24px;
  padding: 8px 18px;
  background: #fff;
  color: #224048;
  outline: none;
  transition: border-color 0.15s;
}
.catalog-search input[type="search"]:focus {
  border-color: #224048;
}
.catalog-search button {
  background: #11628A;
  color: #fff;
  border: none;
  border-radius: 22px;
  padding: 8px 28px;
  font-size: 1rem;
  font-weight: 700;
  transition: background 0.13s;
  margin-left: 4px;
  cursor: pointer;
}
.catalog-search button:hover, .catalog-search button:focus {
  background: #224048;
}

.category-filters {
  margin-top: 16px;
  font-size: 1.08rem;
  color: #11628A;
  font-weight: 600;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1023px) {
  .container { padding: 0 14px; }
  .footer-inner { flex-direction: column; gap: 16px; align-items: flex-start; }
  .header-inner { flex-wrap: wrap; gap: 8px; padding: 12px 0; }
}

@media (max-width: 900px) {
  .footer-inner { padding: 32px 12px 18px 12px; }
  .section { padding: 36px 10px; }
  .contact-cta { flex-direction: column; gap: 10px; }
}

@media (max-width: 768px) {
  .content-wrapper { gap: 18px; }
  .hero { border-radius: 0 0 18px 18px; padding: 38px 0 32px 0; }
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1rem; }
  .section { padding: 24px 5px; margin-bottom: 40px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 12px; padding: 24px 8px 14px 8px; }
  .feature-grid,
  .category-grid,
  .service-list,
  .values-list ul,
  .unique-points ul,
  .faq-list { flex-direction: column; gap: 16px; }
  .testimonial-card { padding: 17px 12px; }
  .category-grid > div,
  .feature-grid > li,
  .service-list > li,
  .faq-list > div {
    min-width: unset; flex: unset; width: 100%;
  }
  .address-map { flex-direction: column; align-items: flex-start; gap: 8px; padding: 10px 10px; }
  .internal-links { flex-direction: column; gap: 10px; }
  .mobile-menu-toggle { top: 15px; right: 16px; width: 44px; height: 44px; font-size: 1.7rem; }
}

@media (max-width: 540px) {
  .footer-inner { padding: 12px 4px 12px 4px; }
  .hero { padding: 22px 0 18px 0; }
  .section { padding: 10px 2px; margin-bottom: 30px; }
  h1 { font-size: 1.4rem!important; }
}

/* --- BUTTONS, FORMS, LINKS --- */
button, .primary-cta, input[type="submit"] {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  transition: background 0.15s, color 0.13s, box-shadow 0.18s;
  outline: none;
}
button:focus, .primary-cta:focus, input[type="submit"]:focus {
  outline: 2px solid #224048;
  outline-offset: 2px;
}
a {
  color: #11628A;
  text-decoration: underline;
  transition: color 0.13s;
}
a:hover, a:focus {
  color: #224048;
  text-decoration: none;
}
input, textarea {
  font-family: inherit;
  font-size: 1rem;
}

/* --- FEATURE/INFO ITEM --- */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0;
  width: 100vw;
  z-index: 1600;
  background: #224048;
  color: #fff;
  padding: 24px 16px;
  box-shadow: 0 -4px 28px 0 rgba(34,64,72,.09);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 1.1rem;
  transition: transform 0.27s;
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner__actions {
  display: flex;
  gap: 14px;
}
.cookie-banner__actions button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 7px 22px;
  border-radius: 19px;
  border: none;
  margin: 0;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.13s,color 0.12s;
}
.cookie-accept {
  background: #11628A;
  color: #fff;
}
.cookie-accept:hover,.cookie-accept:focus {
  background: #23aaf2;
  color: #fff;
}
.cookie-reject {
  background: #fff;
  color: #224048;
}
.cookie-reject:hover, .cookie-reject:focus {
  background: #eee;
}
.cookie-settings {
  background: #F4F7FB;
  color: #11628A;
  border: 1px solid #11628A;
}
.cookie-settings:hover, .cookie-settings:focus {
  background: #11628A;
  color: #fff;
}

/* --- COOKIE MODAL POPUP --- */
.cookie-modal {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.20);
  z-index: 1700;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.27s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal__content {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 10px 44px 0 rgba(17,98,138,0.13);
  max-width: 384px;
  width: 92vw;
  padding: 38px 30px 32px 30px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  color: #224048;
}
.cookie-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cookie-modal__close {
  background: none;
  border: none;
  color: #224048;
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.1s;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  color: #11628A;
}
.cookie-modal__category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 9px;
}
.cookie-switch {
  width: 38px;
  height: 22px;
  background: #eee;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  outline: none;
  border: none;
  transition: background 0.12s;
}
.cookie-switch[data-enabled="true"] {
  background: #11628A;
}
.cookie-switch::after {
  content: '';
  display: block;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(0,0,0,.09);
  position: absolute;
  top: 2px; left: 2px;
  transition: left 0.15s;
}
.cookie-switch[data-enabled="true"]::after {
  left: 18px;
}
.cookie-modal__actions {
  display: flex;
  gap: 14px;
  margin-top: 12px;
}
.cookie-modal__actions button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 7px 22px;
  border-radius: 19px;
  border: none;
  margin: 0;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.13s,color 0.12s;
}

@media (max-width: 480px) {
  .cookie-modal__content {
    padding: 24px 8px 18px 8px;
  }
  .cookie-modal__header {
    flex-direction: column; gap: 5px; align-items: flex-start;
  }
}

/* --- MISCELLANEOUS --- */
::-webkit-scrollbar {
  width: 9px; background: #eee;
}
::-webkit-scrollbar-thumb {
  background: #11628A;
  border-radius: 8px;
}

/* --- ACCESSIBILITY FOCUS --- */
a:focus, button:focus, input:focus {
  outline: 2px solid #11628A;
  outline-offset: 2px;
}

/* --- PRINT FRIENDLY --- */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal { display: none !important; }
  body { background: #fff; color: #222; }
}
