/* ==== 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;
}
html {
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  line-height: 1.5;
  background: #fff;
  color: #23272A;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
}
main {
  flex: 1 0 auto;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s;
}
a:focus {
  outline: 2px solid #FFD600;
  outline-offset: 2px;
}
ul, ol {
  padding-left: 1.25em;
}
img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  color: #23272A;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 24px;
  text-transform: uppercase;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1.1rem;
  font-weight: 700;
}
p, li, dl, dt, dd {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #23272A;
}
p {
  margin-bottom: 18px;
}
strong {
  font-weight: 700;
}

/* ==== LAYOUT CONTAINERS ==== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 18px 0 rgba(35,39,42,0.05);
}
@media (max-width: 768px) {
  .section {
    padding: 28px 8px;
    margin-bottom: 36px;
  }
  .container {
    padding: 0 8px;
  }
}

/* ==== HEADER & NAV ==== */
header {
  background: #23272A;
  color: #fff;
  width: 100%;
  box-shadow: 0 2px 8px rgba(35,39,42,0.09);
  position: relative;
  z-index: 30;
}
.logo img {
  height: 44px;
  width: auto;
  display: block;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 16px 20px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #fff;
  padding: 8px 0;
  letter-spacing: 0.02em;
  font-size: 1rem;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  position: relative;
}
.main-nav a:not(.cta-primary):hover {
  color: #FFD600;
  background: rgba(255, 214, 0, 0.06);
}
.main-nav .cta-primary {
  background: #25A366;
  color: #fff;
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 1.07rem;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(37,163,102,0.13);
  letter-spacing: 0.06em;
  transition: background 0.15s, color 0.15s, box-shadow 0.15s;
}
.main-nav .cta-primary:hover, .main-nav .cta-primary:focus {
  background: #FFD600;
  color: #23272A;
  box-shadow: 0 4px 28px 0 rgba(255,214,0,0.20);
}

/* ==== MOBILE MENU ==== */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  padding: 4px 12px;
  line-height: 1;
  border-radius: 8px;
  z-index: 101;
  transition: background 0.15s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #FFD600;
  color: #23272A;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100vw;
  width: 96vw;
  max-width: 370px;
  height: 100vh;
  background: #23272A;
  box-shadow: -4px 0 36px 0 rgba(35,39,42,0.18);
  z-index: 200;
  display: flex;
  flex-direction: column;
  padding: 30px 18px 18px 32px;
  transition: transform 0.35s cubic-bezier(.18,.7,.67,1.09), right 0.35s cubic-bezier(.18,.7,.67,1.09);
  transform: translateX(100vw);
}
.mobile-menu.open {
  right: 0;
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  right: 24px;
  top: 22px;
  background: none;
  border: none;
  color: #FFD600;
  font-size: 2rem;
  cursor: pointer;
  z-index: 202;
  padding: 4px 10px;
  border-radius: 8px;
  transition: background 0.15s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: rgba(255, 214, 0, 0.18);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 60px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.22rem;
  font-weight: 700;
  padding: 6px 0;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
  display: block;
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  background: #25A366;
  color: #FFD600;
}
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1025px) {
  .mobile-menu { display: none !important; }
}

/* ==== HERO ==== */
.hero {
  background: linear-gradient(120deg,#FFD600 0%,#fff 68%);
  border-radius: 0 0 32px 32px;
  box-shadow: 0 4px 36px rgba(37,163,102,0.05);
  margin-bottom: 48px;
  padding: 54px 0 38px 0;
  position: relative;
}
.hero h1 {
  color: #23272A;
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 20px;
}
.hero p {
  color: #23272A;
  font-size: 1.2rem;
  margin-bottom: 30px;
  font-weight: 500;
}
.hero .cta-primary {
  font-size: 1.09rem;
  font-weight: 900;
}
@media (max-width: 768px) {
  .hero { padding: 26px 0 10px 0; margin-bottom: 28px; border-radius: 0 0 18px 16px; }
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1.03rem; }
}

