/* ---- CSS RESET & BASE STYLES ---- */
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;
}
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  line-height: 1.6;
  color: #283B4C;
  background: #F7F8F2;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.01em;
}
img, picture {
  max-width: 100%;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
}
a {
  color: #283B4C;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #A3BC68;
  outline: none;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #283B4C;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  line-height: 1.15;
  text-transform: uppercase;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 14px;
  line-height: 1.2;
  text-transform: uppercase;
}
h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 600;
  text-transform: uppercase;
}
.subheadline {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #283B4C;
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.6;
  letter-spacing: 0.01em;
}
p, ul, ol, li, blockquote, address {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
}
blockquote {
  font-style: italic;
  border-left: 4px solid #A3BC68;
  padding-left: 18px;
  margin-bottom: 14px;
  color: #283B4C;
  background: #F7F8F2;
}

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

/* ---- SECTIONS & SPACING ---- */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #F7F8F2;
}
.section:last-child, section:last-child {
  margin-bottom: 0;
}

.features, .services, .about, .team, .faq, .contact, .confirmation, .text-section {
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(40,59,76,0.04);
  background: #fff;
}

/* ---- HEADER / NAV ---- */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 20px 16px 20px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(40,59,76, 0.05);
  position: relative;
  z-index: 200;
}
.logo {
  display: flex;
  align-items: center;
  margin-right: 30px;
  line-height: 0;
}
header nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
header nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #283B4C;
  padding: 8px 16px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
header nav a:hover, 
header nav a.active {
  background: #A3BC68;
  color: #fff;
}
.cta.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 12px;
  background: #A3BC68;
  color: #fff;
  padding: 12px 34px;
  margin-left: 22px;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(40,59,76,0.09);
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.12s;
}
.cta.primary:hover, .cta.primary:focus {
  background: #283B4C;
  color: #fff;
  box-shadow: 0 4px 18px rgba(40,59,76,0.12);
  transform: translateY(-2px) scale(1.03);
  outline: none;
}

/* ---- MOBILE NAVIGATION ---- */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 22px;
  top: 24px;
  background: #A3BC68;
  color: #fff;
  font-size: 2rem;
  padding: 8px 13px;
  border: none;
  border-radius: 8px;
  z-index: 210;
  cursor: pointer;
  transition: background 0.18s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #283B4C;
  color: #fff;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #283B4C;
  color: #fff;
  z-index: 220;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.76,0.01,0.32,0.99);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #A3BC68;
  font-size: 2.2rem;
  padding: 14px 26px 10px 0;
  cursor: pointer;
  margin-top: 14px;
  margin-right: 10px;
  transition: color 0.18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #fff;
  outline: none;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  margin-top: 40px;
  padding-left: 32px;
  font-size: 1.2rem;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 10px 0;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
  width: fit-content;
  min-width: 160px;
  display: inline-block;
  font-size: 1.1rem;
}
.mobile-nav a:hover, .mobile-nav a.active {
  background: #A3BC68;
  color: #283B4C;
}

@media (max-width: 1050px) {
  .container {
    max-width: 900px;
  }
  header nav {
    gap: 14px;
  }
}
@media (max-width: 900px) {
  header nav {
    gap: 8px;
  }
  .cta.primary {
    padding: 10px 18px;
    font-size: 0.96rem;
    margin-left: 8px;
  }
}

@media (max-width: 768px) {
  header nav, .cta.primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
  h1 {
    font-size: 1.7rem;
  }
  h2 {
    font-size: 1.2rem;
  }
  h3 {
    font-size: 1.02rem;
  }
  .section, section {
    padding: 32px 8px;
  }
  .content-wrapper, .feature-grid, .inspiration-grid {
    flex-direction: column !important;
    gap: 18px !important;
  }
  .feature, .feature-item, .testimonial-card, .card, .team-bio {
    width: 100% !important;
    min-width: 0 !important;
    margin-bottom: 18px !important;
  }
  .testimonial-card {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
    padding: 16px !important;
  }
}

