*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #061d27;
  background-color: #ffffff;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  object-fit: cover;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  color: #061d27;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

p {
  margin-bottom: 1rem;
  color: #061d27;
}

a {
  color: #f47d00;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #d96e00;
}

.align-left {
  text-align: left;
}

.epms-container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  width: 100%;
  box-sizing: border-box;
}

.epms-hero-content {
  padding-top: 140px;
}

.epms-hero-content .epms-heading {
  position: absolute;
  top: 230px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 80px;
  text-align: center;
}

.epms-hero-default {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Tekst i tło */
.epms-orange {
  color: #f47d00 !important;
}

.epms-bolded {
  font-weight: 700 !important;
}

.epms-text-light {
  color: #ffffff;
}

.epms-text-dark {
  color: #061d27;
}

.epms-text-blue--title {
  color: #273f68;
}

.epms-bg-accent {
  background-color: #f47d00;
}

.epms-bg-footer {
  background-color: #0c2834;
}

.epms-bg-footer-bottom {
  background-color: #091f29;
}

/* Elementy wyróżnione */
.epms-highlight {
  color: #f47d00;
  font-weight: 600;
}

.epms-border {
  width: 100%;
  height: 1px;
  background-color: #fff;
}

.epms-button-wrapper {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px; /* opcjonalnie odstęp od treści powyżej */
}

.epms-btn--arrow {
  text-align: right;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 1rem;
  color: #061d27;
  background-color: transparent;
  padding: 5px 0;
  border: none;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
  font-weight: 600;
}

.epms-btn--arrow::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40%;
  height: 2px;
  background-color: #f47d00;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.epms-btn--arrow:hover::after {
  transform: scaleX(1);
}

.epms-btn--arrow:hover {
  color: #091f29;
}

.epms-btn-arrow {
  width: 16px;
  height: auto;
  display: inline-block;
  transition: filter 0.3s ease;
}

.epms-lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
}

.epms-lightbox img.epms-lightbox-img {
  max-width: 90%;
  max-height: 90%;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
  border-radius: 8px;
}

.epms-lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  z-index: 10000;
  transition: opacity 0.3s ease;
}

.epms-lightbox-close:hover {
  opacity: 0.7;
}

.epms-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 40px;
  color: white;
  cursor: pointer;
  z-index: 10001;
  padding: 0 20px;
  transition: opacity 0.2s ease;
}

.epms-lightbox-prev {
  left: 20px;
}

.epms-lightbox-next {
  right: 20px;
}

.epms-lightbox-nav:hover {
  opacity: 0.7;
}