/* ==== FEATURES ==== */
.features {
  background: #fff;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
}
.feature-grid li {
  flex: 1 1 238px;
  background: #F7F9FA;
  padding: 24px 18px;
  border-radius: 20px;
  text-align: left;
  min-width: 180px;
  box-shadow: 0 2px 14px rgba(37,163,102,0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  transition: box-shadow 0.19s, transform 0.13s;
  border: 2.5px solid transparent;
}
.feature-grid li:hover,
.feature-grid li:focus-within {
  box-shadow: 0 6px 32px 0 rgba(37,163,102,0.11);
  border-color: #FFD600;
  transform: translateY(-3px) scale(1.03);
}
.feature-grid img {
  width: 34px; height: 34px;
  margin-bottom: 7px;
}
.feature-grid h3 {
  font-size: 1.17rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  color: #25A366;
  margin-bottom: 4px;
}
.feature-grid p {
  font-size: 1rem;
  color: #23272A;
}

@media (max-width: 900px) {
  .feature-grid { gap: 16px; }
  .feature-grid li { flex: 1 1 100%; min-width: 0; }
}
@media (max-width: 768px) {
  .feature-grid { flex-direction: column; gap: 14px; }
  .feature-grid li { width: 100%; }
}

/* ==== SERVICE HIGHLIGHTS ==== */
.service-highlights {
  background: #F7F9FA;
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  margin-top: 10px;
}
.service-list li {
  flex: 1 1 230px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(35,39,42,0.06);
  padding: 20px 14px 16px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-left: 5px solid #25A366;
  min-width: 175px;
}
.service-list h3 {
  font-size: 1.04rem;
  color: #25A366;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
}
.service-list p {
  font-size: 0.97rem;
  color: #23272A;
}
@media (max-width: 900px) {
  .service-list { gap: 14px; }
  .service-list li { flex: 1 1 100%; }
}
@media (max-width: 768px) {
  .service-list { flex-direction: column; gap: 10px; }
  .service-list li { min-width: 0; }
}

/* ==== TESTIMONIAL ==== */
.testimonials {
 background: #fff;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #FFD600;
  color: #23272A;
  border-radius: 18px;
  box-shadow: 0 2px 14px rgba(35,39,42,0.08);
  padding: 24px 20px 18px 22px;
  min-width: 205px;
  flex: 1 1 240px;
  position: relative;
  gap: 20px;
  margin-bottom: 20px;
  border: 2px solid #25A366;
  transition: box-shadow 0.17s, transform 0.13s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 24px 0 rgba(37,163,102,0.14);
  transform: translateY(-2px) scale(1.025);
}
.testimonial-card p {
  font-size: 1.22rem;
  font-weight: 700;
  color: #23272A;
}
.testimonial-author {
  font-size: 0.98rem;
  font-weight: 500;
  color: #23272A;
  font-family: 'Montserrat', Arial, sans-serif;
}
@media (max-width: 900px) {
  .testimonial-slider {
    flex-direction: column;
    gap: 14px;
  }
  .testimonial-card {
    min-width: 0;
    flex: 1 1 100%;
  }
}

/* ==== CTA Section ==== */
.cta-section {
  background: #25A366;
  border-radius: 28px;
  box-shadow: 0 2px 18px rgba(37,163,102,0.13);
  color: #fff;
  text-align: center;
  position: relative;
}
.cta-section h2 {
  color: #FFD600;
  font-size: 2rem;
  margin-bottom: 12px;
  font-weight: 900;
}
.cta-section p {
  color: #fff;
  font-size: 1.12rem;
  margin-bottom: 20px;
  font-weight: 500;
}
.cta-section .cta-primary {
  background: #FFD600;
  color: #23272A;
  font-weight: 900;
  border-radius: 100px;
  font-size: 1rem;
  padding: 14px 36px;
  transition: background 0.16s, color 0.16s, box-shadow 0.13s;
  box-shadow: 0 2px 8px rgba(255,214,0,0.09);
  text-transform: uppercase;
}
.cta-section .cta-primary:hover, 
.cta-section .cta-primary:focus {
  background: #25A366;
  color: #FFD600;
  box-shadow: 0 4px 18px rgba(35,39,42,0.13);
}
@media (max-width: 768px) {
  .cta-section { border-radius: 12px; }
  .cta-section h2 { font-size: 1.3rem; }
}

/* ==== PRICING TABLE ==== */
.pricing-table {
  border-spacing: 0;
  width: 100%;
  margin: 16px 0 26px 0;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(35,39,42,0.04);
}
.pricing-table th,
.pricing-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid #F3F3F5;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
}
.pricing-table th {
  background: #23272A;
  color: #FFD600;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.09rem;
  font-weight: 800;
  border-bottom: 3px solid #25A366;
}
.pricing-table tbody tr:last-child td {
  border-bottom: none;
}

