/*! ZestStream Soft Pastel — style.css | (c) 2024 ZestStream | Mobile-first, flexbox, pastel UI */

/* === RESET & BASE === */
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  padding: 0;
  background: #F6F8FA;
  color: #23253b;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  background-color: #f6f8fa;
}
img { max-width: 100%; display: block; height: auto; border: 0; }
ul, ol, li { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5, h6 { margin: 0 0 16px 0; font-family: 'Montserrat', 'Roboto', Arial, sans-serif; color: #12355B; }
h1 { font-size: 2.1rem; font-weight: 800; letter-spacing: -0.015em; }
h2 { font-size: 1.6rem; font-weight: 700; }
h3 { font-size: 1.18rem; font-weight: 600; }
p { margin-top: 0; margin-bottom: 1.1em; }
a { color: #36B37E; text-decoration: none; transition: color .18s; }
a:hover, a:focus { color: #289c66; text-decoration: underline; }
strong { font-weight: 700; }

/* === CONTAINER & LAYOUT === */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 16px 0 rgba(100,116,139,0.07);
}

/* === HEADER & NAVIGATION === */
header {
  width: 100%;
  background: #f6f8fa;
  box-shadow: 0 1px 10px 0 rgba(100,116,139,0.06);
  position: sticky;
  top: 0;
  z-index: 88;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding: 16px 0;
}
.main-nav > a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #12355b;
  padding: 7px 16px;
  border-radius: 8px;
  transition: background 0.22s, color 0.18s;
}
.main-nav > a.btn-primary {
  margin-left: 12px;
}
.main-nav > a:hover:not(.btn-primary), .main-nav > a:focus:not(.btn-primary) {
  background: #ECFBF5;
  color: #36B37E;
}
.main-nav img {
  height: 36px;
  width: auto;
  margin-right: 6px;
}
/* Burger Button */
.mobile-menu-toggle {
  display: flex;
  position: absolute;
  right: 24px;
  top: 16px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #36B37E;
  cursor: pointer;
  z-index: 104;
  transition: background 0.2s;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  height: 44px;
  width: 44px;
}
.mobile-menu-toggle:focus {
  background: #ECFBF5;
}

/* Hide nav for mobile */
@media (max-width: 1020px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1021px) {
  .mobile-menu-toggle { display: none; }
}

/* === MOBILE MENU STYLES === */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 200;
  background: rgba(246,248,250,0.97);
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.68,-0.55,.27,1.55);
  display: flex;
  flex-direction: column;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.1rem;
  background: none;
  border: none;
  color: #12355b;
  position: absolute;
  right: 24px;
  top: 20px;
  cursor: pointer;
  z-index: 205;
  padding: 0 8px;
  height: 44px;
  width: 44px;
  border-radius: 10px;
  transition: background .18s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #ECFBF5;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  margin: 85px 26px 36px 32px;
}
.mobile-nav a {
  font-size: 1.15rem;
  color: #12355b;
  font-weight: 500;
  border-radius: 8px;
  padding: 10px 4px;
  transition: background 0.16s, color .18s;
  width: 100%;
  display: block;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #ecfbf5;
  color: #36B37E;
}

