@charset "UTF-8";
a.wixui-rich-text__text {
  color: #3F7C4A;
  text-decoration: none;
}

/* Offer Section overrides with variables */
.offer-section {
  background: #F3F3F3;
}

h2.offer-title {
  color: #3F7C4A;
}

.offer-card {
  background: #3F7C4A;
}

/* Menu active state with variables */
.main-navigation .current-menu-item a,
.main-navigation .current-page-item a {
  color: #FFFFFF;
  background: rgba(63, 124, 74, 0.1);
  box-shadow: 0 2px 8px rgba(63, 124, 74, 0.2);
}

/* Menu link colors */
.main-navigation a,
.main-navigation a:visited {
  color: #FFFFFF;
}

.main-navigation a:hover {
  color: #FFFFFF;
  text-decoration: none;
  background: rgba(63, 124, 74, 0.2);
  box-shadow: 0 2px 8px rgba(63, 124, 74, 0.2);
}

/* Menu hover effects */
.main-navigation a:focus {
  background: rgba(63, 124, 74, 0.2);
  box-shadow: 0 2px 8px rgba(63, 124, 74, 0.2);
}

/* Header background - modern green */
.site-header {
  background: #3F7C4A;
  height: 72px;
  padding: 0.5rem 2rem;
  overflow: visible;
  box-shadow: 0 2px 8px rgba(43, 43, 43, 0.1);
}

.site-header.scrolled {
  background: #3F7C4A;
}

/* Bigger logo (x2) */
.logo {
  position: relative;
  width: 180px;
  height: 100%;
}

.site-logo {
  position: relative;
  display: block;
  height: 100%;
}

.logo img,
.site-logo img,
.site-logo svg {
  position: absolute;
  top: 65%;
  transform: translateY(-50%);
  height: 100px;
  width: auto;
}

/* Push content below header (desktop uses fixed header via theme CSS) */
#content.site-content {
  padding-top: 0px;
}

/* Mobile tweaks (if needed) */
@media (max-width: 768px) {
  .main-navigation {
    display: none;
  }
  .main-navigation.active {
    display: block;
  }
  .main-navigation .current-menu-item a,
  .main-navigation .current-page-item a {
    background: rgba(63, 124, 74, 0.2);
    color: #FFFFFF;
  }
}
/* Offset fixed header when admin bar is visible */
body.admin-bar .site-header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar .site-header {
    top: 0px;
  }
}
/* Container utility */
.container {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header + nav behaviour on mobile */
@media (max-width: 768px) {
  /* Make header fixed at the very top and a bit shorter */
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 56px;
    padding: 0.5rem 1.5rem;
    z-index: 1000;
  }
  #content.site-content {
    padding-top: 0px;
  }
  /* show burger on mobile */
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    right: 1.5rem;
    top: 8px;
    z-index: 1001;
  }
  /* place logo at left with smaller size */
  .logo {
    position: absolute;
    left: 20px;
    top: 8px;
    height: 40px;
  }
  .site-logo {
    height: 40px;
  }
  .site-logo img,
  .site-logo svg {
    position: static;
    height: 40px;
    transform: none;
  }
  /* Off-canvas primary menu hidden by default, shown when .active is set by JS */
  .main-navigation {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    bottom: 0;
    backdrop-filter: blur(6px);
    transform: translateY(-110%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.2s ease;
    padding: 2rem;
  }
  .main-navigation.active {
    transform: translateY(0);
    opacity: 1;
    position: absolute;
    top: 40px;
    height: 100vh;
    background: #3f7c4a;
  }
  .main-navigation ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .main-navigation a {
    display: block;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    color: #FFFFFF;
  }
  /* Smaller logo on mobile */
  .site-logo img,
  .site-logo svg {
    top: 50%;
    height: 48px;
  }
}
/* Mobile menu toggle (hidden on desktop) */
.mobile-menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  margin-left: auto;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: absolute;
  right: 20px;
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
}
.mobile-menu-toggle .burger-bar {
  position: absolute;
  left: 8px;
  right: 8px;
  height: 2px;
  background: #FFFFFF;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu-toggle .burger-bar:nth-child(1) {
  top: 12px;
}

.mobile-menu-toggle .burger-bar:nth-child(2) {
  top: 19px;
}

.mobile-menu-toggle .burger-bar:nth-child(3) {
  top: 26px;
}

.mobile-menu-toggle.is-open .burger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.is-open .burger-bar:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.is-open .burger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Backdrop for mobile menu */
.mobile-menu-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

body.menu-open .mobile-menu-backdrop {
  display: block;
  opacity: 1;
}

body.no-scroll {
  overflow: hidden;
}

