/*--------------------------------------
 CSS RESET & NORMALIZE (Mobile First)
--------------------------------------*/
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,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  min-height: 100vh;
  background: #F5F6F8;
  color: #234E65;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #234E65;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #B87413;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
}
th, td {
  padding: 10px;
  text-align: left;
  border-bottom: 1px solid #e0e6ec;
}
th {
  background: #f4f6fa;
  font-weight: 700;
}

/* Font Imports */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Roboto:wght@400;500;700&display=swap');

/*--------------------------------------
 BRAND COLORS & CUSTOM PROPERTIES
--------------------------------------*/
:root {
  --primary: #234E65;
  --secondary: #F5F6F8;
  --secondary-light: #ffffff;
  --accent: #B87413;
  --accent-light: #E0A247;
  --text: #234E65;
  --text-light: #fff;
  --text-dark: #1b2730;
  --shadow: 0 3px 16px 0 rgba(35,78,101,0.09);
  --radius: 16px;
  --gradient-header: linear-gradient(90deg, #234E65 0%, #386580 100%);
  --gradient-hero: linear-gradient(120deg, #234E65 40%, #E0A247 150%);
}

/*--------------------------------------
 CONTAINER & GENERAL LAYOUT
--------------------------------------*/
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--secondary-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/*--------------------------------------
 TYPOGRAPHY
--------------------------------------*/
h1, .hero h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--primary);
  margin-bottom: 16px;
  letter-spacing: -1px;
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--primary);
}
.hero h1, .hero h2 {
  color: var(--text-light);
}
p, ul, ol, li {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: var(--text-dark);
}
strong {
  color: var(--primary);
  font-weight: 700;
}

/*--------------------------------------
 HEADER & NAVIGATION
--------------------------------------*/
header {
  background: var(--gradient-header);
  color: var(--text-light);
  box-shadow: 0 2px 12px 0 rgba(35,78,101,0.08);
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 30;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.logo img {
  height: 48px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
}
.main-nav a {
  color: var(--text-light);
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 8px 12px;
  border-radius: 7px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus,
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--accent-light);
  color: var(--primary);
}
.cta-btn {
  background: var(--accent-light);
  color: var(--text-light);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 10px 28px;
  border-radius: 22px;
  font-size: 1.05rem;
  box-shadow: 0 2px 12px 0 rgba(232,155,36,0.09);
  border: none;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  cursor: pointer;
  margin-left: 14px;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--accent);
  color: var(--text-light);
  box-shadow: 0 6px 19px 0 rgba(219,148,36,0.17);
}

/* HIDE Mobile Menu Toggle on Desktop */
.mobile-menu-toggle {
  display: none;
}

/*--------------------------------------
 HERO SECTION
--------------------------------------*/
.hero {
  background: var(--gradient-hero);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 2px 30px 0 rgba(35,78,101,0.08);
  margin-bottom: 60px;
  padding: 60px 0 48px 0;
  position: relative;
}
.hero .container {
  align-items: flex-start;
  gap: 0;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 20px;
}
.hero h1 {
  color: var(--text-light);
  font-size: 2.7rem;
}
.hero p {
  color: #f5f6f8;
  font-size: 1.15rem;
  max-width: 540px;
}
.hero .cta-btn {
  margin-top: 18px;
}

/*--------------------------------------
 FLEX LAYOUT UTILS (as per requirements)
--------------------------------------*/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--secondary-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  padding: 28px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.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 26px;
  background: #f7fbff;
  color: #234E65;
  border-radius: var(--radius);
  box-shadow: 0 2px 10px 0 rgba(35,78,101,0.10);
  margin-bottom: 20px;
  min-width: 240px;
  max-width: 570px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px 0 rgba(35,78,101,0.17);
  transform: translateY(-2px) scale(1.03);
}
.testimonial-card.highlighted {
  background: #e5f0fa;
  border-left: 5px solid var(--accent);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Strict Feature List, Service List, Tips, FAQ etc. */
.features-list, .service-list, .service-cards, .tips-list, .faq-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 24px 20px;
  margin: 0 0 24px 0;
}
.features-list li, .service-list li, .service-cards li, .tips-list li, .faq-item {
  background: var(--secondary-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 18px;
  flex: 1 1 250px;
  min-width: 230px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.2s, transform 0.18s;
}
.features-list li:hover, .service-list li:hover, .service-cards li:hover, .tips-list li:hover, .faq-item:hover {
  box-shadow: 0 8px 24px 0 rgba(35,78,101,0.14);
  transform: translateY(-2px) scale(1.025);
}
.service-price {
  color: var(--accent);
  font-weight: 700;
  font-size: 1.1rem;
  margin-top: 10px;
}

/*--------------------------------------
 TEXT BLOCKS
--------------------------------------*/
.text-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
}

