/* ==== 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, 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;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #FCFAF7;
  color: #222;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
a {
  color: #133E63;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #A7C957;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  padding: 12px 16px;
  text-align: left;
}

/* ==== CSS CUSTOM PROPERTIES (FALLBACKS) ==== */
:root {
  --color-primary: #133E63;
  --color-secondary: #A7C957;
  --color-accent: #FFFFFF;
  --color-accent2: #FFE6C7; /* a warm pale for subtle backgrounds */
  --color-cta-bg: #FFE6C7;
  --color-shadow: rgba(19, 62, 99, 0.08);
  --color-shadow-heavy: rgba(19, 62, 99, 0.13);
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 7px;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
}

/* ==== TYPOGRAPHY SCALE & HEADINGS ==== */
h1, .h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: 24px;
}
h2, .h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 20px;
}
h3, .h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--color-primary);
  margin-bottom: 14px;
}
h4, .h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--color-primary);
  margin-bottom: 10px;
}
p, li, span {
  font-family: var(--font-body);
  color: #2D2D2D;
  line-height: 1.7;
  font-size: 1rem;
}
strong {
  font-weight: 700;
}
em {
  font-style: italic;
}

/* ==== LAYOUT - CONTAINER & SECTIONS ==== */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-accent);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 12px var(--color-shadow);
  display: flex;
  flex-direction: column;
}
@media (max-width: 900px) {
  section {
    padding: 32px 8px;
    margin-bottom: 38px;
  }
}

/* ==== HEADER ==== */
header {
  width: 100%;
  background: var(--color-primary);
  position: relative;
  box-shadow: 0 2px 14px var(--color-shadow);
  z-index: 90;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 0;
}
header a img {
  height: 42px;
}
.main-nav {
  display: flex;
  gap: 24px;
}
.main-nav a {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--color-accent);
  font-size: 1rem;
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  transition: background 0.15s, color 0.15s;
}
.main-nav a:hover, .main-nav a.active {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.cta-btn {
  font-family: var(--font-display);
  font-weight: 700;
  background: var(--color-secondary);
  color: var(--color-primary);
  border: none;
  border-radius: var(--radius-md);
  padding: 12px 34px;
  font-size: 1.1rem;
  margin-left: 20px;
  box-shadow: 0 2px 12px var(--color-shadow);
  cursor: pointer;
  transition: background 0.22s, color 0.22s, box-shadow 0.18s;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: #FFD89D;
  color: var(--color-primary);
  box-shadow: 0 4px 24px var(--color-shadow-heavy);
}
@media (max-width: 960px) {
  .main-nav {
    gap: 12px;
  }
  .cta-btn {
    padding: 10px 20px;
    font-size: 1rem;
    margin-left: 8px;
  }
}

/* ==== MOBILE BURGER MENU ==== */
.mobile-menu-toggle {
  display: none;
  background: var(--color-secondary);
  color: var(--color-primary);
  font-size: 2rem;
  padding: 6px 18px;
  border-radius: var(--radius-lg);
  margin-right: 12px;
  z-index: 130;
  transition: background 0.16s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #E6B17A;
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #F8F8F5;
  box-shadow: 0 0 32px var(--color-shadow);
  display: flex;
  flex-direction: column;
  transform: translateX(-100vw);
  z-index: 200;
  transition: transform 0.32s cubic-bezier(.5,1.7,.3,1);
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  background: transparent;
  color: var(--color-primary);
  margin: 18px 28px 0 0;
  border-radius: var(--radius-lg);
  padding: 2px 14px;
  transition: background 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #FFE6C7;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  margin-top: 58px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--color-primary);
  background: transparent;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  transition: background 0.13s, color 0.13s;
  width: 220px;
  text-align: center;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-secondary);
  color: var(--color-accent);
}
@media (max-width: 900px) {
  .main-nav, .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 901px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ==== HERO & SECTION CTAS ==== */
.hero {
  background: var(--color-cta-bg);
  padding: 52px 20px 40px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* ==== FLEX PATTERNS: CARDS, GRIDS, LAYOUTS ==== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-accent);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 9px var(--color-shadow);
  padding: 28px 22px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow 0.16s, transform 0.16s;
}
.card:hover {
  box-shadow: 0 6px 24px var(--color-shadow-heavy);
  transform: translateY(-4px) 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: 12px;
}
@media (max-width: 768px) {
  .text-image-section, .content-grid, .card-container {
    flex-direction: column;
    gap: 14px;
  }
}

