/* RESET & BASE TYPOGRAPHY */
html {
  box-sizing: border-box;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #16233A;
  background: #F9FBFC;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  min-height: 100vh;
}
img, svg {
  display: block;
  max-width: 100%;
}
a {
  color: #1A4375;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus, a:hover {
  text-decoration: underline;
  color: #E6B85A;
  outline: none;
}
ul, ol {
  padding-left: 1.3em;
  margin-bottom: 1.2em;
}
table {
  border-collapse: collapse;
  width: 100%;
  background: #fff;
  margin: 24px 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px 0 rgba(25,67,117,0.06);
}
th, td {
  padding: 16px 20px;
  text-align: left;
  font-size: 1rem;
}
th {
  background: #D0D8DB;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #1A4375;
  font-size: 1.15rem;
  text-transform: uppercase;
}
tr:nth-child(even) {
  background: #F5F7F8;
}
/* BRAND TYPOGRAPHY HIERARCHY */
h1, .hero-section h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  color: #1A4375;
  font-size: 2.4rem;
  line-height: 1.13;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
@media (min-width: 576px) {
  h1, .hero-section h1 { font-size: 2.8rem; }
}
@media (min-width: 1024px) {
  h1, .hero-section h1 { font-size: 3.1rem; }
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #1A4375;
  font-size: 2rem;
  margin-bottom: 18px;
  line-height: 1.16;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #1A4375;
  font-size: 1.15rem;
  margin-bottom: 12px;
}
strong, b {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
p, li, td, th {
  font-size: 1.06rem;
}
p {
  margin-bottom: 18px;
}
.footnote {
  font-size: 0.9rem;
  color: #666;
  margin-top: 10px;
}
/* LAYOUT & SPACING */
.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 18px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0px;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 16px 0 rgba(25,67,117,0.09);
  padding: 28px 30px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
/* HEADER & NAVIGATION */
header {
  background: #fff;
  box-shadow: 0 2px 14px 0 rgba(25,67,117,0.12);
  border-bottom: 2px solid #E6B85A;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
}
.logo img {
  height: 48px;
  width: auto;
  margin-right: 24px;
}
.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-left: 30px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #1A4375;
  font-size: 1rem;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: border-bottom 0.15s, color 0.15s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #E6B85A;
  border-bottom: 2px solid #E6B85A;
  outline: none;
}
.cta-button {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #1A4375;
  color: #fff;
  font-weight: 800;
  font-size: 1.12rem;
  border-radius: 36px;
  padding: 13px 32px;
  border: none;
  box-shadow: 0 2px 16px 0 rgba(25,67,117,0.09);
  transition: background 0.22s, color 0.2s, transform 0.11s;
  margin-left: 25px;
  cursor: pointer;
  display: inline-block;
}
.cta-button:hover, .cta-button:focus {
  background: #E6B85A;
  color: #1A4375;
  transform: translateY(-1px) scale(1.03);
  outline: none;
}
.secondary-link {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #1A4375;
  font-size: 1.15rem;
  margin: 14px 0 0 0;
  display: inline-block;
  transition: color 0.18s, text-decoration 0.15s;
}
.secondary-link:hover, .secondary-link:focus {
  color: #E6B85A;
  text-decoration: underline;
  outline: none;
}
.mobile-menu-toggle {
  background: none;
  border: none;
  color: #1A4375;
  font-size: 2.2rem;
  cursor: pointer;
  margin-left: 22px;
  padding: 4px 9px;
  border-radius: 8px;
  transition: background 0.1s;
  z-index: 201;
  display: none;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #D0D8DB;
}
@media (max-width: 960px) {
  .main-nav, .cta-button {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(26,67,117, 0.96);
  z-index: 2100;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4,0,0.2,1);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  font-weight: 600;
  margin: 24px 32px 12px 0;
  cursor: pointer;
  transition: color 0.15s;
  z-index: 2201;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #E6B85A;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin: 0 32px;
  gap: 22px;
  min-width: 240px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 1.3rem;
  letter-spacing: .01em;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.17s, border-bottom 0.18s;
  display: block;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  color: #E6B85A;
  border-bottom: 2px solid #E6B85A;
  outline: none;
}
@media (max-width: 768px) {
  .mobile-nav { min-width: unset; width: 92vw; margin: 0 14px; }
  .mobile-menu-close { margin: 16px 16px 18px 0; font-size: 2.1rem; }
}