/*--------------------------------------
 FOOTER
--------------------------------------*/
footer {
  background: #1e3e50;
  color: var(--text-light);
  padding-top: 32px;
  padding-bottom: 24px;
  margin-top: 64px;
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
  box-shadow: 0 -2px 12px 0 rgba(35,78,101,0.14);
}
footer .container {
  flex-direction: column;
  gap: 24px;
}
footer .content-wrapper {
  flex-direction: row;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-brand-contact {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
}
.footer-brand-contact img {
  height: 54px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
  align-items: center;
}
.footer-nav a {
  color: #e5eaf1;
  font-weight: 500;
  font-size: 1rem;
  border-radius: 7px;
  padding: 8px 10px;
}
.social-icons {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
  margin-top: 12px;
}
.social-icons img {
  width: 28px;
  height: 28px;
  transition: filter 0.18s, transform 0.18s;
  filter: grayscale(20%) brightness(0.95);
}
.social-icons img:hover { filter: grayscale(0) brightness(1.2); transform: scale(1.12); }
.footer-legal {
  color: #b2c4d4;
  font-size: 0.95rem;
  text-align: center;
  margin-top: 20px;
}

/*--------------------------------------
 MOBILE MENU OVERLAY
--------------------------------------*/
.mobile-menu-toggle {
  display: block;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  margin-left: 16px;
  cursor: pointer;
  z-index: 51;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #234E65;
  transform: translateX(-100%);
  opacity: 0;
  transition: transform 0.38s cubic-bezier(.86,.37,.45,.82), opacity 0.18s;
  z-index: 1002;
  padding: 36px 24px 24px 24px;
  box-shadow: 0 0 32px 1px rgba(35,78,101,.15);
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.1rem;
  margin-bottom: 22px;
  cursor: pointer;
  z-index: 1004;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 10px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.15rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 14px 12px;
  border-radius: 8px;
  background: none;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--accent-light);
  color: var(--primary);
}

@media (max-width: 991px) {
  .main-nav, .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 992px) {
  .mobile-menu {
    display: none !important;
  }
}