/* === BUTTONS === */
.btn-primary {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: #fff;
  background: linear-gradient(90deg,#A1DED2 0%, #36B37E 100%);
  border: none;
  border-radius: 24px;
  padding: 10px 36px;
  cursor: pointer;
  margin-top: 8px;
  margin-bottom: 8px;
  box-shadow: 0 2px 10px 0 rgba(54,179,126,0.09);
  transition: background .18s cubic-bezier(.4,0,.2,1), box-shadow .18s;
}
.btn-primary:focus, .btn-primary:hover {
  background: linear-gradient(90deg,#36B37E 0%, #A1DED2 100%);
  box-shadow: 0 4px 22px 0 rgba(54,179,126,0.17);
  outline: 0;
}

/* === HERO SECTIONS === */
.hero, .about-hero, .oferta-hero, .jakto-hero, .bezp-hero, .cennik-hero, .kontakt-hero, .thank-you-section {
  background: linear-gradient(140deg,#d3f8eb 0%, #e6e7fb 100%);
  padding: 64px 0 48px 0;
  border-radius: 0 0 24px 24px;
  box-shadow: 0 2px 24px rgba(100,116,139,0.07);
  margin-bottom: 40px;
}
.hero .content-wrapper, .about-hero .content-wrapper, .oferta-hero .content-wrapper,
.jakto-hero .content-wrapper, .bezp-hero .content-wrapper, .cennik-hero .content-wrapper,
.kontakt-hero .content-wrapper, .thank-you-section .content-wrapper {
  align-items: flex-start;
  text-align: left;
}
.hero h1, .oferta-hero h1, .jakto-hero h1, .bezp-hero h1, .about-hero h1, .cennik-hero h1, .kontakt-hero h1, .thank-you-section h1 {
  color: #12355b;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.hero p, .oferta-hero p, .jakto-hero p, .about-hero p, .cennik-hero p, .kontakt-hero p, .thank-you-section p {
  color: #385173;
  font-size: 1.13rem;
}

/* === FLEX PATTERNS === */
.features, .feature-grid, .service-cards, .pricing-tables, .customer-logos, .compare-features ul,
.security-list, .certificates, .compliance-badges, .regulation-icons, .faq-accordion {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.feature-grid {
  gap: 28px;
}
.feature {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(54,179,126,0.09);
  padding: 26px 22px;
  min-width: 220px;
  max-width: 264px;
  flex: 1 1 210px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow .18s, transform .18s;
}
.feature:hover, .service-card:hover {
  box-shadow: 0 6px 28px 0 rgba(54,179,126,0.14);
  transform: translateY(-3px) scale(1.03);
}
.feature img {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
}
.feature h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #36B37E;
}

.service-cards {
  gap: 24px;
}
.service-card {
  background: #f9fdff;
  border-radius: 16px;
  box-shadow: 0 2px 10px 0 rgba(36,145,161,0.06);
  padding: 24px;
  min-width: 200px;
  max-width: 260px;
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow .17s, transform .17s;
}
.service-card h3 {
  color: #12355b;
  margin-bottom: 13px;
}

.pricing-tables {
  gap: 32px;
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.pricing-table {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 14px 0 rgba(54,179,126,0.07);
  padding: 34px 22px 28px 22px;
  min-width: 220px;
  max-width: 260px;
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  transition: box-shadow .18s, transform .18s;
  border: 2.5px solid #A1DED2;
}
.pricing-table.featured {
  border-color: #36B37E;
  background: #e8fdf3;
  box-shadow: 0 8px 34px rgba(54,179,126,0.21);
  z-index: 3;
}
.pricing-table h3 {
  color: #36B37E;
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.pricing-table p {
  font-size: 1.33rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #12355b;
  margin-bottom: 18px;
}
.pricing-table ul {
  font-size: 1rem;
  color: #234055;
  margin: 0;
  padding: 0;
  margin-bottom: 0;
}
.pricing-table ul li {
  margin-bottom: 8px;
  padding-left: 8px;
  position: relative;
}

.compare-features, .compare-features ul {
  margin-top: 32px;
  font-size: 1rem;
  color: #385173;
  gap: 14px;
}
.compare-features {
  width: 100%;
  align-items: flex-start;
}
.compare-features h3 {
  color: #12355b;
  font-size: 1.07rem;
  margin-bottom: 9px;
}
.compare-features ul {
  flex-direction: column;
  margin: 0;
  padding: 0;
}

.customer-logos {
  margin-top: 20px;
  gap: 28px;
  justify-content: center;
}
.customer-logos img {
  height: 40px;
  opacity: 0.9;
  filter: grayscale(10%);
}

/* === TESTIMONIALS === */
.testimonials {
  background: linear-gradient(130deg,#fdf6fa 0%, #edf8fd 100%);
  border-radius: 22px;
}
.testimonials h2 {
  color: #12355B;
  text-align: center;
  margin-bottom: 28px;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  margin-bottom: 22px;
}
.testimonial-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(36,145,161,0.11);
  padding: 24px 22px 18px 22px;
  min-width: 220px;
  max-width: 340px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #233855;
  font-size: 1rem;
  margin-bottom: 20px;
  transition: box-shadow .17s, transform .14s;
}
.testimonial-card p {
  color: #292c41;
  font-size: 1.07rem;
  font-style: italic;
  margin-bottom: 16px;
}
.testimonial-card strong {
  color: #36B37E;
  font-size: 1.04rem;
}
.testimonial-card:hover {
  box-shadow: 0 6px 26px 0 rgba(54,179,126,0.14);
  transform: translateY(-3px) scale(1.03);
}

/* === LISTS / STEPS / FAQ FLEX === */
.security-list, .privacy-policy ul, .terms-section ul, .gdpr-section ul, .cennik-pricing ul, .about-values ul, .trust-us ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
  color: #385173;
}
.security-list li, .about-values li, .trust-us li, .cennik-pricing li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #233855;
  font-size: 1.0rem;
  margin-bottom: 0px;  /* gap handles spacing */
}
.security-list img, .about-values img, .trust-us img {
  width: 28px;
  height: 28px;
}

/**** Steps (stepper) ****/
.stepper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 24px;
  margin-bottom: 18px;
}
.stepper li {
  flex: 1 1 180px;
  background: #f9f6fd;
  border-radius: 14px;
  padding: 22px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 1px 8px rgba(100,116,139,0.05);
  position: relative;
  margin-bottom: 20px;
  min-width: 150px;
}
.stepper img {
  height: 40px;
  margin-bottom: 8px;
}
.stepper strong {
  margin-bottom: 8px;
  color: #36B37E;
}

/**** FAQ Accordion ****/
.faq-accordion {
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.faq-item {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 8px 0 rgba(100,116,139,0.07);
  transition: box-shadow .17s, transform .17s;
  margin-bottom: 0;  /* gap handles spacing */
}
.faq-item h3 {
  color: #36B37E;
  font-size: 1.12rem;
  margin-bottom: 7px;
}
.faq-item p {
  color: #234055;
  font-size: 1rem;
}
.faq-item:hover {
  box-shadow: 0 4px 18px 0 rgba(54,179,126,0.14);
  transform: translateY(-1px);
}

/* === SPECIAL FLEX CONTAINERS AS REQUIRED === */
.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; }

/**** GENERIC CARD DESIGN ****/
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 14px 0 rgba(200,170,255,0.08);
  padding: 28px 20px;
  min-width: 186px;
  flex: 1 1 180px;
  margin-bottom: 20px; /* flex gap also applies */
  transition: box-shadow .18s, transform .14s;
}
.card:hover {
  box-shadow: 0 8px 28px rgba(36,145,161,0.12);
  transform: translateY(-2px) scale(1.02);
}

/* === BRAND GUARANTEE, PROMISE, BANNERS === */
.brand-guarantee, .trust-us {
  background: #e6fafc;
  padding: 18px 20px;
  border-radius: 12px;
  margin-bottom: 16px;
  width: 100%;
  box-shadow: 0 1px 6px rgba(36,145,161,0.04);
}

/**** MODAL / BANNER SHADOWS ****/
.certificates, .compliance-badges, .regulation-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  align-items: center;
  margin: 8px 0 18px 0;
}
.certificates img, .compliance-badges img, .regulation-icons img {
  height: 42px;
  filter: grayscale(0.08) opacity(0.75);
  background: #fafbfc;
  border-radius: 12px;
}

