/* --- CSS RESET & BASES (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;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.4;
  background: #F4F2F0;
  color: #2A2A2A;
  font-family: 'Open Sans', Arial, sans-serif;
  min-height: 100vh;
}
img {
  border: 0; 
  max-width: 100%; 
  display: block;
}
* { box-sizing: border-box; }
a {
  color: #25643B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #C99343;
  outline: none;
}


/* --- VARIABLES FOR BRAND COLORS AND FONTS --- */
:root {
  --primary: #25643B;
  --primary-dark: #17452C;
  --secondary: #F4F2F0;
  --accent: #C99343;
  --accent-dark: #A36B10;
  --white: #fff;
  --black: #191A19;
  --gray-light: #f9f7f6;
  --gray: #bdbdbd;
  --shadow: 0 4px 32px 0 rgba(37,100,59,0.11);

  --display-font: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
  --body-font: 'Open Sans', Arial, sans-serif;
}


/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--display-font);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.13;
}
h1 { font-size: 2.8rem; }
h2 { font-size: 2.1rem; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.95rem; }
p, ul, ol, li, span, label, blockquote {
  font-family: var(--body-font); 
  font-size: 1.06rem;
  color: var(--black);
  margin-bottom: 14px;
  line-height: 1.55;
}
strong { color: var(--accent); font-weight: bold; }
blockquote {
  font-style: italic;
  color: var(--primary-dark);
  margin: 18px 0 16px 0;
  padding-left: 16px;
  border-left: 4px solid var(--accent-dark);
  font-size: 1.22rem;
  background: var(--gray-light);
}

/* --- LAYOUT CONTAINERS & SPACING --- */
.container {
  width: 100%;
  max-width: 1130px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
  background: none;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container { 
  display: flex; 
  flex-wrap: wrap; 
  gap: 24px; 
}
.card {
  margin-bottom: 20px;
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px 20px;
  min-width: 260px;
}
.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: center;
  gap: 20px;
  padding: 20px;
  background: var(--secondary);
  box-shadow: 0 3px 18px rgba(37,100,59,0.07);
  border-radius: 24px;
  margin-bottom: 24px;
  min-width: 260px;
  max-width: 500px;
  transition: transform 0.18s, box-shadow 0.18s;
}
.testimonial-card:hover {
  transform: translateY(-6px) scale(1.025);
  box-shadow: 0 8px 28px rgba(37,100,59,0.13);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- HEADER --- */
header {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 2px 16px rgba(37,100,59,0.07);
  position: relative;
  z-index: 20;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px 16px 18px;
}
header a img {
  height: 44px;
  margin-right: 18px;
}
nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
nav a {
  color: var(--white);
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 1.04rem;
  padding: 6px 3px;
  border-radius: 6px;
  transition: background 0.14s, color 0.14s;
}
nav a:hover, nav a:focus {
  background: var(--accent);
  color: var(--primary); 
}
.cta-btn {
  font-family: var(--display-font);
  background: var(--accent);
  color: var(--white);
  padding: 10px 28px;
  border-radius: 24px;
  font-weight: 700;
  font-size: 1.11rem;
  box-shadow: 0 3px 14px rgba(37,100,59,0.17);
  border: none;
  margin-left: 18px;
  cursor: pointer;
  transition: background 0.11s, color 0.15s, box-shadow 0.19s;
  text-shadow: 0 1px 3px rgba(0,0,0,0.08);
  letter-spacing: 0.03em;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--accent-dark);
  color: var(--white);
  box-shadow: 0 8px 26px rgba(37,100,59,0.18);
}

/*--- MOBILE HEADER ---*/
.mobile-menu-toggle {
  display: none;
  background: var(--accent);
  color: var(--white);
  border: none;
  font-size: 2.1rem;
  padding: 6px 20px 9px 20px;
  border-radius: 16px;
  margin-left: 14px;
  cursor: pointer;
  z-index: 111;
  box-shadow: 0 2px 9px rgba(195,147,67,0.12);
  transition: background 0.13s, color 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--primary-dark);
  color: var(--accent);
}


