/* === CSS RESET & BASE === */
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,
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;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
  background: #F5F5F5;
  color: #11315C;
  min-height: 100vh;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
img {
  border: 0;
  max-width: 100%;
  height: auto;
  display: block;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* === BRAND FONTS === */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,500,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
body, html {
  font-family: 'Roboto', Arial, sans-serif;
  background: #F5F5F5;
  color: #11315C;
  font-size: 16px;
  line-height: 1.6;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #11315C;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; }
h4, h5, h6 { font-size: 1rem; font-weight: 600; }
p, ul, ol, table { margin-bottom: 18px; }
strong { font-weight: 700; }

/* === LAYOUT & CONTAINER === */
.container {
  width: 100%;
  max-width: 1240px;
  padding: 0 20px;
  margin: 0 auto;
  box-sizing: border-box;
}
.content-wrapper {
  margin: 0 auto;
  width: 100%;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.section, section {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 20px 0 rgba(17,49,92,0.07);
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 992px) {
  .section, section { padding: 28px 8px; }
}
@media (max-width: 600px) {
  .section, section { margin-bottom: 40px; padding: 18px 4vw; }
}

/* ==== HEADER/NAVIGATION ==== */
header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #e6eaf0;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 12px 0 rgba(17,49,92,0.04);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
  min-height: 88px;
}
.logo img { height: 48px; width: auto; display: block; }
.main-nav {
  display: flex;
  gap: 24px;
  margin-left: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 2px;
  transition: color 0.22s;
  color: #11315C;
  position: relative;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover, .main-nav a:focus {
  color: #19A69A;
  border-bottom: 2px solid #19A69A;
}
.cta-btn {
  background: #19A69A;
  color: #fff;
  padding: 12px 32px;
  font-size: 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 24px;
  border: none;
  transition: background 0.2s, box-shadow 0.2s, transform 0.18s;
  box-shadow: 0 2px 8px 0 rgba(17,49,92,0.06);
  margin-left: auto;
  cursor: pointer;
  white-space: nowrap;
  outline: none;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: #147d79;
  box-shadow: 0 4px 14px 0 rgba(25,166,154,0.18);
  transform: translateY(-2px) scale(1.03);
}

/* === MOBILE NAV === */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #19A69A;
  font-size: 32px;
  margin-left: 24px;
  cursor: pointer;
  transition: color 0.1s;
  z-index: 201;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #19A69A;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  height: 100vh; width: 100vw;
  background: rgba(17,49,92, 0.97);
  transform: translateX(-105vw);
  transition: transform 0.32s cubic-bezier(.45,1.45,.58,1), opacity 0.23s;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  position: absolute;
  top: 22px;
  right: 29px;
  z-index: 202;
  cursor: pointer;
  transition: color 0.13s;
}
.mobile-menu-close:focus {
  outline: 2px solid #19A69A;
}
.mobile-nav {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  align-items: flex-start;
  padding-left: 38px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  font-size: 21px;
  padding: 10px 0;
  border-radius: 8px;
  width: fit-content;
  transition: background 0.15s, color 0.21s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #19A69A;
  color: #fff;
  outline: none;
}
@media (max-width: 1050px) {
  .main-nav { gap: 13px; margin-left: 6px; }
}
@media (max-width: 890px) {
  .main-nav { display: none; }
  .cta-btn { margin-left: auto; }
  .mobile-menu-toggle { display: block; }
}
@media (max-width: 600px) {
  header .container { min-height: 60px; gap: 0; }
  .logo img { height: 36px; }
}

/* === HERO SECTION === */
.hero {
  background: linear-gradient(110deg, #11315C 74%, #19A69A 100%);
  color: #fff;
  box-shadow: 0 6px 26px 0 rgba(17,49,92,0.06);
  margin-bottom: 60px;
}
.hero .container { padding-top: 36px; padding-bottom: 36px; }
.hero .content-wrapper {
  align-items: flex-start;
  gap: 22px;
}
.hero h1, .hero h2 {
  color: #fff;
  font-size: 2.6rem;
  margin-bottom: 12px;
}
.hero p {
  font-size: 18px;
  color: #eef7fa;
  margin-bottom: 16px;
}
.hero .cta-btn {
  background: #fff;
  color: #19A69A;
  font-weight: 700;
  border: 2px solid #19A69A;
  padding: 12px 34px;
  margin-left: 0;
}
.hero .cta-btn:hover, .hero .cta-btn:focus {
  background: #19A69A;
  color: #fff;
  border-color: #fff;
  box-shadow: 0 6px 18px 0 rgba(25,166,154,0.13);
}
@media (max-width: 600px) {
  .hero { margin-bottom: 36px; }
  .hero h1, .hero h2 { font-size: 1.65rem; }
  .hero p { font-size: 15px; }
  .hero .container { padding: 18px 0; }
}

/* === COMMON SECTION STYLES === */
.features {
  background: #f0f4f9;
  border-radius: 10px;
  box-shadow: 0 1px 5px 0 rgba(25,70,100,0.04);
  margin-bottom: 60px;
}
.features .content-wrapper > h2 { margin-bottom: 8px; }
.features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
  margin-top: 8px;
}
.features ul li {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 19px 24px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 4px 0 rgba(17,49,92,0.07);
  font-size: 17px;
  min-width: 250px;
  flex: 1 1 220px;
}
.features ul li img {
  width: 28px; height: 28px;
  margin-right: 0;
}
@media (max-width: 860px) {
  .features ul { gap: 12px; }
  .features ul li { font-size: 15px; padding: 14px 13px; }
}
@media (max-width: 600px) {
  .features ul { flex-direction: column; gap: 8px; }
  .features ul li { min-width: unset; width: 100%; }
}

.services {
  background: #fff;
  box-shadow: 0 2px 10px 0 rgba(17,49,92,0.07);
}
.services ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.services ul li {
  flex: 1 1 260px;
  background: #eef3fa;
  border-radius: 10px;
  padding: 22px 28px;
  box-shadow: 0 1px 6px 0 rgba(25,166,154,0.02);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.services ul li h3 {
  font-size: 1.15rem;
  color: #11315C;
  margin-bottom: 7px;
}
.services ul li a {
  margin-top: auto;
  color: #19A69A;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.01em;
}
.services ul li a:hover, .services ul li a:focus {
  text-decoration: underline;
  color: #147d79;
}
@media (max-width: 800px) {
  .services ul { gap: 9px; }
  .services ul li { padding: 14px 13px; font-size: 15px; }
}
@media (max-width: 600px) {
  .services ul { flex-direction: column; gap: 10px; }
  .services ul li { width: 100%; }
}

/* === TESTIMONIALS === */
.testimonials {
  background: #EEF3FA;
  border-radius: 12px;
  box-shadow: 0 3px 18px 0 rgba(17,49,92,0.045);
}
.testimonials .content-wrapper {
  gap: 28px;
  align-items: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 28px;
  margin-bottom: 20px;
  background: #fff;
  color: #11315C;
  border-radius: 8px;
  box-shadow: 0 2px 8px 0 rgba(25,70,100,0.07);
  font-size: 1.1rem;
  min-width: 270px;
  max-width: 540px;
}
.testimonial-card p {
  color: #11315C;
  font-size: 1.03rem;
  margin-bottom: 2px;
}
.testimonial-card strong {
  color: #19A69A;
  font-size: 1rem;
  font-weight: 700;
}
@media (max-width: 700px) {
  .testimonials .content-wrapper { gap: 12px; }
  .testimonial-card { font-size: 0.98rem; padding: 12px 13px; min-width: unset; max-width: 100%; }
}

/* === CTA SECTION === */
.cta {
  background: #11315C;
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 25px 0 rgba(17,49,92,0.11);
}
.cta .content-wrapper {
  align-items: center;
  text-align: center;
}
.cta h2 { color: #fff; }
.cta p { color: #eef7fa; margin-bottom: 16px; }
.cta .cta-btn {
  background: #19A69A;
  color: #fff;
  border: none;
  font-size: 18px;
  padding: 15px 38px;
}
.cta .cta-btn:hover, .cta .cta-btn:focus {
  background: #147d79;
  color: #fff;
  box-shadow: 0 8px 22px 0 rgba(19,166,154,0.17);
  transform: translateY(-3px) scale(1.03);
}
@media (max-width: 650px) {
  .cta .content-wrapper { padding: 0; }
  .cta .cta-btn { font-size: 16px; padding: 12px 24px; }
}

/* === FOOTER === */
footer {
  background: #11315C;
  color: #fff;
  padding: 0;
  margin-top: 0;
}
footer .container { padding: 0 20px; }
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 36px;
  justify-content: space-between;
  align-items: flex-start;
  padding: 36px 0 18px 0;
}
.logo-footer img { height: 40px; width: auto; margin-bottom: 6px; }
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #B9D0E4;
}
.footer-nav a {
  color: #B9D0E4;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 15px;
  margin-bottom: 2px;
  transition: color 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #19A69A;
  text-decoration: underline;
}
.footer-contact {
  font-size: 15px;
  color: #d3e5f7;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footer-contact img {
  width: 18px; vertical-align: middle; margin-right: 6px;
}
.footer-social {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 2px;
}
.footer-social a img {
  width: 26px; height: 26px; filter: brightness(0) invert(1) opacity(0.85); transition: filter 0.18s;
}
.footer-social a:hover img, .footer-social a:focus img {
  filter: brightness(0.9) invert(0.5) sepia(1) saturate(2) hue-rotate(140deg);
}
@media (max-width: 900px) {
  footer .content-wrapper { flex-direction: column; align-items: flex-start; gap: 9px; text-align: left; }
  .logo-footer { margin-bottom: 10px; }
}
@media (max-width: 600px) {
  footer .content-wrapper { padding: 21px 0 10px 0; font-size: 15px; }
}

/* === PRICING TABLE === */
.pricing table {
  width: 100%;
  margin: 28px 0; /* spacing above table */
  border: 1px solid #c7d2e7;
  border-radius: 9px;
  overflow: hidden;
  font-size: 1rem;
  background: #fff;
  box-shadow: 0 1px 7px 0 rgba(17,49,92,0.09);
}
.pricing th {
  background: #19A69A;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 14px 10px;
  text-align: left;
}
.pricing td {
  padding: 14px 10px;
  border-bottom: 1px solid #e3e9f2;
  color: #11315C;
}
.pricing tr:last-child td {
  border-bottom: none;
}
.pricing tbody tr:nth-child(even) td { background: #f6fafc; }
.pricing thead tr { border-radius: 8px 8px 0 0; }
@media (max-width: 700px) {
  .pricing table, .pricing th, .pricing td {
    font-size: 13px;
  }
}

/* === FAQ === */
.faq .content-wrapper > div {
  margin-bottom: 20px;
  border-radius: 6px;
  background: #f0f4f9;
  box-shadow: 0 1px 8px 0 rgba(17,49,92,0.03);
  padding: 18px 24px;
}
.faq h3 {
  margin-bottom: 4px;
  color: #19A69A;
}

/* === LEGAL/TEXT SECTIONS === */
.legal, .about, .contact, .confirmation, .text-section {
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(17,49,92,0.035);
  border-radius: 10px;
  margin-bottom: 60px;
  padding: 40px 20px;
}
.text-section ul {
  padding-left: 13px;
  margin-bottom: 18px;
  list-style: disc inside;
}
.text-section ul li {
  font-size: 1rem;
  margin-bottom: 8px;
  color: #11315C;
}
@media (max-width: 650px) {
  .legal, .about, .contact, .confirmation, .text-section { padding: 18px 4vw; margin-bottom: 32px; }
  .text-section ul li { font-size: 0.9rem; }
}

/* === FLEXBOX UTILITIES FOR CONTENT === */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  margin-bottom: 20px;
  border-radius: 9px;
  box-shadow: 0 2px 8px 0 rgba(17,49,92,0.10);
  position: relative;
  padding: 24px 17px;
  flex: 1 1 230px;
}
.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: 700px) {
  .card-container, .content-grid, .text-image-section {
    flex-direction: column;
    gap: 12px;
    justify-content: flex-start;
  }
  .card { width: 100%; }
}
@media (max-width: 500px) {
  .card { padding: 12px 5vw; }
}

/* === BUTTONS - GENERIC === */
button, .button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 20px;
  border: none;
  background: #19A69A;
  color: #fff;
  padding: 12px 28px;
  cursor: pointer;
  transition: background 0.19s, transform 0.13s, box-shadow 0.12s;
  box-shadow: 0 2px 8px 0 rgba(25,166,154,0.06);
  outline: none;
}
button:hover, .button:hover,
button:focus, .button:focus {
  background: #147d79;
  box-shadow: 0 4px 14px 0 rgba(25,166,154,0.18);
  transform: translateY(-1px) scale(1.02);
}

/* === TABLE STYLES (for legal/cennik) === */
section table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  margin-bottom: 28px;
  border-radius: 7px;
  box-shadow: 0 1px 8px 0 rgba(17,49,92,0.05);
  overflow: hidden;
}
section th, section td {
  padding: 13px 9px;
  text-align: left;
  border-bottom: 1px solid #e6eaf0;
  font-size: 15px;
}
section th {
  background: #19A69A;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
}
section tr:last-child td { border-bottom: none; }
@media (max-width: 700px) {
  section table, section th, section td { font-size: 12px; }
}