/* ==== FAQ ==== */
.faq-accordion-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 16px 0;
}
.faq-accordion-list details {
  background: #F7F9FA;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(35,39,42,0.05);
  padding: 12px 18px 10px 18px;
  margin-bottom: 8px;
  font-size: 1rem;
  border: 2px solid transparent;
  transition: border 0.13s;
}
.faq-accordion-list details[open], 
.faq-accordion-list details:focus-within {
  border: 2px solid #FFD600;
}
.faq-accordion-list summary {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  cursor: pointer;
  outline: none;
  color: #25A366;
  margin-bottom: 8px;
  list-style: none;
}
.faq-accordion-list div {
  margin-top: 8px;
  color: #23272A;
}

.faq-list dt {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1rem;
  margin-top: 18px;
  color: #25A366;
}
.faq-list dd {
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 8px;
  margin-left: 0;
}

/* ==== ICON LIST (ABOUT) ==== */
.icon-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 10px;
}
.icon-list li {
  flex: 1 1 210px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 10px;
  font-size: 1rem;
  color: #23272A;
  background: #F7F9FA;
  border-radius: 14px;
  margin-bottom: 12px;
  min-width: 150px;
}
.icon-list img {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .icon-list { flex-direction: column; gap: 8px; }
  .icon-list li { min-width: 0; }
}

/* ==== DELIVERY ZONES & PRICING NOTES ==== */
.delivery-zones, .pricing-notes {
  background: #F7F9FA;
  border-radius: 12px;
  padding: 14px 16px;
  margin: 8px 0 24px 0;
  box-shadow: 0 1px 6px rgba(35,39,42,0.03);
}
.delivery-zones h3 {
  color: #25A366;
  font-size: 1.07rem;
  margin-bottom: 6px;
}
.pricing-notes ul { list-style: disc inside; margin: 0; padding: 0; }
.pricing-notes li { margin-bottom: 3px; }

/* ==== SERVICE TABS ==== */
.service-category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 16px 0;
}
.service-category-tabs a {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #F7F9FA;
  color: #25A366;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 20px;
  font-size: 1rem;
  border: 2px solid #25A366;
  transition: background 0.15s, color 0.15s, border 0.15s;
}
.service-category-tabs a:hover, .service-category-tabs a:focus {
  background: #25A366;
  color: #FFD600;
  border: 2px solid #FFD600;
}
@media (max-width: 600px) {
  .service-category-tabs {
    flex-direction: column;
    gap: 5px;
  }
  .service-category-tabs a {
    width: 100%;
    text-align: center;
  }
}

/* ==== CONTACT PAGE STYLES ==== */
.text-section {
  margin-bottom: 20px;
  background: #F7F9FA;
  border-radius: 14px;
  padding: 18px 18px 8px 18px;
  box-shadow: 0 1px 8px rgba(37,163,102,0.03);
}
.text-section h2 {
  color: #25A366;
  font-size: 1.03rem;
  font-weight: 800;
  margin-bottom: 4px;
}
.text-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.text-section ul li {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 7px;
  font-size: 1rem;
}
.text-section ul img {
  width: 22px; height: 22px;
}

