/* RESET & NORMALIZE */
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background: #191C23;
  color: #F4E6C3;
  min-height: 100vh;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #2E8D77;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #156149;
}
ul, ol {
  list-style: none;
  padding-left: 0;
}
table {
  border-collapse: collapse;
  width: 100%;
  margin: 24px 0;
  background: #232731;
  color: #F4E6C3;
  border-radius: 8px;
  overflow: hidden;
}
th, td {
  padding: 16px 10px;
  border-bottom: 1px solid #303542;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
}
th {
  background-color: #213764;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.05em;
}
tr:last-child td {
  border-bottom: none;
}

/* BRAND FONTS */
h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #F4E6C3;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 14px;
}
h4 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

p, li, td, th, small {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
}
small {
  font-size: 14px;
}

/******************************/
/* CONTAINER & SECTIONS      */
/******************************/
.container {
  padding: 0 16px;
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/******************************/
/* NAVIGATION                */
/******************************/
header {
  width: 100%;
  background: #1B2431;
  box-shadow: 0 4px 16px rgba(24,27,35, 0.13);
  position: relative;
  z-index: 10;
  border-bottom: 2px solid #232731;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 24px;
}
.main-nav > a img {
  width: 140px;
  height: auto;
  filter: grayscale(10%);
}
.main-nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin: 0 18px;
}
.main-nav ul li a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #F4E6C3;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 10px 4px;
  border-radius: 4px;
  transition: background 0.15s, color 0.15s;
  position: relative;
}
.main-nav ul li a:hover,
.main-nav ul li a:focus {
  background: #23292e;
  color: #2E8D77;
}
.cta-btn {
  display: inline-block;
  padding: 13px 32px;
  background: linear-gradient(90deg,#2E8D77 70%, #156149 100%);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  box-shadow: 0 3px 13px rgba(32,55,100,0.13);
  transition: background 0.18s, transform 0.14s, box-shadow 0.18s;
  cursor: pointer;
  margin-left: 12px;
  z-index: 1;
  position: relative;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg,#156149 70%, #2E8D77 100%);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 20px rgba(46,141,119,0.17);
  color: #fff;
}

/******************************/
/* MOBILE NAVIGATION         */
/******************************/
.mobile-menu-toggle {
  position: absolute;
  right: 20px;
  top: 22px;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #F4E6C3;
  cursor: pointer;
  z-index: 85;
  display: none;
  outline: none;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(27,36,49, 0.96);
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.72,1.55,.49,.97);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 1000;
  box-shadow: 4px 0 24px rgba(23,23,23, 0.19);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #F4E6C3;
  font-size: 2rem;
  position: absolute;
  right: 28px;
  top: 26px;
  cursor: pointer;
  z-index: 1010;
  padding: 8px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  margin-top: 80px;
  width: 100vw;
  padding-left: 36px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #F4E6C3;
  font-size: 1.18rem;
  letter-spacing: 0.06em;
  padding: 10px 2px;
  border-radius: 3px;
  font-weight: 500;
  transition: background 0.14s, color 0.13s;
  outline: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #23292e;
  color: #2E8D77;
}

/******************************/
/* HERO SECTIONS  & PAGES    */
/******************************/
.hero-section {
  background: linear-gradient(120deg,#1B2431 0, #232731 50%, #213764 100%);
  box-shadow: 0 6px 26px rgba(33,55,100,0.16);
  padding: 0;
  margin-bottom: 48px;
}
.hero-section .container {
  display: flex;
  flex-direction: column;
  min-height: 310px;
  justify-content: center;
}
.hero-section .content-wrapper {
  gap: 24px;
  align-items: flex-start;
  max-width: 760px;
  margin: 0 auto;
  padding-top: 55px;
  padding-bottom: 55px;
}
.hero-section h1 {
  font-size: 2.3rem;
  color: #F4E6C3;
  text-shadow: 0 3px 19px rgba(21,97,73,0.09), 0 1px 2px #111a22;
  font-weight: 800;
}
.hero-section p {
  font-size: 1.18rem;
  color: #F4E6C3;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 10px;
}

/******************************/
/* FLEX SECTION PATTERNS      */
/******************************/
/* Already handled: .section, .content-wrapper */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #24282F;
  border-radius: 10px;
  box-shadow: 0 3px 18px rgba(33,55,100,0.12), 0 1.5px 2.5px rgba(0,0,0,0.03);
  margin-bottom: 20px;
  position: relative;
  padding: 24px 20px;
  min-width: 250px;
  max-width: 370px;
  transition: box-shadow 0.17s, transform 0.12s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 32px rgba(46,141,119,0.18), 0 2.5px 5px rgba(33,55,100,0.07);
  transform: translateY(-3px) scale(1.015);
}
.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;
  margin-bottom: 60px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F4E6C3;
  color: #24282F;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(33,55,100,0.17);
  margin-bottom: 22px;
  min-width: 260px;
  max-width: 450px;
  margin-right: 20px;
  position: relative;
  transition: box-shadow 0.18s, transform 0.13s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(33,55,100,0.16), 0 2px 7px rgba(46,141,119,0.05);
  transform: translateY(-3px) scale(1.01);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 24px;
  background: none;
}