/* ---- HERO SECTION ---- */
.hero {
  background: linear-gradient(135deg, #F7F8F2 75%, #A3BC68 100%);
  box-shadow: 0 8px 24px rgba(163,188,104,0.14);
  border-radius: 0 0 40px 40px;
  margin-bottom: 52px;
}
.hero .container {
  padding-top: 26px;
  padding-bottom: 38px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero .content-wrapper {
  max-width: 700px;
  gap: 20px;
  align-items: flex-start;
}

/* ---- FEATURE/GRID LAYOUTS ---- */
.feature-grid, .inspiration-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
}
.feature {
  background: #F7F8F2;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(40,59,76,0.05);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 220px;
  flex: 1 1 220px;
  padding: 30px 22px 20px 22px;
  position: relative;
  margin-bottom: 20px;
  border: 2.5px solid #A3BC68;
  transition: box-shadow 0.13s, border-color 0.13s, transform 0.18s;
}
.feature:hover, .feature:focus-within {
  box-shadow: 0 8px 30px rgba(40,59,76,0.10);
  border-color: #283B4C;
  transform: translateY(-3px) scale(1.02);
}
.feature img {
  width: 54px;
  height: 54px;
  margin-bottom: 8px;
  background: #fff;
  border-radius: 12px;
}
.feature h3 {
  color: #283B4C;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
}
.feature .price {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background: #283B4C;
  color: #fff;
  padding: 6px 16px;
  font-size: 1rem;
  border-radius: 10px;
  font-weight: 600;
  margin-top: 12px;
  letter-spacing: 0.03em;
}
/* Feature icons row */
.feature-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 0;
}
.feature-icons li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  background: #F7F8F2;
  padding: 8px 16px;
  border-radius: 14px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.feature-icons img {
  width: 24px;
  height: 24px;
  background: #fff;
  border-radius: 4px;
}

/* ---- VALUE ICONS (ABOUT PAGE) ---- */
.value-icons, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  margin-top: 10px;
}
.value-icons li {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #F7F8F2;
  padding: 8px 16px;
  border-radius: 14px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
}
.value-icons img {
  width: 24px;
  height: 24px;
}

/* ---- SERVICES LIST (LEISTUNGEN PAGE) ---- */
.service-list {
  flex-direction: column;
  gap: 28px;
  margin-bottom: 18px;
}
.service-list li {
  position: relative;
  background: #F7F8F2;
  border-radius: 14px;
  box-shadow: 0 1px 6px rgba(40,59,76,0.05);
  padding: 22px 20px 14px 24px;
  margin-bottom: 10px;
  border-left: 5px solid #A3BC68;
}
.service-list h3 {
  font-size: 1.13rem;
  margin-bottom: 7px;
}
.service-list .price {
  display: inline-block;
  margin-top: 10px;
  background: #283B4C;
  color: #fff;
  border-radius: 8px;
  font-size: 0.96rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 4.5px 15px;
}

/* ---- PRICING TABLE ---- */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 0 0 18px 0;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  background: #F7F8F2;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(40,59,76,0.04);
  overflow: hidden;
}
.pricing-table th, .pricing-table td {
  padding: 16px 16px;
  text-align: left;
}
.pricing-table thead th {
  background: #283B4C;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  border-bottom: 3px solid #A3BC68;
}
.pricing-table tbody tr {
  border-bottom: 1.5px solid #E0E4D6;
}
.pricing-table tbody tr:nth-child(even) {
  background: #fff;
}
.pricing-table tbody td {
  color: #283B4C;
  vertical-align: top;
}

/* ---- INSPIRATION/GRID CARDS (Wohnideen, DIY, Garten) ---- */
.inspiration-grid > div {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 8px rgba(40,59,76,0.04);
  padding: 20px 16px;
  flex: 1 1 250px;
  min-width: 220px;
  margin-bottom: 20px;
  border: 2px solid #E0E4D6;
  transition: box-shadow 0.13s, border-color 0.13s, transform 0.16s;
}
.inspiration-grid > div:hover, .inspiration-grid > div:focus-within {
  box-shadow: 0 8px 22px rgba(163,188,104,0.11);
  border-color: #A3BC68;
  transform: translateY(-2px) scale(1.01);
}