/* Footer - modern green background */
.site-footer {
  background: #3F7C4A;
  color: #FFFFFF;
}

.site-footer a {
  color: #FFFFFF;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.site-footer .footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  max-width: 1480px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.site-footer .footer-section h3 {
  margin: 0 0 1rem 0;
  font-size: 1.5rem;
  color: #D89936;
}

.site-footer .phone-number,
.site-footer .email {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-footer .social-links {
  display: flex;
  gap: 1.5rem;
}

.site-footer .social-links i {
  font-size: 1.25rem;
}

.site-footer .copyright {
  text-align: center;
  padding: 2rem;
}

/* Newsletter section above footer */
.newsletter-section {
  background: linear-gradient(135deg, rgba(63, 124, 74, 0.98), rgba(247, 201, 163, 0.95));
  padding: 3rem 0;
  border-bottom: 10px solid #fff;
}

.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem;
}

.newsletter-title {
  margin: 0 0 1rem 0;
  font-size: 1.6rem;
  font-weight: 700;
  color: #FFFFFF;
}

.newsletter-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.newsletter-form {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.newsletter-form input[type=email] {
  min-width: 260px;
  padding: 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  color: #FFFFFF;
}

.newsletter-form input[type=email]:focus {
  outline: none;
  border-color: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.25);
}

.newsletter-form input[type=email]::placeholder {
  color: rgba(255, 255, 255, 0.8);
}

.newsletter-button {
  border-radius: 999px;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.newsletter-message {
  margin-top: 1rem;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  font-size: 0.95rem;
}

.newsletter-message--success {
  background: #3F7C4A;
  color: #FFFFFF;
}

.newsletter-message--error {
  background: #c0392b;
  color: #FFFFFF;
}

@media (max-width: 768px) {
  .newsletter-inner {
    flex-direction: column;
    align-items: stretch;
  }
  .newsletter-form {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }
  .newsletter-form input[type=email] {
    width: 100%;
    min-width: 0;
  }
  .newsletter-button {
    width: 100%;
    text-align: center;
  }
}
/* FAQ page - accordion on green background */
.faq-page .entry-header {
  margin-bottom: 2rem;
}

.faq-section {
  background: #3F7C4A;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.faq-intro {
  max-width: 800px;
  margin: 0 auto 2rem;
  color: rgba(255, 255, 255, 0.9);
  text-align: left;
}

.faq-list {
  display: grid;
  gap: 1rem;
  margin-bottom: 0;
}

.faq-item {
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.08);
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.faq-toggle {
  width: 100%;
  padding: 1.5rem 2rem;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  color: #FFFFFF;
}

.faq-question {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: left;
}

.faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  line-height: 1;
}

.faq-answer {
  padding: 0 2rem 1.5rem;
  color: #FFFFFF;
  font-size: 0.98rem;
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.25s ease, opacity 0.2s ease;
}

.faq-answer p {
  margin-bottom: 1rem;
}

.faq-item.is-open .faq-answer {
  opacity: 1;
}

@media (max-width: 768px) {
  .faq-item {
    border-radius: 10px;
  }
}
/* Full-bleed page thumbnail with parallax */
.entry-thumbnail {
  position: relative;
  left: 50%;
  right: 50%;
  width: 100vw;
  max-width: 100vw;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-top: 0;
  margin-bottom: 2rem;
  height: 40vh;
  min-height: 300px;
  overflow: hidden;
}

.entry-thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
  transform: translateZ(0);
}

.entry-thumbnail::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
  pointer-events: none;
}

.entry-thumbnail .entry-header {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #FFFFFF;
  padding: 1.5rem 2rem;
  z-index: 2;
}

.entry-thumbnail .entry-title {
  margin: 0;
  color: #FFFFFF;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 0 0 16px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.03em;
}

/* Contact page layout */
.contact-page .contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  margin: 3rem 0;
}

.contact-heading {
  color: #D89936;
  margin: 0 0 1.5rem 0;
  font-size: 1.5rem;
}

.contact-details .contact-row {
  margin-bottom: 2rem;
}

.contact-details h3 {
  margin: 0 0 1rem 0;
  color: #3F7C4A;
  font-size: 1.1rem;
}

.contact-details p, .contact-details a {
  color: #3F7C4A;
  text-decoration: none;
}

.contact-details a:hover {
  color: #D89936;
  text-decoration: underline;
}

.contact-form-inner {
  background: #F3F3F3;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(63, 124, 74, 0.1);
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.contact-form .form-row .full {
  grid-column: 1/-1;
}

.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #D89936;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  border-radius: 6px;
  border: 1px solid rgba(63, 124, 74, 0.2);
  background: #FFFFFF;
  color: #D89936;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #3F7C4A;
  box-shadow: 0 0 0 3px rgba(63, 124, 74, 0.1);
}