/******************************/
/* FEATURES SECTIONS          */
/******************************/
.features-section, .about-section, .services-section, .contact-section {
  background: #232731;
  border-radius: 16px;
  box-shadow: 0 3px 14px rgba(21,97,73,0.08), 0 1.5px 2.5px rgba(33,55,100,0.04);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.features-section h2,
.services-section h2,
.about-section h2,
.contact-section h2 {
  color: #F4E6C3;
}
.features-section ul, .services-section ul, .about-section ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}
.features-section li, .services-section li, .about-section li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.07rem;
  background: none;
  color: #F4E6C3;
  font-family: 'Roboto', Arial, sans-serif;
}
.features-section li img, .services-section li img {
  width: 26px;
  height: 26px;
  filter: grayscale(60%) brightness(1.3) contrast(1.25);
  margin-right: 7px;
}

/******************************/
/* SPECIAL SECTIONS / TIPS    */
/******************************/
.tip-categories {
  display: flex;
  flex-direction: row;
  gap: 10px;
  font-size: 1rem;
  margin-bottom: 14px;
  flex-wrap: wrap;
  color: #DEAE6C;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.045em;
}
.team-profiles ul {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-left: 0;
}
.team-profiles h3 {
  margin-bottom: 8px;
}

/******************************/
/* TABLE - SERVICE LISTS      */
/******************************/
table {
  background: #232731;
  box-shadow: 0 1.5px 7px rgba(33,55,100,0.08);
  margin-top: 16px;
  border-radius: 8px;
}
th, td {
  border-bottom: 1px solid #303542;
  font-size: 1rem;
}
th {
  color: #F4E6C3;
}
td {
  color: #cbc2a4;
}

/******************************/
/* FOOTER                     */
/******************************/
footer {
  background: #191C23;
  padding: 46px 0 18px 0;
  border-top: 2.5px solid #232731;
}
footer .container {
  display: flex;
  flex-direction: column;
}
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
}
.footer-menu {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 1rem;
  margin-bottom: 6px;
}
.footer-menu a {
  color: #2E8D77;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
}
.footer-menu a:hover {
  color: #DEAE6C;
}
.contact-info {
  font-size: 1rem;
  color: #b3bae4;
  text-align: center;
  margin-bottom: 2px;
  line-height: 1.4;
}
.social-links {
  display: flex;
  gap: 17px;
  margin-top: 8px;
  justify-content: center;
}
.social-links a img {
  filter: grayscale(1) contrast(1.15) brightness(1.2);
  opacity: 0.85;
  width: 32px;
  height: 32px;
  transition: filter 0.18s, opacity 0.13s, transform 0.13s;
}
.social-links a:hover img {
  filter: none;
  opacity: 1;
  transform: scale(1.10) rotate(-7deg);
}
.footer-copy small {
  color: #858f9d;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  margin-top: 6px;
}

