/* =====================
   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,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;
}
/* HTML5 display-role reset */
article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section {
  display: block;
}
body {
  line-height: 1.5;
  font-family: 'Roboto', Georgia, 'Times New Roman', Times, serif;
  background: #F3F6F9;
  color: #2C2C2C;
  min-height: 100vh;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
input, button, textarea, select {
  font-family: inherit;
  font-size: 100%;
  outline: none;
  border-radius: 0;
}
/* ============
   TYPOGRAPHY
   ============ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Georgia, 'Times New Roman', Times, serif;
  font-weight: 700;
  line-height: 1.2;
  color: #254160;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 14px;
}
p,
li,
blockquote {
  font-size: 1rem;
  font-family: 'Roboto', Georgia, 'Times New Roman', Times, serif;
  margin-bottom: 16px;
  line-height: 1.7;
}
blockquote {
  font-style: italic;
  border-left: 4px solid #254160;
  margin: 0 0 16px 0;
  padding-left: 16px;
  color: #254160;
}
strong {
  font-weight: bold;
}
/* ===============
   GENERAL LAYOUT
   =============== */
.container {
  width: 100%;
  max-width: 1150px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
main {
  padding-top: 30px;
  padding-bottom: 30px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(37,65,96,0.05);
}
/* ====== HERO ====== */
.hero {
  background: #254160;
  color: #fff;
  border-radius: 0 0 32px 32px;
  margin-bottom: 60px;
  padding: 60px 0 44px 0;
}
.hero h1,
.hero p {
  color: #fff;
}
.hero .button.button-primary {
  margin-top: 24px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 16px;
}

/* =====================
   HEADER AND NAVIGATION
   ===================== */
header {
  background: #fff;
  box-shadow: 0 2px 16px rgba(37,65,96,0.07);
  z-index: 100;
  position: sticky;
  top: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 24px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Montserrat', Georgia, serif;
  font-size: 1rem;
  padding: 12px 8px;
  color: #254160;
  position: relative;
  transition: color 0.18s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #4BB174;
}
.main-nav a.button {
  margin-left: 18px;
  font-weight: 600;
  padding: 10px 24px;
}
/* Burger Icon */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  padding: 8px 14px;
  color: #254160;
  cursor: pointer;
  z-index: 105;
  transition: background 0.15s, color 0.15s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  color: #4BB174;
  background: #e4efea;
  border-radius: 8px;
}
/* ===============
   Mobile Menu
   =============== */
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 84vw;
  max-width: 340px;
  background: #fff;
  box-shadow: 6px 0 32px rgba(37,65,96,0.13);
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(.77,0,.18,1);
  z-index: 120;
  display: flex;
  flex-direction: column;
  gap: 18px;
  visibility: hidden;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 18px 18px 0 0;
  background: none;
  color: #254160;
  border: none;
  font-size: 2rem;
  padding: 6px 10px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  border-radius: 8px;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: #ececec;
  color: #4BB174;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 32px 0 0 44px;
}
.mobile-nav a {
  font-family: 'Montserrat', Georgia, serif;
  font-size: 1.1rem;
  color: #254160;
  padding: 10px 0;
  font-weight: 600;
  border-radius: 7px;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  background: #f3f6f9;
  color: #4BB174;
}
/* ==================
   FEATURE GRID, CARDS
   ================== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-grid li {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(37,65,96,0.05);
  padding: 28px 22px;
  min-width: 220px;
  max-width: 340px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s;
}
.feature-grid li:hover {
  box-shadow: 0 8px 24px rgba(37,65,96,0.13);
}
.feature-grid img {
  width: 40px;
  height: 40px;
}
.feature-grid h3 {
  margin-bottom: 4px;
  font-size: 1.10rem;
  color: #254160;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
/* CARDS & GRIDS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 9px rgba(37,65,96,0.08);
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.20s;
}
.card:hover {
  box-shadow: 0 8px 24px rgba(37,65,96,0.14);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.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;
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 22px;
}
.service-box {
  background: #F3F6F9;
  border: 1px solid #e1e5eb;
  border-radius: 14px;
  padding: 24px 20px;
  min-width: 210px;
  max-width: 330px;
  flex: 1 1 210px;
  box-shadow: 0 2px 9px rgba(37,65,96,0.04);
  transition: box-shadow 0.18s;
}
.service-box:hover {
  box-shadow: 0 8px 22px rgba(37,65,96,0.11);
}
.office-types {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.office-types li {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(37,65,96,0.06);
  padding: 18px 20px;
  min-width: 180px;
  max-width: 270px;
  flex: 1 1 180px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 1rem;
}

/* ================
   PRICING TABLES
   ================ */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 18px 0 24px 0;
  background: #fff;
  box-shadow: 0 2px 9px rgba(37,65,96,0.08);
  border-radius: 10px;
  overflow: hidden;
  font-size: 1rem;
  color: #2C2C2C;
}
.pricing-table th,
.pricing-table td {
  padding: 16px 12px;
  text-align: center;
}
.pricing-table th {
  background: #e9eef3;
  font-family: 'Montserrat', Georgia, serif;
  font-size: 1rem;
  color: #254160;
}
.pricing-table tr:nth-child(even) {
  background: #F3F6F9;
}
.pricing-table tr {
  border-bottom: 1px solid #e9eef3;
}
.pricing-table td {
  font-family: 'Roboto', Georgia, serif;
  color: #2C2C2C;
  font-size: 1rem;
}
/* ===============
   TESTIMONIALS
   =============== */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 8px rgba(37,65,96,0.08);
  padding: 24px 22px;
  min-width: 250px;
  max-width: 330px;
  position: relative;
  margin-bottom: 20px;
  border-left: 4px solid #4BB174;
  transition: box-shadow 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 22px rgba(75,177,116,0.10);
}
.testimonial-card p {
  color: #254160;
  font-style: italic;
  margin-bottom: 0;
  font-size: 1.03rem;
}
.testimonial-card .author {
  font-family: 'Montserrat', serif;
  font-weight: 600;
  color: #4BB174;
  font-size: 0.98rem;
}
/* ===================
   BUTTONS & INTERACTIONS
   =================== */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Georgia, serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 28px;
  padding: 12px 28px;
  margin-top: 10px;
  background: #fff;
  color: #254160;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(37,65,96,0.07);
  transition: background 0.2s, color 0.2s, box-shadow 0.17s;
  outline: none;
}
.button:focus,
.button:hover {
  background: #ecf5ee;
  color: #4BB174;
  box-shadow: 0 8px 22px rgba(75,177,116,0.11);
}
.button-primary {
  background: #4BB174;
  color: #fff;
  box-shadow: 0 4px 16px rgba(75,177,116,0.14);
  border: 1.8px solid #4BB174;
  transition: background 0.22s, color 0.22s, box-shadow 0.18s;
}
.button-primary:focus,
.button-primary:hover {
  background: #254160;
  color: #fff;
  box-shadow: 0 8px 22px rgba(37,65,96,0.13);
  border-color: #254160;
}
.button[disabled],
.button-primary[disabled] {
  cursor: not-allowed;
  opacity: 0.6;
}
/* ===================
   CONTACT DETAILS
   =================== */
