/* 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%;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { box-sizing: border-box; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
*, *:before, *:after { box-sizing: inherit; }
body {
  background: #F4E9DC;
  color: #183446;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  font-size: 16px;
  min-height: 100vh;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; border-radius: 14px; }
a { color: #388D65; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #26704E; }
ul, ol { margin-left: 24px; }
strong { font-weight: 600; }

/* TYPOGRAPHY ------------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #26704E;
  margin-bottom: 16px;
}
h1 { font-size: 2.5rem; line-height: 1.15; margin-bottom: 24px; }
h2 { font-size: 2rem; line-height: 1.18; }
h3 { font-size: 1.25rem; line-height: 1.22; }
h4 { font-size: 1.1rem; }
p, li, div, span { font-family: 'Roboto', Arial, Helvetica, sans-serif; }
p { margin-bottom: 16px; }

/* GLOBAL CONTAINER ------------------------------------------------------------------------ */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* SECTIONS & FLEXBOX LAYOUTS -------------------------------------------------------------- */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff2ea;
  border-radius: 24px;
  box-shadow: 0 2px 18px rgba(56, 141, 101, 0.07);
  display: flex;
  flex-direction: column;
  gap: 0;
}

@media (max-width: 768px) {
  section {
    padding: 28px 6px;
    border-radius: 16px;
  }
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.text-section {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

.card-container, .feature-grid, .blog-list { /* Unified flex container style */
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
@media (max-width: 900px) {
  .card-container, .feature-grid, .blog-list {
    gap: 16px;
  }
}

.card, .feature-grid > div, .article-preview {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 20px rgba(56, 141, 101, 0.10);
  padding: 26px 24px 22px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow .18s, transform .18s;
  min-width: 220px;
  flex: 1 1 220px;
}
.card:hover, .feature-grid > div:hover, .article-preview:hover {
  box-shadow: 0 8px 36px rgba(38,112,78,0.13);
  transform: translateY(-4px) scale(1.02);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(56, 141, 101, 0.12);
  padding: 18px 20px;
}

@media (max-width: 768px) {
  .feature-grid, .blog-list, .content-grid {
    flex-direction: column;
    gap: 14px;
  }
}

.blog-list {
  width: 100%;
  gap: 24px;
}
.article-preview {
  flex: 1 1 280px;
  background: #fff;
  border-radius: 18px;
  margin-bottom: 20px;
  box-shadow: 0 1px 14px rgba(56, 141, 101, 0.09);
  padding: 18px 18px 14px 18px;
  cursor: pointer;
  transition: box-shadow .18s, transform .18s;
}

.categories {
  margin: 24px 0;
}
.categories ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.categories li {
  background: #f4e9dc;
  color: #26704E;
  padding: 6px 14px;
  border-radius: 14px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 500;
}

/***** HERO STYLES *****/
.hero-section {
  background: linear-gradient(90deg, #F4E9DC 70%, #fff2ea 100%);
  margin-bottom: 60px;
  padding: 60px 0 48px 0;
  border-radius: 22px;
  box-shadow: 0 4px 32px rgba(56,141,101,0.08);
}
.hero-section h1 {
  font-size: 2.7rem;
  color: #26704E;
  margin-bottom: 20px;
}
.hero-section p {
  font-size: 1.18rem;
  max-width: 520px;
  color: #183446;
  margin-bottom: 28px;
}
.hero-section .cta-primary {
  font-size: 1.15rem;
  padding: 15px 36px;
}
@media (max-width: 768px) {
  .hero-section {
    padding: 34px 0 26px 0;
    border-radius: 14px;
  }
  .hero-section h1 {
    font-size: 2rem;
  }
}

/***** TESTIMONIALS *****/
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 2px 14px rgba(38, 112, 78, 0.13);
  color: #183446;
  font-size: 1rem;
  transition: box-shadow .16s, transform .16s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 26px rgba(38,112,78,0.14);
  transform: scale(1.01);
}
.testimonial-card p {
  color: #183446;
  font-size: 1.03rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
.testimonial-card strong {
  color: #26704E;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  margin-right: 10px;
}
.testimonial-card img {
  vertical-align: middle;
  width: 20px;
  height: 20px;
  margin-left: 2px;
  margin-right: 1px;
  border-radius: 0;
}
@media (max-width: 700px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 16px 12px;
  }
}

/***** CTA BUTTONS *******/
.cta-primary {
  display: inline-block;
  background: #26704E;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 13px 32px;
  border-radius: 32px;
  box-shadow: 0 3px 14px rgba(38,112,78,0.09);
  border: none;
  cursor: pointer;
  margin-top: 6px;
  text-align: center;
  transition: background .21s, box-shadow .22s, transform .13s;
}
.cta-primary:hover, .cta-primary:focus {
  background: #388D65;
  box-shadow: 0 8px 28px rgba(38,112,78,0.17);
  transform: translateY(-3px) scale(1.035);
  color: #fff;
}

/* NAVIGATION ---------------------------------------------------------------------------------- */
header {
  background: #fff;
  border-bottom: 4px solid #FFF2EA;
  box-shadow: 0 2px 10px rgba(56, 141, 101, 0.06);
  padding: 0 0 0 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  min-height: 72px;
}
header img[alt="Bold Credit"] {
  height: 46px;
  width: auto;
  margin-right: 24px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #26704e;
  padding: 7px 12px;
  border-radius: 16px;
  transition: background .17s, color .15s;
  text-decoration: none;
}
.main-nav a:hover, .main-nav a.active {
  background: #f4e9dc;
  color: #183446;
}
.main-nav .cta-primary {
  margin-left: 16px;
  background: linear-gradient(90deg,#388D65 90%,#26704E 100%);
  color: #fff;
  padding: 10px 26px;
  box-shadow: none;
  font-size: 1rem;
}
.main-nav .cta-primary:hover {
  background: #26704E;
  color: #fff;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 38px;
  color: #26704E;
  cursor: pointer;
  margin-left: 18px;
  outline: none;
  transition: color 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: #388D65;
}

/* Responsive: show mobile toggle, hide main nav */
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/***** MOBILE MENU *******/
.mobile-menu {
  position: fixed;
  z-index: 1020;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(44,50,54,0.25);
  transform: translateX(-100vw);
  transition: transform .39s cubic-bezier(.62,.21,.25,1.01);
  display: flex;
  flex-direction: column;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
}
.mobile-nav {
  background: #FFFFFF;
  margin-top: 0;
  padding: 42px 28px 34px 44px;
  border-radius: 0 28px 28px 0;
  min-height: 100vh;
  min-width: 290px;
  box-shadow: 2px 0 42px rgba(38,112,78,0.14);
  display: flex;
  flex-direction: column;
  gap: 19px;
  z-index: 1041;
}
.mobile-nav a {
  font-size: 1.16rem;
  color: #26704E;
  padding: 10px 6px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  border-radius: 16px;
  margin-right: 0;
  text-align: left;
  transition: background 0.14s, color 0.16s;
}
.mobile-nav a:hover {
  background: #f4e9dc;
  color: #183446;
}
.mobile-menu-close {
  position: absolute;
  top: 22px; left: 14px;
  background: none;
  border: none;
  color: #26704E;
  font-size: 34px;
  font-weight: bold;
  z-index: 1050;
  cursor: pointer;
  outline: none;
  transition: color 0.2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #388D65;
}

@media (max-width: 520px) {
  .mobile-nav {
    padding-left: 19px; padding-right: 9px; border-radius: 0 12px 12px 0;
  }
}

/* MAIN CONTENT SPACING ---------------------------------------------------------------------- */
main {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 60vh;
}

/* PRICE TABLE */
.price-table {
  background: #f4e9dc;
  border-radius: 14px;
  padding: 18px 22px 12px 22px;
  margin: 28px 0 16px 0;
  color: #26704E;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.02rem;
}
.price-table h2 {
  color: #388D65;
  margin-bottom: 16px;
  font-size: 1.13rem;
}
.price-table ul { margin-left: 18px; }

/* FAQ / Accordions */
.faq-list h3 {
  font-size: 1.16rem;
  cursor: pointer;
  background: #f4e9dc;
  border-radius: 13px;
  padding: 8px 13px;
  margin-bottom: 8px;
  margin-top: 12px;
  transition: background 0.15s;
}
.faq-list h3:hover { background: #fff2ea; }
.faq-list div {
  margin-bottom: 6px;
  padding: 5px 0 9px 8px;
  color: #183446;
  font-size: 0.98rem;
}

/* FOOTER ---------------------------------------------------------------------------------- */
footer {
  background: #fff;
  border-top: 4px solid #FFF2EA;
  box-shadow: 0 -3px 18px rgba(56, 141, 101, 0.07);
  padding: 34px 0 0 0;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px 36px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-bottom: 14px;
}
.footer-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #388D65;
  font-size: 0.98rem;
  padding: 5px 12px;
  border-radius: 12px;
  font-weight: 500;
  transition: background 0.13s, color 0.13s;
}
.footer-nav a:hover { background: #f4e9dc; color: #183446; }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 0.97rem;
  color: #26704E;
}
.footer-contact img {
  width: 21px;
  height: 21px;
  margin-right: 8px;
  vertical-align: middle;
  border-radius: 0;
}
.footer-social {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 12px;
}
.footer-social img {
  width: 33px; height: 33px; border-radius: 50%; background: #f4e9dc; padding: 6px;
  transition: background 0.17s;
}
.footer-social img:hover {
  background: #26704E;
}
.footer-legal {
  color: #183446;
  font-size: 0.93rem;
  margin: 18px 0 0 0;
  width: 100%;
  text-align: left;
  font-style: italic;
  opacity: 0.75;
}
@media (max-width:900px) {
  footer .container {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .footer-legal { text-align: left; margin-bottom: 16px; }
}

/* COOKIE CONSENT BANNER --------------------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 2030;
  background: #fff;
  border-top: 4px solid #388D65;
  box-shadow: 0 -4px 30px rgba(38,112,78,.08);
  padding: 20px 38px 20px 38px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  font-size: 1.04rem;
  flex-wrap: wrap;
  width: 100%;
  border-radius: 26px 26px 0 0;
  animation: slideUpBanner .66s cubic-bezier(.4,1.3,.9,1);
}
@keyframes slideUpBanner {
  from { transform: translateY(100px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.cookie-banner__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 0.97rem;
  border: none;
  border-radius: 22px;
  padding: 11px 25px;
  cursor: pointer;
  margin: 0 0 0 0;
  transition: background .17s, color .13s, transform .13s;
  box-shadow: 0 2px 12px rgba(56,141,101,0.07);
}
.cookie-btn.accept {
  background: #26704E;
  color: #fff;
}
.cookie-btn.accept:hover { background: #388D65; }
.cookie-btn.reject {
  background: #F4E9DC;
  color: #26704E;
}
.cookie-btn.reject:hover { background: #f8dfc8; }
.cookie-btn.settings {
  background: #fff2ea;
  color: #183446;
  border: 1px solid #f4e9dc;
}
.cookie-btn.settings:hover {
  background: #f4e9dc;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    padding: 19px 11px 17px 14px;
    border-radius: 16px 16px 0 0;
    font-size: 0.99rem;
  }
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  z-index: 3050;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(24,52,70,0.34);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s;
}
.cookie-modal.open {
  pointer-events: all;
  opacity: 1;
}
.cookie-modal__content {
  background: #fff2ea;
  border-radius: 18px;
  box-shadow: 0 8px 56px rgba(38,112,78,0.11);
  padding: 38px 32px 20px 32px;
  min-width: 340px;
  max-width: 96vw;
  display: flex;
  flex-direction: column;
  gap: 19px;
  animation: slideInModal .46s cubic-bezier(.45,1.2,.8,1.12);
}
@keyframes slideInModal {
  from { transform: translateY(-40px) scale(.96); opacity: .4; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 8px 0 0 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 8px 0;
  font-size: 0.97rem;
}
.cookie-toggle {
  width: 36px; height: 20px;
  background: #f4e9dc;
  border-radius: 11px;
  transition: background .20s;
  position: relative;
  border: 1px solid #26704E;
  margin-left: 8px;
  margin-right: 8px;
}
.cookie-toggle input { display:none; }
.cookie-toggle span {
  position: absolute; left: 2px; top: 2px;
  width: 16px; height: 16px;
  background: #26704E;
  border-radius: 50%;
  transition: left .18s, background .18s;
}
.cookie-toggle input:checked + span {
  left: 17px; background: #388D65;
}
.cookie-category.essential label { opacity: 0.65; pointer-events: none; }
.cookie-modal-buttons {
  display: flex; gap:13px; margin-top: 10px;
}
.cookie-modal .cookie-btn { min-width: 96px; }
.cookie-modal__close {
  position: absolute;
  top: 9px; right: 18px;
  background: none;
  border: none;
  font-size: 30px;
  color: #26704E;
  cursor: pointer;
}
.cookie-modal__close:hover { color: #388D65; }
@media (max-width: 450px) {
  .cookie-modal__content { min-width: 0; padding: 15px 5vw 14px 5vw; }
}

/* INTERACTIVE/MISCELLANEOUS --------------------------------------------------------------- */
::-webkit-input-placeholder { color: #b2b5a6; }
::-moz-placeholder { color: #b2b5a6; }
:-ms-input-placeholder { color: #b2b5a6; }
::placeholder { color: #b2b5a6; }

hr {
  border: none;
  border-bottom: 1.5px solid #f4e9dc;
  margin: 32px 0 22px 0;
}

/* HELPER CLASSES --------------------------------------------------------------------------- */
.mb-20 { margin-bottom: 20px !important; }
.mb-32 { margin-bottom: 32px !important; }
.mt-24 { margin-top: 24px !important; }

/* RESPONSIVE FINE-TUNING ------------------------------------------------------------------ */
@media (max-width:600px) {
  .content-wrapper, .container, .feature-grid, .blog-list, .footer-nav, .content-grid { gap: 9px !important; }
  .card, .feature-grid > div, .article-preview { min-width: 0; }
}

/* --- END OF CSS --- */