/* === ANIMATIONS / MICRO-INTERACTIONS === */
.cta-btn, .button, .mobile-menu-toggle, .main-nav a, .mobile-nav a, .footer-nav a, .cta .cta-btn, .hero .cta-btn {
  transition: color 0.17s, background 0.21s, border-color 0.21s, box-shadow 0.18s, transform 0.16s;
}
.card, .cta, .features, .services, .testimonials {
  transition: box-shadow 0.19s, transform 0.14s;
}
.card:hover, .services ul li:hover, .testimonial-card:hover {
  transform: translateY(-3px) scale(1.015);
  box-shadow: 0 8px 32px 0 rgba(17,49,92,0.12);
}

/* === COOKIE BANNER === */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 8000;
  background: #fff;
  color: #11315C;
  border-top: 1px solid #c9d3e3;
  box-shadow: 0 -2px 18px 0 rgba(17,49,92,0.08);
  padding: 22px 13px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  animation: slideUpIn 0.5s cubic-bezier(.22,1.12,.63,.97);
}
@keyframes slideUpIn {
  from { transform: translateY(120%); opacity: 0; }
  to { transform: none; opacity: 1; }
}
.cookie-banner .cookie-text {
  flex: 1 1 280px;
  font-size: 16px;
}
.cookie-banner-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-banner-button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 18px;
  border: none;
  background: #19A69A;
  color: #fff;
  padding: 11px 21px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.13s, box-shadow 0.15s, color 0.14s;
  box-shadow: 0 1px 8px 0 rgba(25,166,154,0.06);
}
.cookie-banner-button:hover, .cookie-banner-button:focus {
  background: #147d79;
  color: #fff;
}
.cookie-banner-button.secondary {
  background: #11315C;
}
.cookie-banner-button.secondary:hover, .cookie-banner-button.secondary:focus {
  background: #415b8e;
  color: #fff;
}
@media (max-width: 650px) {
  .cookie-banner { flex-direction: column; padding: 18px 9px; gap: 16px; align-items: flex-start; }
  .cookie-banner-buttons { gap: 7px; }
}