/***** List and Features *****/
.features-list, .plan-features ul, .benefits-list, .service-list, .stats-list, .team-list, .frequency-options ul, .customization-options ul, .benefits-grid ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-left: 0;
  margin: 8px 0 0 0;
}
.features-list img, .service-list img, .benefits-list img, .stats-list img, .frequency-options img, .customization-options img {
  height: 23px;
  margin-right: 9px;
  vertical-align: middle;
}
.features-list li, .benefits-list li, .service-list li, .stats-list li, .team-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #FFF;
  border-radius: var(--radius-sm);
  box-shadow: 0 1px 5px var(--color-shadow);
  padding: 12px 16px;
}

/***** PLAN CARDS *****/
.plan-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 20px;
}
.plan-card {
  background: var(--color-accent2);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 12px var(--color-shadow);
  padding: 30px 26px;
  min-width: 230px;
  flex: 1 1 260px;
  transition: box-shadow 0.16s, transform 0.16s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
}
.plan-card h3 {
  margin-bottom: 16px;
  font-size: 1.22rem;
  color: var(--color-primary);
}
.plan-card ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 1rem;
}
.plan-card:hover {
  box-shadow: 0 8px 32px var(--color-shadow-heavy);
  transform: translateY(-5px) scale(1.025);
}
@media (max-width: 900px) {
  .plan-cards {
    flex-direction: column;
  }
  .plan-card {
    flex: 1 1 100%;
    min-width: 0;
  }
}

/***** TABLES *****/
.plan-table th, .plan-table td {
  font-size: 1rem;
  border-bottom: 1px solid #e9e7de;
}
.plan-table thead th {
  background: var(--color-secondary);
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.plan-table tbody tr:nth-child(odd) td {
  background: #FFFBE7;
}
.plan-table tbody tr:hover td {
  background: #FAF5DE;
  transition: background 0.13s;
}
.plan-table {
  margin-bottom: 24px;
  border-radius: var(--radius-md);
  overflow: hidden;
}
@media (max-width: 600px) {
  .plan-table thead {
    display: none;
  }
  .plan-table, .plan-table tbody, .plan-table tr, .plan-table td {
    display: block;
    width: 100%;
  }
  .plan-table td {
    border-bottom: none;
    padding: 12px 12px;
    background: #FFF;
    margin-bottom: 8px;
  }
}

/***** FAQ PATTERNS *****/
.faq {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-item {
  background: #FFF;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 12px var(--color-shadow);
  padding: 24px 20px;
  margin-bottom: 12px;
  transition: box-shadow 0.17s, transform 0.13s;
}
.faq-item h3 {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 1.13rem;
  margin-bottom: 9px;
}
.faq-item:hover {
  box-shadow: 0 6px 28px var(--color-shadow-heavy);
  transform: scale(1.02);
}

/***** TESTIMONIALS *****/
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: var(--color-accent2);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 12px var(--color-shadow);
  padding: 20px 26px;
  flex: 1 1 240px;
  min-width: 220px;
  color: #2D2D2D;
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.testimonial-card p {
  color: #133E63;
  font-size: 1.08rem;
  margin-bottom: 8px;
}
.testimonial-card span {
  font-family: var(--font-body);
  color: #594528;
  font-weight: 600;
  font-size: 0.98rem;
}
@media (max-width: 768px) {
  .testimonials {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card {
    min-width: 0;
    width: 100%;
  }
}

/***** LOCATION MAP PLACEHOLDER *****/
.location-map {
  background: #FFE6C7;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 12px var(--color-shadow);
  padding: 24px 20px;
  margin: 18px 0;
}
.location-map p {
  color: #133E63;
  font-size: 1.02rem;
}

/***** FOOTER *****/
footer {
  width: 100%;
  background: var(--color-primary);
  color: var(--color-accent);
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
  box-shadow: 0 -2px 20px var(--color-shadow);
  padding-top: 32px;
  padding-bottom: 28px;
  margin-top: 64px;
}
footer .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 28px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-brand img {
  height: 38px;
  width: auto;
}
.footer-brand span {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--color-accent);
  font-weight: 600;
}
.footer-links nav {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-links a {
  color: var(--color-accent);
  transition: color 0.13s;
  font-size: 0.99rem;
  font-family: var(--font-body);
}
.footer-links a:hover, .footer-links a:focus {
  color: var(--color-secondary);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.99rem;
}
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--color-accent);
}
.footer-contact img {
  height: 20px;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 17px;
    align-items: flex-start;
  }
}