/* HERO SECTION & SECTIONS */
.hero-section {
  background: #1A4375;
  color: #fff;
  padding: 60px 0 56px 0;
  margin-bottom: 64px;
  border-radius: 0 0 38px 0;
}
.hero-section .content-wrapper {
  max-width: 760px;
}
.hero-section h1 {
  color: #fff;
  margin-bottom: 18px;
}
.hero-section p {
  font-size: 1.15rem;
  margin-bottom: 30px;
}
.hero-section .cta-button {
  background: #E6B85A;
  color: #1A4375;
}
.hero-section .cta-button:hover, .hero-section .cta-button:focus {
  background: #fff;
  color: #1A4375;
}
@media (max-width: 768px) {
  .hero-section {
    padding: 38px 0 36px 0;
    border-radius: 0 0 22px 0;
  }
  .section, section {
    padding: 24px 2vw;
    margin-bottom: 37px;
  }
  .hero-section .content-wrapper, .content-wrapper {
    padding: 0;
  }
}

/* FEATURE GRID (INDEX & ABOUT) */
.feature-grid, .feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
  margin-top: 18px;
  list-style: none;
}
.feature-grid li, .feature-list li {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 18px 0 rgba(25,67,117,0.07);
  padding: 24px 22px 20px 22px;
  flex: 1 1 240px;
  min-width: 220px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  gap: 10px;
  border: 2.5px solid #D0D8DB;
  margin-bottom: 20px;
  transition: border-color 0.15s, box-shadow 0.18s, transform 0.13s;
  position: relative;
}
.feature-grid li:hover, .feature-list li:hover, .feature-grid li:focus, .feature-list li:focus {
  border-color: #E6B85A;
  box-shadow: 0 6px 18px 0 rgba(230,184,90,0.13);
  transform: translateY(-2px) scale(1.02);
}
.feature-grid img {
  width: 42px;
  height: 42px;
}

@media (max-width: 1050px) {
  .feature-grid li, .feature-list li {
    flex: 1 1 46%;
    max-width: 98%;
  }
}
@media (max-width: 768px) {
  .feature-grid, .feature-list {
    flex-direction: column;
    gap: 20px;
  }
  .feature-grid li, .feature-list li {
    margin-bottom: 10px;
    max-width: 100%;
  }
}

.feature-list, .service-list{
  list-style: none;
  padding: 0;
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin: 18px 0;
}
.service-list li {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 15px 0 rgba(25,67,117,0.08);
  padding: 20px 22px 18px 22px;
  flex: 1 1 260px;
  min-width: 230px;
  margin-bottom: 20px;
  border: 2px solid #D0D8DB;
  transition: box-shadow 0.14s, border-color 0.14s;
}
.service-list li:hover {
  box-shadow: 0 7px 22px 0 rgba(230,184,90,0.13);
  border-color: #E6B85A;
}
@media (max-width: 900px) {
  .service-list {
    flex-direction: column;
    gap: 18px;
  }
}

.step-list {
  padding-left: 1.5em;
  margin-bottom: 24px;
  font-size: 1.05rem;
}
.step-list li {
  margin-bottom: 14px;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
}
.visual-timeline {
  width: 100%;
  height: 18px;
  background: repeating-linear-gradient(90deg, #E6B85A, #E6B85A 6px, transparent 6px, transparent 26px);
  border-radius: 9px;
  margin: 22px 0 0 0;
  opacity: 0.3;
}

/***** MODERN BOLD CARD AND FEATURE ITEMS *****/
.feature-item, .service-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2.5px 8px 0 rgba(25,67,117,0.09);
  padding: 22px 22px 14px 22px;
  margin-bottom: 20px;
  border: 2px solid #D0D8DB;
  transition: border-color 0.13s, box-shadow 0.13s;
}
.feature-item:hover, .service-item:hover {
  border-color: #E6B85A;
  box-shadow: 0 7px 19px 0 rgba(230,184,90,0.08);
}
.price {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #E6B85A;
  font-weight: 700;
  font-size: 1.17rem;
  margin-top: 7px;
}

/* TESTIMONIALS */
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 10px;
}
.testimonial-card {
  background: #F2F6FA;
  border-left: 7px solid #E6B85A;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 36px 20px 26px;
  margin-bottom: 20px;
  flex: 1 1 280px;
  min-width: 230px;
  box-shadow: 0 2px 10px 0 rgba(25,67,117,0.07);
  color: #1A4375;
  font-size: 1.13rem;
  transition: box-shadow 0.13s, transform 0.1s;
}
.testimonial-card p {
  margin-bottom: 7px;
  font-style: italic;
  color: #1A4375;
}
.testimonial-card strong {
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1A4375;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 5px 24px 0 rgba(26,67,117,0.12);
  transform: scale(1.015);
  outline: none;
}
@media (max-width: 900px) {
  .testimonials {
    flex-direction: column;
    gap: 18px;
  }
}

