/* === 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, 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, main, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  font: inherit;
  vertical-align: baseline;
}
html {
  box-sizing: border-box;
  font-size: 16px;
  height: 100%;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  background: linear-gradient(135deg, #E6F3FB 0%, #FFFFFF 100%);
  color: #174A86;
  line-height: 1.6;
  font-size: 16px;
  letter-spacing: 0.02em;
  transition: background 0.5s;
}
img {
  max-width: 100%;
  display: block;
}
main {
  flex: 1;
}
a {
  color: #175296;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FFB400;
}
ul, ol {
  padding-left: 24px;
}
table {
  border-collapse: collapse;
}
button, input, select, textarea {
  font-family: inherit;
  outline: none;
}

/* === BRAND FONTS === */
h1, h2, h3, h4, .btn, .badge, .discount-label {
  font-family: 'Montserrat', Arial, sans-serif;
}
h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
}
h4 {
  font-size: 1.1rem;
  font-weight: 500;
}
.subtitle {
  font-size: 1.25rem;
  margin-bottom: 24px;
  color: #175296;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* === CONTAINER & LAYOUT === */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(23,82,150,0.07);
}
@media (max-width: 900px) {
  .section {
    padding: 32px 10px;
    margin-bottom: 40px;
  }
  .container {
    padding: 0 8px;
  }
}
@media (max-width: 600px) {
  .section {
    padding: 22px 0;
    margin-bottom: 30px;
    border-radius: 10px;
  }
}