/* === COOKIE CONSENT MODAL === */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17,49,92,0.74);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModal 0.27s;
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #11315C;
  border-radius: 12px;
  min-width: 330px;
  max-width: 95vw;
  box-shadow: 0 6px 28px 0 rgba(17,49,92,0.14);
  padding: 30px 38px 24px 38px;
  display: flex;
  flex-direction: column;
  gap: 17px;
  position: relative;
  animation: scaleInModal 0.24s cubic-bezier(.45,1.45,.58,1);
}
@keyframes scaleInModal {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
.cookie-modal-close {
  position: absolute;
  top: 14px; right: 18px;
  background: none;
  border: none;
  color: #19A69A;
  font-size: 28px;
  cursor: pointer;
}
.cookie-modal-close:focus { outline: 2px solid #19A69A; }
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 16px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #eef3fa;
  border-radius: 7px;
  padding: 11px 16px;
  font-size: 16px;
}
.cookie-category input[type="checkbox"] {
  accent-color: #19A69A;
  width: 18px; height: 18px;
}
.cookie-category .always-on {
  color: #19A69A;
  font-size: 15px;
  font-weight: 600;
  margin-left: 6px;
}
.cookie-modal-actions {
  display: flex; gap: 12px; margin-top: 10px;
}
.cookie-modal-actions .cookie-banner-button {
  padding: 9px 17px; font-size: 15px; border-radius: 15px;
}
@media (max-width: 550px) {
  .cookie-modal { min-width: 0; padding: 17px 7vw 15px 7vw; }
  .cookie-modal-actions { gap: 5px; }
}

/* === RESPONSIVE UTILITIES === */
@media (max-width: 1100px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
}
@media (max-width: 660px) {
  h1 { font-size: 1.33rem; }
  h2 { font-size: 1.12rem; }
  h3 { font-size: 1rem; }
}

/* === SCROLLBAR (for pro look) === */
body, html {
  scrollbar-color: #19A69A #F5F5F5;
  scrollbar-width: thin;
}
::-webkit-scrollbar { width: 8px; background: #F5F5F5; }
::-webkit-scrollbar-thumb { background: #19A69A; border-radius: 5px; }

/* === OVERRIDES FOR DARK TEXT SECTIONS etc. === */
.testimonial-card {
  background: #fff;
  color: #11315C;
}

/* === FORM ELEMENTS (future-proof) === */
input, select, textarea {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  padding: 10px 13px;
  border: 1px solid #b3c8df;
  border-radius: 5px;
  margin-bottom: 16px;
  background: #fcfcfc;
  color: #11315C;
  transition: border-color 0.19s;
}
input:focus, select:focus, textarea:focus {
  border-color: #19A69A;
  outline: none;
}
label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: #11315C;
  margin-bottom: 5px;
  display: block;
}

/* === ACCENT BACKGROUND CLASSES === */
.bg-primary { background: #11315C !important; color: #fff !important; }
.bg-secondary { background: #19A69A !important; color: #fff !important; }
.bg-accent { background: #F5F5F5 !important; color: #11315C !important; }

/* ==== END OF CORPORATE FLEXBOX CSS === */