/* FAQ STYLES */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: #fff;
  border-left: 5px solid #1A4375;
  border-radius: 11px;
  box-shadow: 0 2px 10px 0 rgba(25,67,117,0.06);
  padding: 20px 20px 20px 26px;
  transition: box-shadow 0.12s, border-color 0.13s;
  margin-bottom: 10px;
}
.faq-item:hover, .faq-item:focus {
  box-shadow: 0 4px 18px 0 rgba(230,184,90,0.18);
  border-color: #E6B85A;
  outline: none;
}
.faq-item h3 {
  font-size: 1.11rem;
  margin-bottom: 6px;
  color: #1A4375;
}
.faq-item p {
  margin-bottom: 0;
}

/* LEGAL SECTION */
.legal-section, .success-section {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px 0 rgba(25,67,117,0.09);
  margin-bottom: 60px;
  padding: 40px 18px;
}
@media (max-width: 768px) {
  .legal-section, .success-section {
    padding: 24px 2vw;
    margin-bottom: 32px;
  }
}
/* THANK YOU PAGE */
.thank-you-message {
  font-size: 1.12rem;
  color: #1A4375;
  margin-bottom: 28px;
}

/* CONTACT PAGE */
.contact-section {
  background: #F2F6FA;
  border-radius: 13px;
  margin-bottom: 56px;
  padding: 36px 20px 40px 20px;
}
.contact-details, .map-embed {
  margin-bottom: 20px;
}
.contact-details h2, .map-embed h3 {
  margin-bottom: 7px;
  color: #1A4375;
  font-size: 1.13rem;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
}
.contact-details p, .map-embed p {
  font-size: 1rem;
}

/****** KNOWLEDGE BASE & TAGS (PORADY) ******/
.article-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 26px 22px;
  margin: 0 0 18px 0;
  padding: 0;
}
.article-list li {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 14px 0 rgba(25,67,117,0.06);
  padding: 16px 21px 13px 18px;
  border: 2px solid #D0D8DB;
  min-width: 230px;
  max-width: 355px;
  flex: 1 1 235px;
  margin-bottom: 20px;
  transition: box-shadow 0.13s, border-color 0.13s, transform 0.13s;
}
.article-list li:hover, .article-list li:focus {
  border-color: #E6B85A;
  box-shadow: 0 6px 18px 0 rgba(230,184,90,0.13);
  transform: scale(1.02);
  outline: none;
}
.article-list a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.09rem;
  color: #1A4375;
  display: inline-block;
  transition: color 0.13s;
}
.article-list a:hover, .article-list a:focus {
  color: #E6B85A;
  outline: none;
}
.article-list p {
  font-size: 0.97rem;
  color: #16233A;
  margin-bottom: 0;
}
.popular-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}
.tag {
  display: inline-block;
  background: #E6B85A;
  color: #fff;
  border-radius: 26px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.99rem;
  font-weight: 700;
  padding: 7px 18px 6px 15px;
  letter-spacing: .03em;
  margin: 0 6px 7px 0;
  transition: background 0.16s, color 0.13s;
}
.tag:hover, .tag:focus {
  background: #1A4375;
  color: #E6B85A;
  outline: none;
}

/**** PRICING TABLE (CENNIK) ****/
.pricing-table {
  overflow-x: auto;
  margin-bottom: 16px;
}
.pricing-table th, .pricing-table td {
  font-size: 1rem;
  padding: 15px 18px;
  white-space: nowrap;
}
.pricing-table td:last-child {
  color: #E6B85A;
  font-weight: 700;
}

/* FOOTER */
footer {
  background: #1A4375;
  color: #fff;
  padding: 36px 0 12px 0;
  border-radius: 28px 0 0 0;
}
footer .container {
  flex-direction: column;
  gap: 18px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 23px;
  margin-bottom: 9px;
}
.footer-nav a {
  color: #E6B85A;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.15s, text-decoration 0.13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
  text-decoration: underline;
  outline: none;
}
.footer-info {
  font-size: 0.98rem;
  color: #dbeaf1;
}
@media (max-width: 768px) {
  footer {
    padding: 27px 0 9px 0;
    border-radius: 14px 0 0 0;
  }
  .footer-nav {
    gap: 14px;
    margin-bottom: 6px;
  }
  .footer-info {
    text-align: left;
    font-size: 0.95rem;
  }
}