/* --- HERO SECTION --- */
.hero {
  background: linear-gradient(114deg, var(--secondary) 74%, var(--accent) 150%);
  border-bottom-right-radius: 72px;
  border-bottom-left-radius: 26px;
  box-shadow: 0 7px 44px rgba(37,100,59,0.045);
  margin-bottom: 48px;
  padding: 55px 0 48px 0;
  display: flex;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  position: relative;
}
.hero .content-wrapper {
  max-width: 620px;
}
.hero h1 {
  color: var(--accent-dark);
  text-shadow: 2px 3px 14px #fff1;
  font-family: var(--display-font);
  font-size: 2.5rem;
  margin-bottom: 17px;
  letter-spacing: 0.02em;
}
.hero p {
  color: var(--primary);
  font-size: 1.13rem;
  margin-bottom: 25px;
}

/* --- FEATURES GRID --- */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 24px;
  margin-bottom: 18px;
}
.feature {
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: 18px;
  padding: 28px 22px 26px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 220px;
  flex: 1 1 220px;
  transition: box-shadow 0.15s, transform 0.14s;
  position: relative;
  margin-bottom: 20px;
}
.feature img {
  height: 42px;
  width: 42px;
  margin-bottom: 15px;
}
.feature h3 {
  font-size: 1.24rem;
  margin-bottom: 10px;
  color: var(--accent-dark);
  letter-spacing: 0.02em;
}
.feature p {
  color: var(--primary-dark);
  font-size: 1rem;
}
.feature:hover {
  box-shadow: 0 9px 29px rgba(195,147,67,0.17);
  transform: translateY(-2px) scale(1.025);
}

/* --- SERVICES LIST --- */
.services-list, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 20px 0 30px 0;
}
.service-item {
  background: var(--white);
  box-shadow: 0 2px 9px rgba(37,100,59,0.09);
  border-radius: 16px;
  padding: 22px 20px 18px 20px;
  min-width: 220px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  justify-content: flex-start;
  margin-bottom: 20px;
  transition: box-shadow 0.17s, transform 0.17s;
}
.service-item h3 {
  font-family: var(--display-font);
  font-size: 1.11rem;
  color: var(--accent-dark);
}
.service-item p {
  font-family: var(--body-font);
  font-size: 0.99rem;
  color: var(--primary-dark);
}
.service-item span {
  color: var(--accent);
  font-weight: bold;
  margin-top: 9px;
  font-size: 1rem;
}
.service-item:hover {
  box-shadow: 0 10px 24px rgba(37,100,59,0.12);
  transform: translateY(-3px) scale(1.025);
}

/* --- TABLES --- */
table {
  border-collapse: collapse;
  width: 100%;
  margin-top: 18px;
  margin-bottom: 24px;
  background: var(--secondary);
  box-shadow: 0 3px 13px rgba(37,100,59,0.08);
  border-radius: 16px;
  overflow: hidden;
  font-family: var(--body-font);
  font-size:1rem;
}
table th, table td {
  font-size: 0.99rem;
  padding: 14px 9px;
}
table th {
  background: var(--accent);
  color: var(--white);
  border-radius: 0;
}
table tr {
  border-bottom: 1px solid #eaeaea;
}
table tr:last-child { border-bottom: none; }
table td { color: var(--primary-dark); }

/* --- ICONS & ICON GRID --- */
.icon-grid {
  display: flex;
  gap: 22px;
  margin: 22px 0 16px 0;
  align-items: center;
}
.icon-grid img {
  height: 42px;
  width: 42px;
  border-radius: 11px;
  background: var(--secondary);
  box-shadow: 0 2px 7px rgba(195,147,67,0.06);
}