/******************************/
/* COOKIE CONSENT BANNER      */
/******************************/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 2000;
  background: #232731;
  color: #F4E6C3;
  font-size: 1rem;
  box-shadow: 0 -4px 28px rgba(33,55,100,0.12);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 24px 16px;
  transition: transform 0.36s cubic-bezier(.7,1.67,.44,.98);
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 14px;
}
.cookie-banner button {
  border: none;
  background: #2E8D77;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 10px 24px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.02rem;
  font-weight: 600;
  transition: background 0.14s, color 0.13s, transform 0.12s;
  letter-spacing: 0.02em;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #156149;
  color: #F4E6C3;
  transform: translateY(-2px);
}
.cookie-banner .settings-btn {
  background: #213764;
  color: #F4E6C3;
}

/******************************/
/* COOKIE PREFERENCES MODAL   */
/******************************/
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(25,28,35, 0.87);
  z-index: 2200;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.22s cubic-bezier(.71,1.47,.5,.99);
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #24282F;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(33,55,100,0.20);
  padding: 34px 26px 20px 26px;
  min-width: 310px;
  max-width: 430px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: #F4E6C3;
  position: relative;
  z-index: 2220;
  font-size: 1rem;
}
.cookie-modal-content h3 {
  font-size: 1.3rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 12px;
  color: #F4E6C3;
}
.cookie-modal-content ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 15px;
}
.cookie-modal-content li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
}
.cookie-modal-content .toggle {
  margin-left: auto;
  appearance: none;
  width: 44px;
  height: 25px;
  border-radius: 20px;
  background: #2E8D77;
  position: relative;
  transition: background 0.13s;
  cursor: pointer;
}
.cookie-modal-content .toggle:checked {
  background: #156149;
}
.cookie-modal-content .toggle::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 4px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #F4E6C3;
  transition: left 0.14s;
}
.cookie-modal-content .toggle:checked::before {
  left: 23px;
}
.cookie-modal-content .modal-buttons {
  display: flex;
  gap: 16px;
  margin-top: 14px;
}
.cookie-modal-content button {
  border: none;
  background: #2E8D77;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 10px 22px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.13s, color 0.13s, transform 0.12s;
}
.cookie-modal-content button:hover, .cookie-modal-content button:focus {
  background: #156149;
  color: #F4E6C3;
  transform: translateY(-2px);
}
.cookie-modal-content .close-btn {
  background: #213764;
  color: #F4E6C3;
}

/******************************/
/* RESPONSIVE STYLES         */
/******************************/
@media (max-width: 1080px) {
  .container {
    max-width: 98vw; }
}
@media (max-width: 900px) {
  .main-nav ul {
    gap: 10px;
  }
  .hero-section h1 {font-size: 2rem;}
}
@media (max-width: 800px) {
  .hero-section .content-wrapper { padding-top: 36px; padding-bottom: 36px; }
  .section { padding: 30px 7px; }
  .features-section, .services-section, .about-section, .contact-section { padding: 30px 7px; }
  .container { max-width: 100vw; }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
  .hero-section .container { min-height: 138px; }
  .section { padding: 30px 7px; }
  .main-nav ul { display: none; }
  .cta-btn { margin-left: 0; }
  .main-nav .cta-btn { display: none; }
  .mobile-menu-toggle { display: block; }
  .main-nav {
    padding: 11px 12px;
  }
  .hero-section .content-wrapper {
    gap: 14px;
    padding-top: 26px;
    padding-bottom: 34px;
  }
  .content-grid,
  .card-container {
    gap: 14px;
    flex-direction: column;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .testimonial-card {
    min-width: unset;
    max-width: 100vw;
    margin-right: 0;
  }
  .footer-menu {
    flex-direction: column;
    gap: 4px;
  }
  .cookie-banner { flex-direction: column; gap: 17px; }
}
@media (max-width: 540px) {
  .main-nav > a img { width: 98px; }
  .cookie-modal-content { min-width: 94vw; max-width: 99vw; padding: 22px 4vw 12px 4vw; }
  .footer-menu {font-size: 0.97rem;}
  .tip-categories { flex-direction: column; gap: 6px; }
}

/******************************/
/* MICRO-INTERACTIONS         */
/******************************/
button, .cta-btn, .mobile-nav a, a {
  transition: background 0.17s, color 0.13s, box-shadow 0.17s, transform 0.13s;
}

/******************************/
/* HONOR FLEX ONLY LAYOUTS    */
/******************************/
/* No grid/columns used anywhere as required */