/* ---- TEAM BIOS (about) ---- */
.team-bio {
  background: #F7F8F2;
  border-radius: 14px;
  box-shadow: 0 1.5px 7px rgba(40,59,76,0.05);
  padding: 22px 20px 16px 24px;
  margin-bottom: 18px;
}
.team-bio h3 {
  font-size: 1.08rem;
  margin-bottom: 8px;
}

/* ---- TESTIMONIAL CARDS ---- */
.testimonials {
  background: #F7F8F2;
  border-radius: 18px;
  padding-top: 40px;
  padding-bottom: 40px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  margin-bottom: 24px;
  border-radius: 16px;
  box-shadow: 0 2px 14px rgba(40,59,76,0.11);
  border-left: 6px solid #A3BC68;
  min-width: 0;
}
.testimonial-card blockquote {
  background: none;
  padding-left: 10px;
  margin-bottom: 0;
  color: #283B4C;
  font-style: italic;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}
.testimonial-card p {
  margin-bottom: 0;
}
.star-rating {
  margin-left: auto;
  font-size: 1.2rem;
  color: #A3BC68;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
}

/* ---- CTA SECTIONS ---- */
.cta {
  background: #A3BC68;
  color: #fff;
  border-radius: 24px;
  box-shadow: 0 3px 18px rgba(40,59,76,0.08);
  padding-top: 38px;
  padding-bottom: 38px;
  margin-top: 36px;
}
.cta .content-wrapper {
  align-items: flex-start;
  gap: 18px;
}
.cta h2 {
  color: #fff;
  font-weight: 800;
}
.cta .cta.primary {
  background: #fff;
  color: #283B4C;
  box-shadow: 0 2px 10px rgba(40,59,76,0.15);
  transition: background 0.16s, color 0.16s, box-shadow 0.14s, transform 0.13s;
}
.cta .cta.primary:hover, .cta .cta.primary:focus {
  background: #283B4C;
  color: #fff;
  outline: none;
  transform: scale(1.04) translateY(-3px);
}

/* ---- FAQ / LISTS ---- */
ul, ol {
  margin-left: 20px;
  margin-bottom: 12px;
  list-style-position: inside;
  font-size: 1rem;
}
ul.feature-icons, ul.value-icons, ul.service-list {
  list-style: none;
  margin-left: 0;
}
.faq-list li {
  margin-bottom: 12px;
  line-height: 1.7;
}
.faq-list li strong {
  color: #283b4c;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  letter-spacing: 0.02em;
  font-weight: 600;
}

/* ---- FOOTER ---- */
footer {
  background: #283B4C;
  color: #fff;
  padding: 38px 20px 26px 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  border-radius: 32px 32px 0 0;
  margin-top: 60px;
}
footer nav {
  display: flex;
  gap: 20px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
footer nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  text-decoration: underline;
  transition: color 0.17s;
}
footer nav a:hover, footer nav a:focus {
  color: #A3BC68;
}
.footer-contact p, .footer-contact a {
  font-size: 0.96rem;
  color: #E0E4D6;
}
.footer-contact a:hover, .footer-contact a:focus {
  color: #A3BC68;
  text-decoration: underline;
}