/* --- TESTIMONIALS --- */
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 16px;
  justify-content: flex-start;
}
.testimonial-card p {
  color: #222;
  font-size: 1.08rem;
  margin-bottom: 4px;
  text-align: left;
  font-family: var(--body-font);
}
.testimonial-card span {
  color: var(--primary);
  font-weight: 600;
  font-size: 1rem;
  align-self: flex-end;
}
.stars {
  color: var(--accent-dark);
  font-size: 1.33rem;
  letter-spacing: 2px;
}

/* --- QUICK LINKS --- */
.quick-links {
  margin-top: 20px;
  font-family: var(--body-font);
  font-size: 1rem;
  color: var(--primary-dark);
}
.quick-links a {
  color: var(--accent-dark);
  text-decoration: underline;
  margin: 0 4px;
}
.quick-links a:hover {
  color: var(--primary);
}

/* --- CTA SECTION --- */
.cta-section {
  background: var(--primary);
  color: var(--white);
  border-radius: 36px;
  box-shadow: 0 6px 22px rgba(37,100,59,0.09);
  margin-bottom: 0;
  padding: 44px 0 40px 0;
}
.cta-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-section .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.cta-section h2 {
  color: var(--accent);
  font-size: 2.05rem;
  margin-bottom: 12px;
}
.cta-section p {
  color: #ffffff;
  font-size:1.11rem;
  margin-bottom: 12px;
}
.cta-section .cta-btn{
  margin-top:12px;
}
.contact-short {
  margin-top: 18px;
  background: var(--accent);
  color: var(--white);
  border-radius: 14px;
  padding: 13px 16px 9px 16px;
  font-family: var(--body-font);
  font-size: 0.97rem;
  line-height:1.42;
}
.cta-section .contact-short p,strong{
  color: #fff !important;
  margin-bottom: 6px;
}

/* --- FOOTER --- */
footer {
  background: var(--primary);
  color: var(--white);
  border-top-right-radius: 54px;
  box-shadow: 0 -7px 39px rgba(37,100,59,0.11);
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px 18px 25px 18px;
}
.footer-menu {
  display: flex;
  gap: 18px;
  margin-bottom: 10px;
}
.footer-menu a {
  color: var(--accent);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing:0.01em;
  padding: 3px 6px;
  border-radius: 6px;
  background: rgba(255,255,255,0.05);
  transition: background 0.14s, color 0.17s;
}
.footer-menu a:hover {
  background: var(--accent);
  color: var(--white);
}
.brand-info {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand-info img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
}
.brand-info span {
  font-family: var(--body-font);
  font-size: 0.98rem;
  color: #eaeaea;
}

/* --- TEXT SECTION --- */
.text-section {
  background: var(--white);
  box-shadow: 0 2px 11px rgba(37,100,59,0.038);
  border-radius: 21px;
  padding: 32px 26px;
  margin-bottom: 24px;
}
.text-section h2, .text-section h3 {
  margin-bottom: 14px;
  color: var(--primary);
}
.text-section ul, .text-section ol{
  margin:12px 0 18px 18px;
  padding-left: 18px;
}
.text-section li{
  margin-bottom: 9px;
  font-size:1.01rem;
}
.address-block{
  margin:13px 0 10px 0;
  padding:9px 12px;
  background:var(--secondary);
  border-radius:11px;
  color:var(--primary-dark);
}

/* --- HIGHLIGHT QUOTES --- */
.highlight-quotes {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 14px;
}
.highlight-quotes blockquote {
  font-size: 1.12rem;
  color: var(--accent-dark);
  background: var(--secondary);
  border-left: 5px solid var(--primary);
  padding: 13px 18px;
  border-radius: 10px;
}

/* --- FAQ LIST --- */
.faq-list h3 {
  color: var(--accent-dark);
  margin-top: 17px;
}
.faq-list p {
  color: var(--primary-dark);
  margin-bottom: 12px;
}

/* --- TARGET AUDIENCE --- */
.target-audience {
  margin: 19px 0 19px 0;
  background: var(--gray-light);
  border-radius: 15px;
  padding: 16px 18px 10px 18px;
}
.target-audience h3 {
  color: var(--accent-dark);
}
.target-audience ul {
  margin: 8px 0 0 16px;
}
.target-audience li {
  list-style: disc;
  color: var(--primary);
  font-size: 0.99rem;
}