.contact-success {
  background: #3F7C4A;
  color: #FFFFFF;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

.contact-form .form-actions {
  text-align: right;
}

.contact-form .form-actions .section-button {
  background: #3F7C4A;
  color: #FFFFFF;
  border-color: #3F7C4A;
}

.contact-form .form-actions .section-button:hover {
  background: #D89936;
  border-color: #D89936;
}

@media (max-width: 768px) {
  .contact-page .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  /* Mobile form styles */
  .contact-form-inner {
    padding: 1.5rem;
  }
  .contact-form .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
  }
  .contact-form label {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
  }
  .contact-form input,
  .contact-form textarea {
    padding: 1rem;
    font-size: 1rem;
    -webkit-appearance: none;
    border-radius: 6px;
  }
  .contact-form textarea {
    min-height: 120px;
    resize: vertical;
  }
  .contact-form .form-actions {
    text-align: center;
    margin-top: 1.5rem;
  }
  .contact-form .form-actions .section-button {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1rem;
  }
  .contact-heading {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  .contact-details .contact-row {
    margin-bottom: 1.5rem;
  }
  .contact-details h3 {
    font-size: 1rem;
  }
  .contact-details p {
    font-size: 0.95rem;
  }
}
/* Contact map - full width */
.contact-map {
  position: relative;
  left: 50%;
  right: 50%;
  width: 100vw;
  max-width: 100vw;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-top: 3rem;
  margin-bottom: 0;
}

.map-embed {
  width: 100%;
  height: 400px;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Jadlospisy overrides to use primary brand color */
.jadlospis-strip {
  background: #3F7C4A;
}

.author-avatar {
  background: #3F7C4A;
}

/* Jadlospisy title tweaks */
.jadlospis-title {
  font-size: 1.8rem;
  text-align: left;
  color: #D89936;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.jadlospis-title a:hover {
  color: #3F7C4A;
  text-decoration: none;
}

/* Jadlospisy banner image should fill container */
.jadlospis-banner {
  min-height: 300px;
}

.banner-image {
  display: flex;
}

.banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Jadlospisy grid */
.jadlospisy-grid {
  margin-bottom: 50px;
}

/* Load More button */
.load-more-wrapper {
  text-align: center;
  margin-top: 3rem;
  margin-bottom: 2rem;
}

.load-more-button {
  display: inline-block;
  padding: 1.5rem 2.5rem;
  background: #FFFFFF;
  color: #3F7C4A;
  border: 2px solid #3F7C4A;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
}

.load-more-button:hover:not(:disabled) {
  background: #3F7C4A;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(63, 124, 74, 0.3);
}

.load-more-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

@media (max-width: 768px) {
  .load-more-button {
    width: 100%;
    max-width: 300px;
    padding: 1rem 2rem;
  }
}
/* Replace solid green backgrounds with brand accent inside jadlospisy sections */
.banner-info {
  background: #F7C9A3;
  color: #D89936;
}

.logo-hexagon {
  color: #D89936;
}

.page-numbers.current,
.page-numbers:hover {
  box-shadow: 0 4px 8px rgba(63, 124, 74, 0.3);
}

/* Jadlospisy - modern color scheme */
.so-tasty-overlay,
.post-thumbnail .so-tasty-overlay {
  background: rgba(247, 201, 163, 0.95);
  color: #D89936;
}

.day-section .day-title {
  color: #3F7C4A;
}

.day-section .meal-category h3 {
  color: #3F7C4A;
}

.post-stats i {
  color: #D89936;
}

.meal-plan-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 3rem 0;
}

@media (min-width: 768px) {
  .meal-plan-content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  .meal-plan-content {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* Modern day card - clean and minimal */
.day-section {
  background: transparent;
  border: none;
  border-left: 3px solid #3F7C4A;
  border-radius: 0;
  padding: 2rem;
  margin-bottom: 1.5rem;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.day-section:hover {
  border-left-color: #D89936;
}

.day-section:hover h1,
.day-section:hover h2,
.day-section:hover h3,
.day-section:hover h4,
.day-section:hover h5,
.day-section:hover h6,
.day-section:hover .day-title,
.day-section:hover .meal-category h3,
.day-section:hover .meal-category p {
  color: #D89936;
}

/* All headings inside day-section should be green */
.day-section h1,
.day-section h2,
.day-section h3,
.day-section h4,
.day-section h5,
.day-section h6 {
  color: #3F7C4A;
}

.day-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 0 1.5rem 0;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.day-title::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3F7C4A;
  flex-shrink: 0;
}

.day-meals {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.meal-category {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(63, 124, 74, 0.15);
  border-radius: 0;
  padding: 1rem 0;
  margin-bottom: 1rem;
  transition: border-color 0.2s ease;
}

.meal-category:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.meal-category:hover {
  border-bottom-color: rgba(216, 153, 54, 0.3);
}

.meal-category h3 {
  display: inline-block;
  margin: 0 0 0.5rem 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #3F7C4A;
  background: transparent;
  border: none;
  padding: 0;
  border-radius: 0;
}

.day-section .meal-category p {
  margin: 0;
  color: #3F7C4A;
  line-height: 1.5;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.section-header h2 {
  font-size: 1.8rem;
  font-weight: bold;
  color: #D89936;
  margin: 0;
}

.engagement-stats {
  display: flex;
  gap: 1.5rem;
  color: #D89936;
  font-size: 0.9rem;
}

.engagement-stats i {
  margin-right: 0.5rem;
  color: #D89936;
}

.view-all {
  color: #3F7C4A;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.view-all:hover {
  color: #D89936;
}

/* Pagination styles */
.navigation.pagination {
  margin: 2rem 0;
  text-align: center;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.page-numbers {
  display: inline-block;
  padding: 1rem 1.5rem;
  background: #FFFFFF;
  color: #3F7C4A;
  text-decoration: none;
  border-radius: 5px;
  border: 2px solid #3F7C4A;
  transition: all 0.3s ease;
  font-weight: 600;
}

.page-numbers:hover,
.page-numbers.current {
  background: #3F7C4A;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(63, 124, 74, 0.3);
}

.page-numbers.prev,
.page-numbers.next {
  background: #D89936;
  color: #FFFFFF;
  border-color: #D89936;
}

.page-numbers.prev:hover,
.page-numbers.next:hover {
  background: #3F7C4A;
  border-color: #3F7C4A;
}

/* Footer mobile typography */
@media (max-width: 768px) {
  .site-footer .footer-content {
    padding: 2rem 0.5rem;
  }
  .site-footer .footer-section h5 {
    font-size: 1.1rem;
  }
  .site-footer, .site-footer p, .site-footer a {
    font-size: 0.95rem;
  }
  .site-footer .copyright {
    font-size: 0.8rem;
  }
}
/* O nas page - bez header/footer */
body.page-o-nas {
  margin: 0;
  padding: 0;
}

.o-nas-page {
  min-height: 100vh;
  background: #FFFFFF;
}

.o-nas-page .entry-content {
  padding: 3rem 0;
  max-width: 1200px;
  margin: 0 auto;
}

.o-nas-page .entry-content h2 {
  color: #3F7C4A;
  margin-top: 3rem;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.o-nas-page .entry-content h2:first-of-type {
  margin-top: 2rem;
}

.o-nas-page .entry-content h3 {
  color: #D89936;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.o-nas-page .entry-content p {
  color: #D89936;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.o-nas-page .entry-content ul,
.o-nas-page .entry-content ol {
  color: #D89936;
  margin-bottom: 1.5rem;
  padding-left: 2.5rem;
}

.o-nas-page .entry-content li {
  margin-bottom: 0.5rem;
  line-height: 1.8;
}

.o-nas-page .entry-content a {
  color: #3F7C4A;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.o-nas-page .entry-content a:hover {
  color: #D89936;
}

/* Style dla bloków ACF na stronie O nas */
.o-nas-page .text-image-repeater {
  padding: 3rem 0;
}

.o-nas-page .text-image-content {
  background: #3F7C4A;
  margin-bottom: 3rem;
}

/* Białe nagłówki i tekst w text-image-repeater na stronie O nas */
.o-nas-page .text-image-repeater .section-heading,
.o-nas-page .text-image-repeater .section-subheading,
.o-nas-page .text-image-repeater .section-content,
.o-nas-page .text-image-repeater .section-content p {
  color: #FFFFFF;
}

/* Białe nagłówki i tekst w about-section na stronie O nas */
.o-nas-page .about-section .about-heading,
.o-nas-page .about-section .about-text,
.o-nas-page .about-section .about-text p {
  color: #FFFFFF;
}

.o-nas-page .services-grid {
  padding: 3rem 0;
  background: #F3F3F3;
}

@media (max-width: 768px) {
  .o-nas-page .entry-content {
    padding: 2rem 1.5rem;
  }
  .o-nas-page .entry-content h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
  }
  .o-nas-page .entry-content h3 {
    font-size: 1.25rem;
  }
  .o-nas-page .entry-content p {
    font-size: 1rem;
  }
}