.contact-details ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 14px;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #254160;
}
.contact-details img {
  width: 26px;
  height: 26px;
}
/* ===================
   FOOTER
   =================== */
footer {
  background: #222f3e;
  color: #fff;
  padding: 48px 0 14px 0;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  font-family: 'Montserrat', Georgia, serif;
  margin-bottom: 12px;
}
.footer-nav a {
  color: #cfdbeb;
  font-size: 1rem;
  transition: color 0.16s;
}
.footer-nav a:hover {
  color: #4BB174;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 340px;
  margin-bottom: 16px;
}
.footer-contact img {
  width: 58px;
  margin-bottom: 8px;
}
.footer-contact a {
  color: #cfdbeb;
  word-break: break-all;
}
.footer-brand {
  text-align: center;
  color: #7589a8;
  font-size: 0.98rem;
  margin-top: 22px;
  padding-top: 14px;
  letter-spacing: 0.06em;
  border-top: 1px solid #25334E;
}
/* ============== COOKIE CONSENT BANNER =============== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  box-shadow: 0 -4px 18px rgba(37,65,96,0.14);
  padding: 20px 12px 20px 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  z-index: 150;
  font-size: 1rem;
  transition: transform 0.4s cubic-bezier(.77,0,.18,1);
}
.cookie-banner.hide {
  transform: translateY(130%);
  pointer-events: none;
  opacity: 0;
}
.cookie-banner .cookie-banner-message {
  flex: 1 1 300px;
  color: #254160;
  font-family: 'Roboto', Georgia, serif;
}
.cookie-banner .cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.cookie-banner .button {
  margin-top: 0 !important;
  padding: 9px 18px;
  font-size: 0.93rem;
}
.cookie-banner .button-primary {
  background: #4BB174;
  color: #fff;
  border: none;
}
.cookie-banner .button-secondary {
  background: #E1E5EB;
  color: #254160;
  border: none;
  font-weight: 600;
}
.cookie-banner .button-settings {
  background: transparent;
  color: #4BB174;
  border: none;
  text-decoration: underline;
  font-weight: 600;
  padding-left: 2px;
  padding-right: 2px;
}
.cookie-banner .button-settings:hover {
  background: #ecf5ee;
  color: #254160;
}
/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(37,65,96,0.30);
  z-index: 155;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(.77,0,.18,1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 18px;
  padding: 38px 30px 28px 30px;
  min-width: 320px;
  max-width: 94vw;
  box-shadow: 0 8px 32px rgba(37,65,96,0.15);
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
}
.cookie-modal-close {
  position: absolute;
  right: 18px;
  top: 12px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: #254160;
  cursor: pointer;
  border-radius: 9px;
  transition: background 0.14s, color 0.14s;
  padding: 7px 13px;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  background: #f3f6f9;
  color: #4BB174;
}
.cookie-modal-content h3 {
  margin-bottom: 6px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1rem;
  color: #254160;
}
.cookie-category input[type=checkbox] {
  accent-color: #4BB174;
  width: 18px;
  height: 18px;
  margin: 0;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 12px;
}
/* ===============
   MISC/OTHER
   =============== */