/* --- BUTTONS, TRANSITIONS --- */
button, .cta-btn, .mobile-menu-close, .mobile-menu-toggle, .cookie-btn {
  cursor: pointer;
  outline: none;
}
button {
  font-family: var(--display-font);
  border-radius: 12px;
  padding: 7px 15px;
  border: none;
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.16s, box-shadow 0.15s, color 0.13s;
}
button:hover {
  background: var(--primary-dark);
  color: var(--accent);
}


/* --- MOBILE MENU --- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(37,100,59,0.91);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  transform: translateX(100%);
  transition: transform 0.37s cubic-bezier(0.35,0.73,0.45,1.06);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0%);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  margin: 22px 27px 12px 0;
  font-size: 2.15rem;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 17px;
  width: 53px;
  height: 53px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 13px rgba(195,147,67,0.17);
  transition: background 0.15s, color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--primary-dark);
  color: var(--accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 19px;
  background: none;
  width: 100vw;
  padding: 16px 32px 0 48px;
  align-items: flex-end;
  margin-top: 18px;
}
.mobile-nav a {
  color: var(--white);
  font-family: var(--display-font);
  font-size: 1.28rem;
  padding: 11px 0;
  border-radius: 12px;
  width: 100%;
  text-align: right;
  transition: background 0.15s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--accent);
  color: var(--primary);
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  width: 100vw;
  left: 0;
  background: #FFF9F4;
  border-top: 3px solid var(--accent-dark);
  box-shadow: 0 -7px 19px rgba(37,100,59,0.13);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  z-index: 151;
  padding: 20px 12px 20px 12px;
  font-family: var(--body-font);
  font-size: 1rem;
  animation: cookie-slideup 0.7s cubic-bezier(.66,-0.05,.45,1.11);
}
.cookie-banner-content {
  text-align: center;
  color: var(--primary-dark);
  margin-bottom: 9px;
}
.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 13px;
  justify-content: center;
  flex-wrap: wrap;
}
.cookie-btn {
  font-family: var(--display-font);
  background: var(--accent);
  color: var(--white);
  padding: 7px 22px;
  border-radius: 17px;
  font-weight: 700;
  font-size: 1.01rem;
  border: none;
  margin: 3px 0;
  transition: background 0.18s, color 0.13s, box-shadow 0.15s;
  box-shadow:0 2px 11px #c993430c;
}
.cookie-btn.settings {
  background: var(--primary-dark);
  color: var(--white);
}
.cookie-btn.reject {
  background: #D67648;
  color: #fff;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--primary);
  color: var(--accent);
}
@keyframes cookie-slideup {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* --- COOKIE MODAL --- */
.cookie-modal {
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(37,100,59,0.67);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  opacity: 1;
  transition: opacity 0.21s;
  animation: cookie-modal-fade 0.2s;
}
@keyframes cookie-modal-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal-content {
  background: var(--white);
  border-radius: 21px;
  box-shadow: 0 9px 55px rgba(37,100,59,0.13);
  padding: 44px 28px 32px 34px;
  width: 98vw;
  max-width: 430px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 17px;
  animation: cookie-modal-in .23s cubic-bezier(.48,-0.24,.61,1.26);
}
@keyframes cookie-modal-in {
  0%{transform:scale(0.98) translateY(80px);opacity:0;}
  100%{transform:scale(1) translateY(0);opacity:1;}
}
.cookie-modal-content h2 {
  color: var(--accent-dark);
  font-family: var(--display-font);
  margin-bottom: 4px;
}
.cookie-modal-content .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 14px 0 9px 0;
}
.cookie-modal-content .cookie-category-label {
  font-family: var(--body-font);
  font-size: 1.03rem;
  color: var(--primary-dark);
}
.cookie-modal-content .cookie-toggle {
  appearance: none;
  width: 46px; height: 26px;
  background: #E4E0DD;
  border-radius: 19px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.18s;
}
.cookie-modal-content .cookie-toggle:checked {
  background: var(--accent);
}
.cookie-modal-content .cookie-toggle:before {
  content: '';
  position: absolute;
  top: 4px; left: 5px;
  width: 19px; height: 17px;
  border-radius: 50%;
  background: var(--primary-dark);
  transition: left 0.18s, background 0.18s;
}
.cookie-modal-content .cookie-toggle:checked:before {
  left: 22px;
  background: #fff;
}
.cookie-modal-content .cookie-actions {
  margin-top: 18px;
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal-content .cookie-btn {
  min-width: 92px;
}

/* --- RESPONSIVE DESIGN (mobile first approach) --- */
@media (max-width: 1200px) {
  .container { max-width: 97vw; }
  .hero .container{ max-width:100vw; }
}
@media (max-width: 900px) {
  .hero .container, .container { max-width: 99vw; padding:0 7px; }
  .features-grid, .services-list, .service-list, .card-container, .testimonial-list { gap: 15px; }
}
@media (max-width: 768px) {
  .container, .hero .container {
    max-width: 100vw;
    padding: 0 8px;
  }
  header .container {
    flex-direction: row;
    gap: 10px;
    padding: 12px 8px 10px 8px;
  }
  nav {
    display: none !important;
  }
  .cta-btn {
    font-size: 1.01rem;
    padding: 8px 16px;
    margin-left: 4px;
  }
  .mobile-menu-toggle {
    display: block;
    margin-left: 7px;
  }
  .hero {
    padding: 35px 0 18px 0;
    border-bottom-right-radius: 33px;
    border-bottom-left-radius: 15px;
  }
  .hero h1 {
    font-size: 1.44rem;
    margin-bottom: 13px;
  }
  .features-grid, .services-list, .service-list, .card-container {
    flex-direction: column !important;
    gap: 14px !important;
  }
  .content-grid, .testimonial-list, .highlight-quotes {
    flex-direction: column;
    gap: 11px;
  }
  .cta-section {
    padding: 24px 0 25px 0;
    border-radius: 21px;
  }
  .cta-section h2 { font-size: 1.11rem; }
  .text-section, .card, .feature, .service-item, .testimonial-card {
    padding: 18px 14px;
    border-radius: 14px;
    min-width: 0;
  }
  .testimonial-card {
    max-width: 97vw;
    font-size: 1rem;
  }
  .contact-short, .address-block {
    font-size: 0.97rem;
    padding: 7px 9px;
    border-radius: 7px;
  }
  .icon-grid img { width:31px;height:31px; border-radius:8px;}
  table th, table td {font-size: 0.94rem; padding:9px 3px;}
  .quick-links { font-size: 0.99rem; }
  .footer-menu {
    gap: 6px;
    flex-wrap: wrap;
    font-size: 0.96rem;
  }
}
@media (max-width: 540px) {
  .hero { padding: 16px 0 7px 0; }
  .hero .container, .container { padding: 0 2px; }
  .text-section, .card, .feature, .service-item, .testimonial-card {
    padding: 10px 4px 8px 7px;
    border-radius: 8px;
  }
  .footer-menu { gap: 3px; font-size: 0.91rem; flex-wrap: wrap; }
  .brand-info { flex-direction: column; gap: 2px;}
  .brand-info img{width:27px;height:27px;}
}

/* --- CUSTOM SCROLLBAR --- */
::-webkit-scrollbar {
  width: 10px; background: var(--secondary);
}
::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 8px;
}

/* --- INTERACTIVE EFFECTS: FOCUS, HOVER --- */
a:focus, button:focus, .cta-btn:focus, .mobile-menu-close:focus, .mobile-menu-toggle:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}


/* --- CUSTOM FONTS (Google Fonts fallback as example) --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Open+Sans:wght@400;600&display=swap');

/* --- END --- */