/*******************************
  COOKIE CONSENT BANNER
*******************************/
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  box-shadow: 0 -1.5px 16px 0 rgba(25,67,117,0.12);
  padding: 22px 18px 22px 22px;
  z-index: 4000;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  justify-content: space-between;
  transition: transform 0.34s cubic-bezier(0.4,0,0.2,1);
  transform: translateY(0);
}
.cookie-consent-banner.hide {
  transform: translateY(130%);
}
.cookie-consent-banner .cookie-text {
  color: #1A4375;
  font-size: 1.03rem;
  flex: 1 1 68%;
}
.cookie-consent-banner .cookie-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 26px;
  border: none;
  cursor: pointer;
  transition: background 0.13s, color 0.13s;
  margin-right: 0;
}
.cookie-btn.accept {
  background: #1A4375;
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #E6B85A;
  color: #1A4375;
  outline: none;
}
.cookie-btn.reject {
  background: #D0D8DB;
  color: #1A4375;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #E6B85A;
  color: #fff;
  outline: none;
}
.cookie-btn.settings {
  background: #fff;
  color: #1A4375;
  border: 2px solid #1A4375;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #1A4375;
  color: #fff;
  outline: none;
}
@media (max-width: 660px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 12px 9px 14px 12px;
  }
  .cookie-consent-banner .cookie-actions {
    gap: 10px;
  }
}
/* Cookie Modal */
.cookie-modal-backdrop {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(26,67,117,0.26);
  z-index: 4200;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.18s;
}
.cookie-modal-backdrop.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 6px 34px 0 rgba(25,67,117,0.17);
  padding: 32px 25px 32px 28px;
  min-width: 284px;
  max-width: 96vw;
  width: 390px;
  z-index: 4300;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  transform: translateY(0);
  transition: transform 0.23s cubic-bezier(0.4,0,0.2,1);
}
.cookie-modal .modal-close {
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 2rem;
  color: #1A4375;
  background: none;
  border: none;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.18s;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  color: #E6B85A;
  outline: none;
}
.cookie-modal h2 {
  font-size: 1.41rem;
  color: #1A4375;
  margin-bottom: 3px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 7px 0;
}
.cookie-category label {
  font-size: 1.02rem;
  color: #16233A;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-category input[type="checkbox"] {
  accent-color: #E6B85A;
  width: 18px;
  height: 18px;
  border-radius: 7px;
}
.cookie-category.essential label { color: #a3a9b3; }
.cookie-category.essential input[type="checkbox"] {
  accent-color: #D0D8DB;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 15px;
  margin-top: 13px;
}
.cookie-modal .cookie-modal-actions .cookie-btn.settings {
  border: 2px solid #1A4375;
}

/****************
 * RESPONSIVE *
 ****************/
@media (max-width: 540px) {
  h1, .hero-section h1 { font-size: 1.56rem; }
  h2 { font-size: 1.2rem; }
  .article-list, .service-list, .feature-grid, .testimonials { gap: 7px; }
  .testimonial-card, .feature-grid li, .service-list li, .article-list li { padding: 13px 11px; }
  .pricing-table th, .pricing-table td { padding: 7px 7px; }
  .cookie-modal { padding: 17px 4vw 16px 5vw; width: 99vw; min-width: unset; }
}

/*********************************************
 MISC. FORMS, MICRO-INTERACTIONS, UTILITIES
**********************************************/
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  border: 2px solid #D0D8DB;
  border-radius: 8px;
  padding: 7px 10px;
  transition: border-color 0.13s;
  margin-bottom: 12px;
}
input:focus, textarea:focus, select:focus {
  border-color: #E6B85A;
  outline: none;
}
button:focus {
  outline: 2px solid #E6B85A;
  outline-offset: 2px;
}
::-webkit-input-placeholder { color: #A0A8B2; }
::-moz-placeholder { color: #A0A8B2; }
:-ms-input-placeholder { color: #A0A8B2; }
::placeholder { color: #A0A8B2; }

/********** GEOMETRIC DECORATIVE SHAPES (MODERN_BOLD ACCENT) *********/
.hero-section:before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 170px;
  height: 170px;
  background: #E6B85A;
  border-radius: 0 0 180px 0;
  opacity: 0.11;
  z-index: 0;
  pointer-events: none;
  transform: translateY(-30%) translateX(20%);
  display: none;
}
@media (min-width: 1025px) {
  .hero-section { position: relative; }
  .hero-section:before { display: block; }
}

/******************
 * UTILITY CLASSES
 *******************/
.text-center { text-align: center!important; }
.mt-0 { margin-top: 0!important; }
.mb-0 { margin-bottom: 0!important; }
.mt-3 { margin-top: 24px!important; }
.mb-3 { margin-bottom: 24px!important; }
.flex { display: flex!important; }
.align-center { align-items: center!important; }
.gap-2 { gap: 16px; }

/* SPACING OVERRIDES AS PER REQUIREMENTS */
.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; }

/* END OF MODERN, BOLD, FLEXBOX-ONLY RESPONSIVE CSS */