/**** ADDRESS/CONTACT DETAILS FLEX ****/
.address-details, .contact-details, .opening-hours, .cta-section {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 13px;
}
.address-details img, .contact-details img, .opening-hours img {
  width: 28px;
  height: 28px;
  margin-right: 8px;
}

/**** FOOTER ****/
footer {
  width: 100%;
  background: #e6e7fb;
  box-shadow: 0 -1px 10px 0 rgba(100,116,139,0.05);
  padding: 36px 0 20px 0;
  font-size: 15px;
  letter-spacing: 0.01em;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 19px;
  justify-content: center;
}
.footer-nav a {
  color: #233855;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  transition: color .18s;
  padding: 5.5px 0px;
}
.footer-nav a:hover, .footer-nav a:focus { color: #36B37E; }
.contact-info {
  text-align: center;
  color: #345186;
  font-size: 0.99rem;
  margin-bottom: 10px;
}
.contact-info a { color: #36B37E; }

/* === COOKIE CONSENT BANNER === */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 499;
  background: #fff9fa;
  box-shadow: 0 -2px 18px 0 rgba(36,145,161,0.13);
  border-top: 2.5px solid #36B37E;
  padding: 24px 24px 22px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #12355B;
  animation: banner-slideup .7s cubic-bezier(.36,1.4,.41,.97) 1;
}
@keyframes banner-slideup {
  from { transform: translateY(120%) scale(0.95); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-consent-banner button {
  border: none;
  border-radius: 14px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  margin: 3px 11px 3px 0;
  padding: 9px 24px;
  cursor: pointer;
  transition: background .19s, color .14s, box-shadow .17s;
  box-shadow: 0 1.5px 6px 0 rgba(54,179,126,0.04);
}
.cookie-accept {
  background: #36B37E;
  color: #fff;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: #289c66;
}
.cookie-reject {
  background: #ecfbf5;
  color: #12355B;
}
.cookie-reject:hover, .cookie-reject:focus {
  background: #d3f8eb;
}
.cookie-settings {
  background: #e6e7fb;
  color: #12355B;
}
.cookie-settings:hover, .cookie-settings:focus {
  background: #d4e0fc;
}
/* Hide banner if consent given */
.cookie-consent-banner.hide {
  display: none;
  pointer-events: none;
}

/* === COOKIE SETTINGS MODAL === */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top:0; bottom:0;
  z-index: 599;
  background: rgba(20,30,60,0.33);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalfade .34s cubic-bezier(.36,1.56,.41,.94);
}
@keyframes modalfade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal .modal-content {
  background: #fff;
  border-radius: 18px;
  max-width: 410px;
  width: 95%;
  padding: 32px 26px 26px 26px;
  box-shadow: 0 12px 48px rgba(54,179,126,0.27);
  display: flex;
  flex-direction: column;
  gap: 19px;
  position: relative;
}
.cookie-modal h2 {
  font-size: 1.23rem;
  margin: 0 0 9px 0;
  color: #12355B;
}
.cookie-category {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
}
.cookie-category input[type="checkbox"] {
  width: 21px;
  height: 21px;
  accent-color: #36B37E;
}
.cookie-category label {
  color: #22252d;
}
.cookie-save, .cookie-cancel {
  margin-top: 14px;
}
.cookie-save {
  background: #36B37E;
  color: #fff;
  margin-right: 9px;
}
.cookie-cancel {
  background: #ecfbf5;
  color: #12355B;
}
.cookie-modal .modal-close {
  position: absolute;
  right: 18px;
  top: 12px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #12355B;
  cursor: pointer;
  border-radius: 14px;
  padding: 0 6px;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  background: #e6e7fb;
}

/* ====== TYPO SCALE ======*/
:root {
  --sz-h1: 2.1rem;
  --sz-h2: 1.6rem;
  --sz-h3: 1.18rem;
  --sz-lg: 1.12rem;
  --sz-md: 1rem;
  --sz-sm: 0.93rem;
}

/* Responsive Typography */
@media (max-width: 650px) {
  h1 { font-size: 1.35rem; }
  h2 { font-size: 1.17rem; }
  h3 { font-size: 1.01rem; }
  .btn-primary { font-size: 0.97rem; padding: 10px 16px; }
  .mobile-nav a { font-size: 1rem; }
}

/* ======= RESPONSIVE FLEX LAYOUTS ======= */
@media (max-width: 850px) {
  .feature-grid, .service-cards, .pricing-tables, .stepper {
    flex-direction: column;
    align-items: stretch;
  }
}
@media (max-width: 768px) {
  .container { padding: 0 10px; }
  .content-wrapper { padding: 0; }
  .section { padding: 20px 6px; }
  .features, .feature-grid, .service-cards, .pricing-tables, .stepper {
    flex-direction: column;
    gap: 17px;
  }
  .testimonial-slider {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}

/* Spacing between all content cards/sections */
.card-container > .card, .feature-grid > .feature, .service-cards > .service-card,
.pricing-tables > .pricing-table, .testimonial-slider > .testimonial-card, .stepper > li {
  margin-bottom: 20px;
}
.section, .main-nav, .content-grid, .footer-nav, .mobile-nav, .testimonial-slider, .stepper { gap: 20px; }

/* Prevent overlapping & ensure no abs positioning for content */
.card, .feature, .service-card, .testimonial-card, .faq-item, .pricing-table {
  position: relative;
  z-index: 2;
}

/* === MICRO-INTERACTIONS, EFFECTS, SHADOWS === */
.card, .feature, .service-card, .testimonial-card, .faq-item, .pricing-table {
  transition: box-shadow .19s, transform .17s;
  will-change: box-shadow, transform;
}
.card:hover, .feature:hover, .service-card:hover, .testimonial-card:hover, .faq-item:hover, .pricing-table:hover {
  box-shadow: 0 8px 30px rgba(54,179,126,0.13), 0 2px 6px rgba(100,116,139,0.03);
  transform: translateY(-2px) scale(1.03);
}
.btn-primary, .cookie-consent-banner button, .cookie-modal button {
  transition: background .19s, color .19s, box-shadow .13s, transform .13s;
  will-change: background, color, box-shadow, transform;
}
.btn-primary:active, .cookie-consent-banner button:active, .cookie-modal button:active {
  transform: scale(.97);
  box-shadow: 0 1px 3px 0 rgba(36,145,161,0.12);
}

/**** MODAL MOBILE ADJUSTMENT ****/
@media (max-width: 520px) {
  .cookie-modal .modal-content { padding: 18px 7px 13px 9px; }
  .cookie-modal h2 { font-size: 1.058rem; }
}

/**** HIDE COOKIE BANNER ON PRINT ****/
@media print { .cookie-consent-banner, .cookie-modal { display: none !important; } }

/**** Z INDEX TOPS ****/
.mobile-menu, .cookie-modal { z-index: 9000; }
.cookie-consent-banner { z-index: 8900; }

/**** ACCESSIBILITY FOCUS ****/
:focus-visible {
  outline: 2.5px solid #36B37E;
  outline-offset: 2px;
}

/**** PASTEL ACCENTS ****/
.section, .about-values, .about-mission-vision, .about-brand-promise, .oferta-services, .services-overview, .jakto-faq, .cennik-cta {
  background: linear-gradient(100deg,#fefdfd 0%,#f6f8fa 50%,#ecfbf5 100%);
  border-radius: 22px;
  box-shadow: 0 1.5px 14px 0 rgba(172,204,240,0.17);
}
.section h2, .about-values h2, .oferta-services h2, .services-overview h2, .jakto-faq h2, .cennik-cta h2 { color: #12355b; }

/**** FORM ELEMENTS (Contact) ****/
input, textarea, select, button {
  font-family: inherit;
  font-size: 1rem;
  border-radius: 10px;
  border: 1.5px solid #D6E4EF;
  background: #fff;
  padding: 9px 12px;
  margin-top: 6px;
  margin-bottom: 13px;
}
input:focus, textarea:focus, select:focus {
  border-color: #36B37E;
  outline: 0;
}

/**** UTILITY CLASSES ****/
.d-none { display: none !important; }
.d-flex { display: flex !important; }
.text-center { text-align: center; }
.bg-pastel-cyan { background: #e6fafc; }
.bg-pastel-lavender { background: #e6e7fb; }
.bg-white { background: #fff; }
.rounded-lg { border-radius: 22px; }

/**** END OF ZestStream SOFT PASTEL CSS */