/* ---- COOKIE CONSENT BANNER ---- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 9999;
  background: #283B4C;
  color: #fff;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 -2px 18px rgba(40,59,76,0.19);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 18px 24px 24px;
  gap: 24px;
}
.cookie-banner p {
  margin: 0;
  font-size: 1rem;
  color: #fff;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 15px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background 0.16s, color 0.16s, transform 0.13s;
}
.cookie-btn.accept {
  background: #A3BC68;
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #fff;
  color: #283B4C;
  transform: scale(1.04);
}
.cookie-btn.reject {
  background: transparent;
  color: #A3BC68;
  border: 2px solid #A3BC68;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #A3BC68;
  color: #fff;
  transform: scale(1.04);
}
.cookie-btn.settings {
  background: #fff;
  color: #283B4C;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #A3BC68;
  color: #fff;
  transform: scale(1.04);
}

/* Cookie Modal Popup */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  z-index: 10000;
  background: rgba(40,59,76,0.63);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.33s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-content {
  background: #fff;
  color: #283B4C;
  border-radius: 16px;
  padding: 38px 24px 24px 24px;
  min-width: 320px;
  max-width: 90vw;
  box-shadow: 0 8px 38px rgba(40,59,76,0.27);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cookie-modal-content h2 {
  font-size: 1.3rem;
  color: #283B4C;
  margin-bottom: 10px;
}
.cookie-modal-content .cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 10px;
}
.cookie-modal-content label {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.cookie-modal-content .toggle {
  appearance: none;
  width: 38px;
  height: 20px;
  background: #E0E4D6;
  border-radius: 20px;
  position: relative;
  cursor: pointer;
  outline: none;
  transition: background 0.22s;
}
.cookie-modal-content .toggle:checked {
  background: #A3BC68;
}
.cookie-modal-content .toggle::-webkit-slider-thumb {
  appearance: none;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 2px;
  top: 1px;
  box-shadow: 0 1px 3px rgba(40,59,76,0.06);
  transition: left 0.22s;
}
.cookie-modal-content .toggle:checked::-webkit-slider-thumb {
  left: 18px;
}
.cookie-modal-content .cookie-modal-actions {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 18px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #A3BC68;
  cursor: pointer;
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    gap: 16px;
    padding: 14px 8px 14px 8px;
    font-size: 0.98rem;
    align-items: stretch;
  }
  .cookie-modal-content {
    min-width: 80vw;
    padding: 20px 10px 16px 10px;
  }
}

/* ---- RESPONSIVE FLEXBOX LAYOUTS ---- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 13px rgba(40,59,76,0.07);
  margin-bottom: 20px;
  position: relative;
  min-width: 200px;
  flex: 1 1 250px;
  padding: 24px;
}
.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: 860px) {
  .feature-grid, .inspiration-grid, .content-grid, .card-container {
    flex-direction: column !important;
    gap: 18px !important;
  }
  .feature, .card, .feature-item {
    width: 100% !important;
    min-width: 0 !important;
  }
}

/* ---- ANIMATIONS & TRANSITIONS ---- */
.section, section, .feature, .card, .team-bio, .testimonial-card, .inspiration-grid > div, .cta, .service-list li {
  transition: box-shadow 0.16s, border-color 0.13s, background 0.11s, transform 0.12s;
}
.cta.primary, button, .cookie-btn {
  transition: background 0.16s, color 0.16s, transform 0.13s;
}

/* ---- GEOMETRIC DECORATIVE SHAPES (subtle accents) ---- */
.section::before, .section::after {
  content: '';
  position: absolute;
  pointer-events: none;
  display: none;
}
@media (min-width: 992px) {
  .section {
    position: relative;
    overflow: visible;
  }
  .section::before {
    display: block;
    left: -46px;
    top: -32px;
    width: 54px;
    height: 54px;
    background: #A3BC68;
    opacity: 0.16;
    border-radius: 14px 0 44px 0;
    z-index: 0;
    transform: rotate(-16deg);
  }
  .section::after {
    display: block;
    right: -32px;
    bottom: -14px;
    width: 38px;
    height: 38px;
    background: #283B4C;
    border-radius: 10px 28px 0 0;
    opacity: 0.09;
    z-index: 0;
    transform: rotate(-16deg);
  }
}

/* ---- MISC: TABLE, ADDRESS, ETC ---- */
address {
  font-style: normal;
  background: #F7F8F2;
  border-radius: 12px;
  padding: 16px 24px 8px 24px;
  margin-bottom: 10px;
  font-size: 1rem;
  color: #283B4C;
}

.table {
  width: 100%;
  border-radius: 10px;
  background: #F7F8F2;
}

/* ---- SCROLLBAR (optional for desktop) ---- */
::-webkit-scrollbar {
  width: 12px;
  background: #F7F8F2;
}
::-webkit-scrollbar-thumb {
  background: #A3BC68;
  border-radius: 9px;
}

/* ---- UTILITY CLASSES ---- */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-uppercase { text-transform: uppercase; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 32px; }

/* ---- GEOMETRIC FONT ALTERNATE (fallback) ---- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Open+Sans:wght@400;700&display=swap');

/* ---- END OF STYLE.CSS ---- */