/* === BUTTONS & BADGES === */
.btn {
  display: inline-flex;
  align-items: center;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 12px 32px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
  transition: background 0.3s, color 0.2s, box-shadow 0.25s;
  box-shadow: 0 2px 10px 0 rgba(23,82,150,0.06);
  letter-spacing: 0.03em;
  margin-bottom: 0;
}
.btn.primary {
  background: #175296;
  color: #fff;
}
.btn.primary:hover, .btn.primary:focus {
  background: #174A86;
  color: #FFB400;
  box-shadow: 0 4px 25px 0 rgba(23,82,150,0.12);
}
.btn.secondary {
  background: #E6F3FB;
  color: #175296;
}
.btn.secondary:hover, .btn.secondary:focus {
  background: #175296;
  color: #fff;
  box-shadow: 0 4px 25px 0 rgba(255,180,0,0.08);
}
.btn.accent {
  background: #FFB400;
  color: #175296;
}
.btn.accent:hover, .btn.accent:focus {
  background: #fff;
  color: #FFB400;
  border: 2px solid #FFB400;
  box-shadow: 0 4px 25px 0 rgba(255,180,0,0.16);
}
.badge {
  display: inline-flex;
  background: #E6F3FB;
  color: #175296;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 14px;
  padding: 6px 20px;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.badge.accent {
  background: #FFB400;
  color: #174A86;
}
.discount-label {
  display: inline-block;
  background: #FFB400;
  color: #174A86;
  font-size: 1rem;
  padding: 8px 24px;
  border-radius: 16px;
  font-weight: 600;
  margin: 18px 0 0 0;
}

/* === HEADER & NAVIGATION === */
header {
  background: linear-gradient(75deg, #E6F3FB 65%, #fff 100%);
  box-shadow: 0 1px 12px 0 rgba(23,82,150,0.05);
  padding: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 20px 12px 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #175296;
  font-weight: 600;
  font-size: 1.06rem;
  position: relative;
  padding: 4px 0;
  transition: color 0.18s;
}
nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 3px;
  background: #FFB400;
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.18s;
}
nav a:hover, nav a:focus {
  color: #FFB400;
  outline: none;
}
nav a:hover::after, nav a:focus::after {
  opacity: 1;
}
@media (max-width: 900px) {
  header .container {
    flex-direction: column;
    gap: 12px;
    padding: 14px 8px 8px 8px;
    align-items: flex-start;
  }
  nav {
    flex-wrap: wrap;
    gap: 14px;
  }
}
@media (max-width: 700px) {
  nav {
    display: none;
  }
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  right: 16px;
  top: 18px;
  z-index: 201;
  background: #fff;
  color: #175296;
  font-size: 2rem;
  border: none;
  padding: 8px 18px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(23,82,150,0.19);
  cursor: pointer;
  transition: background 0.25s, color 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #E6F3FB;
  color: #FFB400;
}
@media (max-width: 700px) {
  .mobile-menu-toggle {
    display: block;
  }
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; height: 100vh; width: 100vw;
  background: #fff;
  z-index: 400;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(.7,.2,.26,1);
  box-shadow: 8px 0 24px rgba(23,82,150,0.15);
  will-change: transform;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  right: 16px;
  top: 18px;
  background: none;
  border: none;
  color: #175296;
  font-size: 2.2rem;
  cursor: pointer;
  z-index: 10;
  padding: 2px 16px;
  border-radius: 8px;
  transition: background 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #E6F3FB;
  color: #FFB400;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 86px 32px 26px 32px;
}
.mobile-nav a {
  color: #175296;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  padding: 12px 0;
  width: 100%;
  border-radius: 0;
  transition: color 0.2s, background 0.2s;
}
.mobile-nav a:active,
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: #FFB400;
  background: #E6F3FB;
}
@media (min-width: 701px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* === SECTION GRADIENTS & GENERAL FLEX === */
.feature-grid, .value-grid, .benefits-grid, .testimonial-grid, .testimonials-preview, .service-overview, .services-list, .discounts {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-grid > .feature, .value-grid > .value, .benefits-grid > .benefit, .testimonial-grid > .testimonial-card, .services-list > .service-item, .service-overview > .service, .discounts > .discount-card {
  background: #F5FAFD;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(23,82,150,0.06);
  padding: 28px 22px;
  flex: 1 1 260px;
  min-width: 220px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow 0.23s, transform 0.22s;
}
.feature-grid > .feature:hover,
.value-grid > .value:hover,
.benefits-grid > .benefit:hover,
.services-list > .service-item:hover,
.service-overview > .service:hover,
.discounts > .discount-card:hover {
  box-shadow: 0 6px 32px 0 rgba(23,82,150,0.14);
  transform: translateY(-2px) scale(1.018);
}
@media (max-width: 900px) {
  .feature-grid, .value-grid, .benefits-grid, .testimonial-grid, .testimonials-preview, .service-overview, .discounts {
    gap: 16px;
  }
}
@media (max-width: 600px) {
  .feature-grid, .value-grid, .benefits-grid, .testimonial-grid, .testimonials-preview, .service-overview, .discounts {
    flex-direction: column;
    gap: 13px;
  }
}

/* === FLEX LAYOUT PATTERNS === */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(23,82,150,0.09);
  padding: 26px 20px;
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .content-grid {
    flex-direction: column;
    gap: 14px;
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 16px rgba(23,82,150,0.10);
  min-width: 266px;
  max-width: 380px;
  transition: box-shadow 0.23s;
}
.testimonial-card .stars {
  color: #FFB400;
  font-size: 1.35rem;
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.testimonial-card blockquote {
  font-size: 1.08rem;
  font-style: italic;
  color: #174A86;
  margin-bottom: 0;
  line-height: 1.52;
}
.testimonial-meta {
  font-size: 0.95rem;
  color: #436184;
  margin-top: 2px;
}
@media (max-width: 480px) {
  .testimonial-card {
    min-width: 0;
    padding: 14px 8px;
    font-size: 0.97rem;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* === CARDS & OFFERS === */
.offers, .seasonal-offers {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}
.offer {
  background: #F6FBFF;
  border-radius: 16px;
  padding: 22px 24px;
  min-width: 220px;
  box-shadow: 0 2px 8px rgba(23,82,150,0.07);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  font-size: 1.1rem;
}
@media (max-width: 650px) {
  .offers, .seasonal-offers {
    flex-direction: column;
    gap: 12px;
  }
  .offer {
    padding: 14px 12px;
  }
}

/* === PRICING TABLE === */
.pricing-table {
  margin-bottom: 28px;
  width: 100%;
}
.pricing-table table {
  width: 100%;
  background: #F7FAFC;
  border-radius: 10px;
  overflow: hidden;
  font-size: 1.12rem;
}
.pricing-table th, .pricing-table td {
  padding: 13px 15px;
  text-align: left;
  border-bottom: 1px solid #E6F3FB;
}
.pricing-table th {
  color: #175296;
  background: #E6F3FB;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
}
.pricing-table .note {
  font-size: 0.97rem;
  color: #436184;
  margin-top: 12px;
}

.inclusions {
  margin: 16px 0 0 0;
}
.inclusions ul {
  list-style: disc;
}

/* === TIMELINE & FAQ === */
.timeline ul, .faq ul {
  list-style: none;
  padding-left: 0;
}
.timeline ul li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 18px;
  font-size: 1.08rem;
}
.timeline ul li::before {
  content: '';
  background: #175296;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  position: absolute;
  left: 8px;
  top: 9px;
}
.faq ul li {
  margin-bottom: 12px;
  padding-left: 0;
}

/* === BUSINESS HOURS & CONTACT === */
.business-hours ul, .contact-details ul {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 6px;
  font-size: 1.1rem;
}
.contact-details {
  background: #E6F3FB;
  border-radius: 16px;
  padding: 18px 18px;
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 1.13rem;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-email-phone p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}
.address, .address-map {
  margin-top: 13px;
  font-size: 1.07rem;
}

/* === FOOTER === */
footer {
  background: linear-gradient(90deg, #E6F3FB 60%, #fff 100%);
  color: #175296;
  padding: 44px 0 24px 0;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-brand img {
  height: 46px;
  margin-bottom: 12px;
}
footer nav {
  flex-direction: column;
  gap: 9px;
  font-family: 'Montserrat', Arial, sans-serif;
}
footer nav a {
  color: #175296;
  font-size: 1.03rem;
}
footer nav a:hover {
  color: #FFB400;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 0.97rem;
}
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 7px;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 24px;
    padding: 0 8px;
  }
}

/* === MISCELLANEOUS / ACCESSIBILITY === */
strong {
  font-weight: 600;
}
hr, .divider {
  border: none;
  border-top: 1px solid #E6F3FB;
  margin: 24px 0;
}
::-webkit-input-placeholder { color: #93A8B9; }
::-moz-placeholder { color: #93A8B9; }
:-ms-input-placeholder { color: #93A8B9; }
::placeholder { color: #93A8B9; }

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #E6F3FB;
  color: #175296;
  padding: 24px 16px 16px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 17px;
  box-shadow: 0 -4px 23px 0 rgba(23,82,150,0.11);
  z-index: 9999;
  border-radius: 18px 18px 0 0;
  animation: fadeInUp 0.4s cubic-bezier(.7,.2,.26,1);
}
@keyframes fadeInUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-banner button {
  margin-bottom: 0;
  font-size: 1rem;
  border-radius: 28px;
  padding: 9px 26px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.cookie-banner .accept {
  background: #FFB400;
  color: #174A86;
  margin-right: 0;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #fff;
  color: #FFB400;
  border: 2px solid #FFB400;
}
.cookie-banner .reject {
  background: #E6F3FB;
  color: #175296;
  border: 2px solid #175296;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #175296;
  color: #fff;
}
.cookie-banner .settings {
  background: #fff;
  color: #175296;
  border: 2px solid #E6F3FB;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #FFB400;
  color: #174A86;
  border: 2px solid #FFB400;
}

/* === COOKIE PREFERENCES MODAL === */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(23,82,150,0.19);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.25s cubic-bezier(.7,.2,.26,1);
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #174A86;
  border-radius: 22px;
  padding: 36px 28px 22px 28px;
  width: 96vw;
  max-width: 400px;
  box-shadow: 0 8px 32px rgba(23,82,150,0.21);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: popIn 0.32s cubic-bezier(.76,.22,.18,.91);
}
@keyframes popIn {
  from { transform: scale(0.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  margin-bottom: 7px;
  font-size: 1.32rem;
}
.cookie-modal .category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}
.cookie-modal .category input[type="checkbox"] {
  accent-color: #FFB400;
  width: 22px;
  height: 22px;
}
.cookie-modal .category label {
  font-size: 1.08rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-modal .category .details {
  color: #436184;
  font-size: 0.94rem;
}
.cookie-modal .category.essential label {
  font-weight: 600;
  color: #175296;
}
.cookie-modal .actions {
  display: flex;
  gap: 11px;
  margin-top: 16px;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 18px;
  right: 24px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #175296;
  cursor: pointer;
  transition: color 0.2s;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  color: #FFB400;
}

/* === RESPONSIVENESS === */
@media (max-width: 620px) {
  h1 {
    font-size: 1.75rem;
  }
  h2 {
    font-size: 1.25rem;
  }
  .btn, .btn.primary, .btn.secondary, .btn.accent {
    font-size: 0.96rem;
    padding: 11px 17px;
  }
  .container, .section {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .cookie-modal {
    padding: 18px 5vw 13px 5vw;
  }
}

/* === MICRO-INTERACTIONS & MODERN EFFECTS === */
.btn, .cookie-banner button, .cookie-modal .actions button {
  transition: box-shadow 0.22s, background 0.22s, color 0.18s, border 0.22s, transform 0.17s;
}
.btn:active, .cookie-banner button:active, .cookie-modal .actions button:active {
  transform: translateY(1px) scale(0.98);
}
.card, .testimonial-card, .feature, .value, .benefit, .service-item, .discount-card {
  transition: box-shadow 0.2s, transform 0.18s;
}
.card:hover, .testimonial-card:hover, .feature:hover, .value:hover, .benefit:hover, .service-item:hover, .discount-card:hover {
  box-shadow: 0 6px 32px 0 rgba(23,82,150,0.14);
  transform: translateY(-2px) scale(1.019);
}

/* === TYPOGRAPHY & COLORS ENHANCEMENT === */
h1, h2, h3, h4 {
  color: #174A86;
}
.section {
  background: linear-gradient(90deg, #fff 80%, #E6F3FB 100%);
}
@media (max-width: 900px) {
  .section {
    background: #fff;
  }
}

/* == UTILITIES == */
.mt-32 {margin-top:32px;}
.mb-20 {margin-bottom:20px;}
.mb-32 {margin-bottom:32px;}
.pt-24 {padding-top:24px;}
.pb-24 {padding-bottom:24px;}

/* === FORMS & TABLES === */
input[type="text"], input[type="email"], input[type="tel"], textarea {
  padding: 11px 18px;
  border-radius: 14px;
  border: 1.5px solid #E6F3FB;
  background: #F8FBFD;
  color: #175296;
  font-size: 1.07rem;
  margin-bottom: 16px;
  box-shadow: 0 2px 7px rgba(23,82,150,0.04);
  transition: border 0.18s, box-shadow 0.18s;
}
input:focus, textarea:focus {
  border: 1.5px solid #FFB400;
  background: #fff;
}
label {
  display: block;
  font-size: 1.03rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 6px;
  color: #175296;
  letter-spacing: 0.015em;
}

/* == Z-INDEX LAYERS for MOBILE MENU & COOKIE MODALS == */
.mobile-menu,
.cookie-banner,
.cookie-modal-overlay,
.cookie-modal {
  z-index: 9999 !important;
}

/* === FINAL VERIFICATION === */
/* No display:grid, grid-* or column-* props are used anywhere. Only flex layouts for all containers. All class selectors match provided HTML. All spacing, shadows, and contrast adhere to the requirements. === */