/*--------------------------------------
 RESPONSIVE DESIGN & LAYOUTS
--------------------------------------*/
@media (max-width: 768px) {
  .container {
    padding-left: 7px;
    padding-right: 7px;
  }
  .footer .content-wrapper,
  footer .content-wrapper {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .footer-nav {
    flex-direction: column;
    gap: 10px;
    margin-top: 14px;
  }
  .footer-brand-contact {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .content-grid, .card-container, .features-list, .service-list, .service-cards, .tips-list, .faq-list {
    flex-direction: column;
    gap: 18px;
  }
  .testimonials-section, .testimonial-card {
    max-width: 100%;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .hero {
    padding: 36px 0 24px 0;
  }
  .hero .content-wrapper h1 {
    font-size: 1.82rem;
  }
}
@media (max-width: 576px) {
  html { font-size: 15px; }
  .section, .card {
    padding: 22px 7px;
  }
  .testimonial-card, .features-list li, .service-list li, .service-cards li {
    padding: 16px 9px;
  }
  .hero .content-wrapper h1 {
    font-size: 1.37rem;
  }
}

/*--------------------------------------
 BUTTONS & FORM ELEMENTS
--------------------------------------*/
button, .cta-btn {
  outline: none;
  border: none;
}
button:focus, .cta-btn:focus {
  box-shadow: 0 0 0 3px #E0A24766;
}

/*--------------------------------------
 TABLES
--------------------------------------*/
table {
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  font-size: 1rem;
  overflow: hidden;
  margin-bottom: 16px;
}
th, td {
  font-size: 1rem;
  color: var(--primary);
}
thead th {
  background: #EBEFF1;
  font-weight: bold;
}

/*--------------------------------------
 FAQ & Details Listing
--------------------------------------*/
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-item {
  display: flex;
  flex-direction: column;
  gap: 11px;
  background: #f4f8fa;
}

/*--------------------------------------
 Cookie Banner & Modal
--------------------------------------*/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #234E65;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 24px 15px 18px 15px;
  z-index: 11000;
  box-shadow: 0 -2px 20px 0 rgba(35, 78, 101, 0.13);
  font-size: 1rem;
  animation: cookie-banner-appear 0.5s cubic-bezier(.44,1.07,.53,.88);
}
@keyframes cookie-banner-appear {
  from { opacity:0; transform: translateY(60px); }
  to { opacity:1; transform: translateY(0); }
}
.cookie-banner p {
  color: #fff;
}
.cookie-banner button {
  margin-left: 16px;
  margin-right: 5px;
  min-width: 132px;
  padding: 8px 16px;
  border-radius: 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  border: none;
}
.cookie-banner .cookie-accept {
  background: var(--accent-light);
  color: #fff;
}
.cookie-banner .cookie-accept:hover {
  background: var(--accent);
}
.cookie-banner .cookie-reject {
  background: #f5f6f8;
  color: var(--primary);
}
.cookie-banner .cookie-reject:hover {
  background: #E0A247;
  color: #fff;
}
.cookie-banner .cookie-settings {
  background: transparent;
  color: #fff;
  border: 1.5px solid #fff;
}
.cookie-banner .cookie-settings:hover {
  background: #E0A247;
  color: #fff;
  border-color: #E0A247;
}

/* Cookie Modal Styles */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(35, 78, 101, 0.60);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 11001;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal-content {
  background: #fff;
  color: #234E65;
  border-radius: 18px;
  padding: 32px 24px 26px 24px;
  box-shadow: 0 16px 64px 0 rgba(35, 78, 101, 0.16);
  min-width: 310px;
  max-width: 98vw;
  max-height: 96vh;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  animation: cookie-modal-in 0.35s cubic-bezier(.44,1.07,.53,.88);
}
@keyframes cookie-modal-in {
  from { opacity:0; transform: translateY(-50px) scale(0.97); }
  to { opacity:1; transform: translateY(0) scale(1); }
}
.cookie-modal-content h2 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.cookie-modal-close {
  position: absolute;
  top: 13px;
  right: 15px;
  background: none;
  color: #234E65;
  font-size: 1.45rem;
  border: none;
  cursor: pointer;
}
.cookie-category-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 16px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 1rem;
}
.cookie-category label {
  font-weight: 500;
}
.cookie-toggle {
  width: 36px;
  height: 20px;
  background: #EBEFF1;
  border-radius: 14px;
  position: relative;
  margin-left: 8px;
  cursor: pointer;
}
.cookie-toggle[aria-checked="true"] {
  background: var(--accent-light);
}
.cookie-toggle .cookie-knob {
  position: absolute;
  left: 3px;
  top: 3px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.16s;
}
.cookie-toggle[aria-checked="true"] .cookie-knob {
  left: 19px;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 17px;
  align-items: center;
  justify-content: flex-end;
}
.cookie-modal-actions button {
  padding: 8px 19px;
  border-radius: 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
}
.cookie-modal-actions .cookie-accept {
  background: var(--accent-light);
  color: #fff;
}
.cookie-modal-actions .cookie-accept:hover {
  background: var(--accent);
}
.cookie-modal-actions .cookie-reject {
  background: #f5f6f8;
  color: var(--primary);
}
.cookie-modal-actions .cookie-reject:hover {
  background: #E0A247;
  color: #fff;
}

@media (max-width: 540px) {
  .cookie-modal-content {
    padding: 18px 6vw 14px 6vw;
    min-width: unset;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    font-size: 0.93rem;
  }
}

/*--------------------------------------
 MISC GENERAL REFINEMENTS
--------------------------------------*/
::-webkit-scrollbar {
  width: 7px;
  background: #f5f6f8;
}
::-webkit-scrollbar-thumb {
  background: #E0A24744;
  border-radius: 5px;
}

/* Animations and transitions for interactivity and micro-interactions */
.card, .features-list li, .service-list li, .service-cards li, .testimonial-card, .faq-item {
  transition: box-shadow 0.18s, transform 0.19s;
}
.cta-btn, button, a {
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, border 0.18s;
}

/*********************
 Ensured no usage of display: grid, grid-*, column-*, or position: absolute (for content)
 All spacing requirements observed and enforced.
*********************/