.additional-benefits ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
/* ELEGANT SHADOWS & ROUNDED CORNERS */
.card,
.feature-grid li,
.testimonial-card,
.service-box,
.office-types li {
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(37,65,96,0.05);
}
/* HEADINGS AND SPACING */
.content-wrapper > h1,
.content-wrapper > h2 {
  margin-top: 18px;
}
/* ===============
   RESPONSIVE DESIGN
   =============== */
@media (max-width: 1100px) {
  .feature-grid,
  .card-container,
  .testimonial-slider,
  .service-list,
  .office-types {
    gap: 18px;
  }
  .footer-contact {
    max-width: 100%;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 14px;
  }
  .feature-grid li,
  .service-box,
  .office-types li {
    min-width: 170px;
    max-width: 99vw;
    flex: 1 1 170px;
  }
}
@media (max-width: 768px) {
  /* Mobile-first changes */
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .container {
    max-width: 98vw;
    padding-left: 10px;
    padding-right: 10px;
  }
  header .container {
    min-height: 54px;
    gap: 14px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .hero {
    padding: 40px 0 28px 0;
    border-radius: 0 0 22px 22px;
    margin-bottom: 36px;
  }
  .feature-grid,
  .testimonial-slider,
  .service-list,
  .office-types {
    flex-direction: column;
    gap: 14px;
  }
  .feature-grid li,
  .service-box,
  .office-types li {
    min-width: 100%;
    max-width: 99vw;
    flex: 1 1 100%;
  }
  .testimonial-card {
    max-width: 98vw;
    min-width: 90vw;
    padding: 20px 12px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .card-container,
  .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  footer .container {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
  .footer-brand {
    margin-top: 20px;
    font-size: 0.93rem;
    padding-top: 10px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 16px 8px;
  }
}
@media (max-width: 480px) {
  h1 { font-size: 1.4rem; }
  h2 { font-size: 1.14rem; }
  .section,
  .hero {
    padding: 22px 2px;
  }
  .card,
  .feature-grid li,
  .service-box {
    padding: 14px 8px;
  }
  .mobile-menu {
    max-width: 98vw;
  }
  .cookie-modal-content {
    padding: 18px 6px 12px 14px;
    min-width: 93vw;
    max-width: 99vw;
  }
}
/* ===============
   ANIMATIONS
   =============== */
.button,
.button-primary,
.button-secondary,
.button-settings,
.main-nav a,
.footer-nav a,
.mobile-menu-toggle,
.mobile-menu-close,
.mobile-nav a {
  transition: background 0.22s, color 0.22s, box-shadow 0.22s, border 0.15s;
}
.card,
.feature-grid li,
.testimonial-card,
.service-box,
.office-types li,
.pricing-table {
  transition: box-shadow 0.18s;
}
.cookie-banner,
.cookie-modal {
  transition: transform 0.4s cubic-bezier(.77,0,.18,1), opacity 0.3s cubic-bezier(.77,0,.18,1);
}
/* ===============
   PRINT STYLES
   =============== */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  main, .section, .container {
    background: #fff !important;
    color: #000 !important;
    box-shadow: none !important;
    border: none !important;
  }
  a { color: #254160; }
}