/* ==== NEXT STEPS INFO (Thank you) ==== */
.next-steps-info {
  background: #F7F9FA;
  border-radius: 14px;
  padding: 14px 14px;
  margin: 10px 0 20px 0;
  box-shadow: 0 1px 6px rgba(35,39,42,0.05);
}
.next-steps-info ul {
  margin: 0 0 0 14px;
  padding: 0;
  list-style: disc inside;
}
.next-steps-info li {
  margin-bottom: 6px;
  color: #23272A;
}

/* ==== FOOTER ==== */
footer {
  background: #23272A;
  color: #FFD600;
  padding: 34px 0 4px 0;
  border-top: 6px solid #25A366;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
  margin-bottom: 10px;
}
.footer-nav a {
  color: #FFD600;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 6px 10px;
  border-radius: 8px;
  transition: background 0.13s, color 0.13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #25A366;
  color: #fff;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.99rem;
  color: #FFD600;
}
.footer-contact img { width: 18px; height: 18px; margin-right: 6px; }
.footer-contact a { color: #FFD600; text-decoration: underline; font-weight: 500; }
.footer-social {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 10px;
}
.footer-social a img {
  width: 32px;
  height: 32px;
  filter: grayscale(0.2) brightness(1) contrast(1.4);
  transition: filter 0.13s, opacity 0.13s;
}
.footer-social a:hover img {
  filter: none;
  opacity: 0.8;
}
.footer-copy {
  font-size: 0.95rem;
  color: #fff;
  margin-top: 20px;
  opacity: 0.8;
  flex-basis: 100%;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}

/* ==== BUTTONS AND INTERACTIONS ==== */
.cta-primary, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25A366;
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 12px 33px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(37,163,102,0.14);
  transition: background 0.15s, color 0.14s, box-shadow 0.15s, transform 0.13s;
  margin-top: 7px;
  margin-bottom: 7px;
  outline: none;
  position: relative;
}
.cta-primary:focus, .button:focus {
  box-shadow: 0 0 0 3px #FFD600, 0 4px 18px rgba(35,39,42,0.14);
}
.cta-primary:hover, .button:hover {
  background: #FFD600;
  color: #23272A;
  transform: scale(1.04) translateY(-2px);
}