/***** COOKIE CONSENT BANNER *****/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 5000;
  background: #FFE6C7;
  color: #133E63;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 -1px 34px var(--color-shadow);
  padding: 22px 16px 17px 16px;
  gap: 14px;
  animation: appear-up 0.7s cubic-bezier(.39,1.7,.78,1) 1;
}
@keyframes appear-up {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner-buttons {
  display: flex;
  gap: 16px;
}
.cookie-banner button {
  font-family: var(--font-display);
  font-weight: 600;
  border-radius: var(--radius-md);
  border: none;
  padding: 10px 24px;
  font-size: 1rem;
  box-shadow: 0 1px 5px var(--color-shadow);
  transition: background 0.16s, color 0.16s, box-shadow 0.14s;
  margin-right: 0;
}
.cookie-banner .accept {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.cookie-banner .reject {
  background: #E27D60;
  color: #FFF;
}
.cookie-banner .settings {
  background: var(--color-primary);
  color: #FFF;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  box-shadow: 0 4px 16px var(--color-shadow-heavy);
  filter: brightness(.93);
}

/***** COOKIE CONSENT MODAL *****/
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(19,62,99,.24);
  z-index: 6000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: appear-fadein .26s ease;
}
@keyframes appear-fadein {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #FFF;
  color: #133E63;
  border-radius: var(--radius-lg);
  padding: 40px 32px 24px 32px;
  width: 95%;
  max-width: 410px;
  box-shadow: 0 6px 38px var(--color-shadow-heavy);
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: appear-up .30s cubic-bezier(.39,1.7,.78,1);
}
.cookie-modal h3 {
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 1.3rem;
}
.cookie-modal .category {
  margin-bottom: 18px;
}
.cookie-modal .category label {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 1.05rem;
  cursor: pointer;
}
.cookie-modal .category input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: var(--color-secondary);
  border-radius: 6px;
}
.cookie-modal .category .essential[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}
.cookie-modal-actions button {
  border-radius: var(--radius-md);
  padding: 10px 18px;
  font-weight: 600;
  font-family: var(--font-display);
  transition: background .16s, color .16s, box-shadow .14s;
  box-shadow: 0 1px 5px var(--color-shadow);
}
.cookie-modal-actions .save {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.cookie-modal-actions .cancel {
  background: var(--color-primary);
  color: #FFF;
}
.cookie-modal-actions button:hover, .cookie-modal-actions button:focus {
  filter: brightness(.94);
}

/***** RESPONSIVE & MOBILE-FRIENDLY DETAILS *****/
@media (max-width: 900px) {
  .container {
    max-width: 99vw;
    padding: 0 8px;
  }
  section {
    padding: 28px 8px;
    margin-bottom: 36px;
  }
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.3rem; }
  .plan-card { padding: 19px 13px; }
  .card { padding: 16px 10px; }
  .faq-item { padding: 13px 9px; }
  .location-map { padding: 13px 9px; }
}
@media (max-width: 700px) {
  .plan-card,
  .testimonial-card,
  .content-wrapper,
  .features-list li, .benefits-list li,
  .stats-list li,
  .service-list li {
    width: 100%;
    min-width: 0 !important;
    font-size: 0.97rem;
  }
}
@media (max-width: 500px) {
  section {
    padding: 16px 2vw;
    margin-bottom: 26px;
  }
  .cookie-modal { padding: 18px 5vw 12px 5vw; }
  .cta-btn, .cookie-banner button {
    font-size: 0.93rem;
    padding: 9px 0.9em;
  }
}

/* ==== MICRO-INTERACTIONS & TRANSITIONS ==== */
.cta-btn, .plan-card, .card, .faq-item, .testimonial-card, .cookie-banner button, .cookie-modal-actions button {
  transition: background 0.18s, color 0.15s, box-shadow 0.16s, transform 0.17s;
}

/* ===== SPECIAL STATES & UTILITY CLASSES ===== */
.d-none { display: none!important; }
.d-flex { display: flex!important; }
.align-center { align-items: center!important; }
.justify-center { justify-content: center!important; }

/* ===== ALIGNMENT: see patterns already used for section, features, cards, testimonials, etc. ===== */
/****
- .section { margin-bottom: 60px; padding: 40px 20px; }
- .card-container { display: flex; flex-wrap: wrap; gap: 24px; }
- .card { margin-bottom: 20px; position: relative; }
- .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; align-items: center; gap: 20px; padding: 20px; }
- .feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }
****/