/* ================= Cookie Consent Banner & Modal =================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #23272A;
  color: #FFD600;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 26px;
  box-shadow: 0 -4px 20px 0 rgba(35,39,42,0.13);
  padding: 22px 32px 22px 18px;
  z-index: 9999;
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.32s cubic-bezier(.34,.99,.38,1.18), opacity 0.18s;
}
.cookie-banner.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.cookie-banner p {
  color: #FFD600;
  font-size: 1.08rem;
  margin: 0 10px 0 0;
  flex: 1 1 auto;
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-banner button {
  background: #FFD600;
  color: #23272A;
  font-weight: 800;
  border: none;
  border-radius: 20px;
  padding: 10px 22px;
  cursor: pointer;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  margin: 0;
  transition: background 0.13s, color 0.13s, box-shadow 0.12s;
}
.cookie-banner button:focus,
.cookie-banner button:hover {
  background: #25A366;
  color: #FFD600;
}
.cookie-banner .cookie-settings-btn {
  background: #23272A;
  color: #FFD600;
  border: 2px solid #FFD600;
}
.cookie-banner .cookie-settings-btn:focus,
.cookie-banner .cookie-settings-btn:hover {
  background: #FFD600;
  color: #23272A;
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 20px 8px 22px 8px;
    font-size: 0.97rem;
  }
  .cookie-banner p { font-size: 0.97rem; }
  .cookie-banner .cookie-buttons {
    gap: 8px;
    width: 100%;
    flex-wrap: wrap;
  }
  .cookie-banner button { width: 100%; }
}

.cookie-modal-backdrop {
  display: none;
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(35,39,42,0.45);
  z-index: 99999;
  justify-content: center;
  align-items: center;
}
.cookie-modal-backdrop.show {
  display: flex;
  animation: cookie-modal-fadein 0.26s;
}
@keyframes cookie-modal-fadein {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 24px;
  padding: 38px 32px 26px 32px;
  box-shadow: 0 6px 32px rgba(35,39,42,0.22);
  min-width: 320px;
  max-width: 95vw;
  font-family: 'Roboto', Arial, sans-serif;
  color: #23272A;
  display: flex;
  flex-direction: column;
  gap: 17px;
  border: 3.5px solid #FFD600;
  position: relative;
  animation: cookie-modal-slidein 0.29s cubic-bezier(.19,1,.22,1);
}
@keyframes cookie-modal-slidein {
  from { transform: translateY(80px) scale(0.97); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  color: #25A366;
  font-size: 1.38rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  margin-bottom: 4px;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 19px;
  right: 21px;
  background: none;
  border: none;
  color: #25A366;
  font-size: 2rem;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.12s;
}
.cookie-modal .modal-close:focus,
.cookie-modal .modal-close:hover {
  background: #F7F9FA;
}
.cookie-modal .cookie-category-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-category {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: #F7F9FA;
  border-radius: 10px;
  padding: 10px 13px;
}
.cookie-category label {
  font-weight: 700;
  font-size: 1rem;
  color: #23272A;
  display: flex;
  align-items: center;
  gap: 11px;
}
.cookie-category input[type="checkbox"] {
  accent-color: #25A366;
  width: 22px;
  height: 22px;
  cursor: pointer;
}
.cookie-category .category-desc {
  font-size: 0.93rem;
  color: #23272A;
  opacity: 0.78;
}
.cookie-modal .modal-save {
  margin-top: 10px;
  background: #25A366;
  color: #fff;
  border: none;
  border-radius: 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 1rem;
  padding: 13px 24px;
  cursor: pointer;
  transition: background 0.13s, color 0.13s, box-shadow 0.12s;
  box-shadow: 0 2px 6px rgba(35,39,42,0.13);
}
.cookie-modal .modal-save:focus,
.cookie-modal .modal-save:hover {
  background: #FFD600;
  color: #23272A;
  box-shadow: 0 4px 28px 0 rgba(255,214,0,0.17);
}
@media (max-width: 768px) {
  .cookie-modal {
    padding: 18px 8px 12px 8px;
    min-width: 0;
    font-size: 0.93rem;
    border-radius: 10px;
  }
}

/* ==== FLEXBOX LAYOUT PRESETS ==== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(35,39,42,0.07);
  padding: 18px 14px;
  min-width: 150px;
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .card-container {
    flex-direction: column;
    gap: 14px;
  }
}

/* ======= Micro-Animation Hints ======= */
a, button, .cta-primary, .main-nav a, .footer-nav a, .service-category-tabs a {
  transition: color 0.17s, background 0.13s, box-shadow 0.13s, transform 0.13s;
}

/* ===== Scrollbars (Modern) ===== */
html {
  scrollbar-color: #25A366 #F7F9FA;
  scrollbar-width: thin;
}
::-webkit-scrollbar {
  width: 10px;
  background: #F7F9FA;
}
::-webkit-scrollbar-thumb {
  background: #25A366;
  border-radius: 8px;
}

/* ===== Responsive Typography ===== */
@media (max-width: 1200px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.1rem; }
  body { font-size: 15px; }
}
@media (max-width: 600px) {
  h1 { font-size: 1.36rem; }
  h2 { font-size: 1rem; }
  h3 { font-size:0.99rem; }
  body { font-size: 14px; }
}

/* ===== Misc. helpers ===== */
.visually-hidden {
  position:absolute!important;
  height:1px; width:1px;
  overflow:hidden; clip:rect(1px,1px,1px,1px);
  white-space:nowrap;
}

/******************************************/
/* ============= END OF CSS ============= */
/******************************************/
