@import url("https://fonts.googleapis.com/css2?family=Cardo:ital,wght@0,400;0,700;1,400&display=swap");

@font-face {
  font-family: "BrittanySignature";
  src: url("resources/fonts/BrittanySignature.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Cardo", serif;
  line-height: 1.6;
  color: #3a3335;
  background: #faf8f6;
  font-size: 16px;
  overflow-x: hidden;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
  background: #ffffff;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo {
  width: 70px;
  height: 70px;
  margin-right: 15px;
}

h1 {
  font-family: "BrittanySignature", cursive;
  font-size: 1.8em;
  color: #cda582;
}

.nav-links {
  display: flex;
  gap: 25px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #3a3335;
  font-size: 1em;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #cda582;
}

.hamburger {
  display: none;
  font-size: 1.8em;
  cursor: pointer;
  color: #3a3335;
}

.hero,
.offer-hero,
.training-hero,
.contact-hero,
.about-hero,
.effects-hero {
  background: linear-gradient(135deg, #f5e9e2, #e6c9b8);
  padding: 100px 5%;
  margin-top: 100px;
  text-align: center;
  color: #3a3335;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.hero:after,
.offer-hero:after,
.training-hero:after,
.contact-hero:after,
.about-hero:after,
.effects-hero:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent);
  z-index: 0;
  opacity: 0.5;
}

.hero > *,
.offer-hero > *,
.training-hero > *,
.contact-hero > *,
.about-hero > *,
.effects-hero > * {
  position: relative;
  z-index: 1;
}

.hero {
  min-height: calc(100vh - 100px);
}

.hero-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  width: 100%;
}

.hero-content {
  flex: 1;
  min-width: 280px;
  text-align: left;
  padding: 40px;
}

.hero-content h2,
.offer-hero-content h2,
.training-hero-content h2,
.contact-hero-content h2,
.about-hero-content h2,
.effects-hero-content h2 {
  font-size: 3em;
  margin-bottom: 20px;
  color: #3a3335;
  font-weight: 600;
}

.hero-content h2 span {
  font-family: "BrittanySignature", cursive;
}

.hero-content p,
.offer-hero-content p,
.training-hero-content p,
.contact-hero-content p,
.about-hero-content p,
.effects-hero-content p {
  font-size: 1.2em;
  max-width: 600px;
  margin: 0 auto 25px;
  color: #5e5557;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.hero-image {
  flex: 1;
  min-width: 280px;
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.cta-button {
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 30px;
  font-size: 1em;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: inline-block;
}

.cta-button.primary {
  background: #cda582;
  color: #fff;
}

.cta-button.primary:hover {
  background: #b99874;
  color: #fff;
}

.cta-button.secondary {
  background: transparent;
  color: #cda582;
  border: 2px solid #cda582;
}

.cta-button.secondary:hover {
  background: #cda582;
  color: #fff;
}

.cta-button.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(205, 165, 130, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(205, 165, 130, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(205, 165, 130, 0);
  }
}

.offer-info .cta-button {
  padding: 10px 25px;
  font-size: 1em;
  align-self: center;
  margin: 15px 0;
  transition: background 0.3s ease, color 0.3s ease;
}

.offer-info .cta-button:hover {
  transform: none;
}

.about-section {
  padding: 80px 5%;
  text-align: center;
  background: #fff;
}

.about-section h2 {
  font-size: 2.5em;
  color: #3a3335;
  margin-bottom: 40px;
  font-weight: 600;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.about-item {
  padding: 25px;
  background: #fefcfa;
  border-radius: 15px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, background 0.3s ease;
}

.about-item:hover {
  transform: translateY(-5px);
  background: #f5e9e2;
}

.about-item i {
  font-size: 2.2em;
  color: #cda582;
  margin-bottom: 15px;
}

.about-item h3 {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: #3a3335;
}

.about-item p {
  font-size: 1em;
  color: #5e5557;
}

.stats-section {
  padding: 80px 5%;
  text-align: center;
  background: #000;
  background-image: linear-gradient(
      135deg,
      rgba(245, 233, 226, 0.8),
      rgba(230, 201, 184, 0.8)
    ),
    url("https://www.transparenttextures.com/patterns/clean-gray-paper.png");
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  position: relative;
}

.stats-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.stats-item {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  transition: transform 0.3s ease;
}

.stats-item:hover {
  transform: translateY(-5px);
}

.stats-item h3 {
  font-size: 2.5em;
  color: #3a3335;
  font-weight: 600;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.stats-item p {
  font-size: 1em;
  color: #5e5557;
  text-transform: uppercase;
}

.mission-section {
  padding: 80px 5%;
  background: #f5e9e2;
}

.mission-container {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  align-items: center;
}

.mission-text {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mission-text h3 {
  font-size: 1.8em;
  color: #cda582;
  margin-bottom: 10px;
  position: relative;
}

.mission-text h3::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 2px;
  background: #cda582;
}

.mission-text p {
  font-size: 1.1em;
  color: #5e5557;
  line-height: 1.8;
  text-align: justify;
}

.mission-image {
  flex: 1;
  min-width: 300px;
}

.mission-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.mission-image img:hover {
  transform: scale(1.02);
}

.inline-photo {
  display: block;
  width: 200px;
  height: 200px;
  align-self: flex-start;
}

.inline-photo img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
  border: 2px solid #cda582;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.inline-photo img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.team-section {
  padding: 80px 5%;
  text-align: center;
  background: #fff;
}

.team-section h2 {
  font-size: 2.5em;
  color: #3a3335;
  margin-bottom: 40px;
  font-weight: 600;
}

.team-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.team-card {
  background: #fefcfa;
  border-radius: 15px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease, background 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  background: #f5e9e2;
}

.team-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.team-info {
  padding: 20px;
  text-align: left;
}

.team-info h3 {
  font-size: 1.4em;
  color: #cda582;
  margin-bottom: 10px;
}

.team-info p {
  font-size: 1em;
  color: #5e5557;
}

.services-section {
  padding: 80px 5%;
  text-align: center;
  background: #faf8f6;
}

.services-section h2 {
  font-size: 2.5em;
  color: #3a3335;
  margin-bottom: 40px;
  font-weight: 600;
}

.services-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease, background 0.3s ease;
  min-height: 420px;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
  background: #f5e9e2;
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-info {
  padding: 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.service-info h3 {
  font-size: 1.4em;
  color: #cda582;
  margin-bottom: 10px;
}

.service-info p {
  font-size: 1em;
  color: #5e5557;
  margin-bottom: 15px;
}

.consultations-section {
  padding: 80px 5%;
  text-align: center;
  background: linear-gradient(
      135deg,
      rgba(245, 233, 226, 0.8),
      rgba(230, 201, 184, 0.8)
    ),
    url("https://www.transparenttextures.com/patterns/clean-gray-paper.png");
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  position: relative;
}

.consultations-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, background 0.3s ease;
  position: relative;
  overflow: hidden;
}

.consultations-container:hover {
  transform: translateY(-5px);
  background: #fefcfa;
}

.consultations-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(205, 165, 130, 0.1), transparent);
  z-index: 0;
  opacity: 0.5;
}

.consultations-container > * {
  position: relative;
  z-index: 1;
}

.consultations-container h2 {
  font-size: 2.8em;
  color: #3a3335;
  margin-bottom: 25px;
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.consultations-container h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #cda582;
  border-radius: 2px;
}

.consultations-container p {
  font-size: 1.2em;
  color: #5e5557;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.consultations-container ul {
  list-style: none;
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: left;
}

.consultations-container ul li {
  font-size: 1.1em;
  color: #5e5557;
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
}

.consultations-container ul li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #cda582;
  position: absolute;
  left: 0;
  top: 2px;
}

.consultations-container .cta-button {
  margin: 0 auto;
  display: block;
  width: fit-content;
}

.regulations-section {
  padding: 100px 5%;
  background: #f5e9e2;
}

.regulations-container {
  max-width: 1000px;
  margin: 0 auto;
  background: #fff;
  padding: 50px;
  border-radius: 15px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.regulations-container h2 {
  font-family: "Cardo", serif;
  font-weight: 600;
  font-size: 2.5em;
  color: #3a3335;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.regulations-container h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: #cda582;
}

.regulation-item {
  margin-bottom: 40px;
  padding: 25px;
  border-left: 4px solid #cda582;
  background: #faf8f6;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.regulation-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.regulation-item h3 {
  font-family: "Cardo", serif;
  font-weight: 600;
  font-size: 1.6em;
  color: #3a3335;
  margin-bottom: 20px;
}

.regulation-item p {
  font-family: "Cardo", serif;
  font-weight: 300;
  font-size: 1.1em;
  color: #5e5557;
  line-height: 1.8;
  margin-bottom: 15px;
}

.regulation-item p:last-child {
  margin-bottom: 0;
}

.offer-section {
  padding: 80px 5%;
  background: #fff;
}

.offer-category {
  display: block;
}

.offer-category:not(.active) {
  display: none;
}

.offer-category h2 {
  font-size: 2.5em;
  color: #3a3335;
  margin-bottom: 30px;
  font-weight: 600;
  text-align: center;
}

.offer-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.offer-card {
  background: #fefcfa;
  border-radius: 15px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease, background 0.3s ease;
  display: flex;
  flex-direction: column;
  width: 800px;
  margin: 0 auto;
}

.offer-card:hover {
  transform: translateY(-10px);
  background: #f5e9e2;
}

.offer-info {
  padding: 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.offer-info h3 {
  font-size: 1.6em;
  color: #3a3335;
  margin-bottom: 15px;
}

.offer-info p {
  font-size: 1.1em;
  color: #5e5557;
  margin-bottom: 20px;
}

.offer-info ul {
  list-style: none;
  margin-bottom: 20px;
}

.offer-info ul li {
  font-size: 1em;
  color: #5e5557;
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.offer-info ul li:before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #cda582;
  position: absolute;
  left: 0;
  top: 2px;
}

.offer-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.offer-table th,
.offer-table td {
  padding: 12px;
  text-align: left;
  font-size: 1em;
  color: #5e5557;
  border-bottom: 1px solid #e6c9b8;
  transition: background 0.3s ease;
}

.offer-table th {
  color: #3a3335;
  font-weight: 600;
}

.offer-table tbody tr:hover {
  background: #f5e9e2;
}

.offer-filters {
  text-align: center;
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-button {
  padding: 10px 20px;
  font-size: 1em;
  font-weight: 500;
  border: 2px solid #cda582;
  border-radius: 25px;
  background: transparent;
  color: #cda582;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-button:hover,
.filter-button.active {
  background: #cda582;
  color: #fff;
}

.offer-card.hidden {
  display: none;
}

.training-section {
  padding: 100px 5%;
  background: #f5e9e2;
}

.training-container {
  max-width: 1000px;
  margin: 0 auto;
  background: #fff;
  padding: 50px;
  border-radius: 15px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.training-container h2 {
  font-family: "Cardo", serif;
  font-weight: 600;
  font-size: 2.5em;
  color: #3a3335;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.training-container h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: #cda582;
}

.training-item {
  margin-bottom: 30px;
  background: #fefcfa;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.training-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.training-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background: #faf8f6;
  border-radius: 10px 10px 0 0;
  transition: background 0.3s ease;
}

.training-header:hover {
  background: #f5e9e2;
}

.training-header h3 {
  font-family: "Cardo", serif;
  font-weight: 600;
  font-size: 1.6em;
  color: #3a3335;
  margin: 0;
  line-height: 1.4;
}

.toggle-icon {
  font-size: 1.2em;
  color: #cda582;
  transition: transform 0.3s ease, color 0.3s ease;
}

.toggle-icon.active {
  transform: rotate(180deg);
  color: #b99874;
}

.training-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  background: #fff;
  border-radius: 0 0 10px 10px;
  padding: 0 25px;
}

.training-content.active {
  max-height: 9999999px;
  padding: 25px;
}

.detailed-desc {
  font-family: "Cardo", serif;
  font-weight: 300;
  font-size: 1.1em;
  color: #5e5557;
  line-height: 1.8;
}

.detailed-desc p {
  margin-bottom: 20px;
}

.detailed-desc p:last-child {
  margin-bottom: 0;
}

.detailed-desc p strong {
  color: #3a3335;
  font-weight: 600;
}

.training-program {
  margin: 25px 0;
}

.training-program h4 {
  font-family: "Cardo", serif;
  font-weight: 600;
  font-size: 1.3em;
  color: #cda582;
  margin-bottom: 15px;
  position: relative;
}

.training-program h4::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 2px;
  background: #cda582;
}

.training-program ul {
  list-style: none;
  padding-left: 20px;
}

.training-program ul li {
  font-family: "Cardo", serif;
  font-weight: 300;
  font-size: 1.1em;
  color: #5e5557;
  margin-bottom: 12px;
  position: relative;
  padding-left: 25px;
  line-height: 1.6;
}

.training-program ul li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #cda582;
  position: absolute;
  left: 0;
  top: 3px;
  font-size: 1em;
}

.training-hero {
  position: relative;
  margin-top: 100px;
  min-height: calc(70vh - 100px);
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("resources/kasia3.jpg") no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 5%;
  color: #fff;
}

.training-hero-content {
  max-width: 900px;
  background: rgba(0, 0, 0, 0.3);
  padding: 30px;
  border-radius: 10px;
}

.training-hero-content h2 {
  font-family: "Cardo", serif;
  font-weight: 600;
  font-size: 3.5em;
  color: #fff;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
  margin-bottom: 30px;
  line-height: 1.2;
}

.training-hero-content p {
  font-family: "Cardo", serif;
  font-weight: 300;
  font-size: 1.3em;
  color: #f5e9e2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
  line-height: 1.6;
}

.regulations-hero,
.consultations-hero {
  margin-top: 100px;
  min-height: calc(70vh - 100px);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 5%;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.regulations-hero .hero-image,
.consultations-hero .hero-image {
  flex: 1;
  min-width: 280px;
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.regulations-hero .hero-image img,
.consultations-hero .hero-image img {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}
/* Training Gallery Section (kontynuacja) */
.training-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.training-card {
  background: #f5e9e2;
  border-radius: 15px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  padding: 25px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.training-card:hover {
  transform: translateY(-5px);
  background: #fefcfa;
}

.training-card-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 15px;
}

.training-card-gallery img {
  width: 100%;
  max-width: 250px;
  height: 250px;
  object-fit: contain;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.training-card-gallery img:hover {
  transform: scale(1.05);
}

.training-info {
  padding: 15px;
  text-align: center;
}

.training-info p {
  font-size: 1em;
  color: #5e5557;
  margin: 0;
}

/* Lightbox z sliderem */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(58, 51, 53, 0.9);
  z-index: 2000;
  justify-content: center;
  align-items: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-slider {
  position: relative;
  max-width: 90%;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-slider img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  display: none;
}

.lightbox-slider img.active {
  display: block;
}

/* Strzałki do nawigacji w lightbox */
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2em;
  color: #fff;
  cursor: pointer;
  background: #cda582;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: #b99874;
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

/* Licznik zdjęć w lightbox */
.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 1em;
  background: rgba(0, 0, 0, 0.5);
  padding: 5px 10px;
  border-radius: 10px;
}

/* Przycisk zamknięcia lightbox */
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2em;
  color: #fff;
  cursor: pointer;
  background: #cda582;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.lightbox-close:hover {
  background: #b99874;
}

/* Why Us Section */
.why-us-section {
  padding: 80px 5%;
  text-align: center;
  background: #faf8f6;
}

.why-us-section h2 {
  font-size: 2.5em;
  color: #3a3335;
  margin-bottom: 40px;
  font-weight: 600;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.why-us-item {
  padding: 25px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, background 0.3s ease;
}

.why-us-item:hover {
  transform: translateY(-5px);
  background: #f5e9e2;
}

.why-us-item i {
  font-size: 2.2em;
  color: #cda582;
  margin-bottom: 15px;
}

.why-us-item h3 {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: #3a3335;
}

.why-us-item p {
  font-size: 1em;
  color: #5e5557;
}

/* Training Intro Section */
.training-intro-section {
  padding: 80px 5%;
  background: #fff;
  text-align: center;
}

.training-intro-container {
  max-width: 1200px;
  margin: 0 auto;
}

.training-intro-container h2 {
  font-size: 2.5em;
  color: #3a3335;
  margin-bottom: 20px;
  font-weight: 600;
}

.training-intro-container p {
  font-size: 1.2em;
  color: #5e5557;
  max-width: 800px;
  margin: 0 auto;
}

/* Training Description Section */
.training-description-section {
  padding: 80px 5%;
  background: #f5e9e2;
  text-align: center;
}

.training-description-container {
  max-width: 1200px;
  margin: 0 auto;
}

.training-description-container h2 {
  font-size: 2.5em;
  color: #3a3335;
  margin-bottom: 20px;
  font-weight: 600;
}

.training-description-container p {
  font-size: 1.2em;
  color: #5e5557;
  max-width: 800px;
  margin: 0 auto;
}

/* Training Benefits Section */
.training-benefits-section {
  padding: 80px 5%;
  background: #fff;
  text-align: center;
}

.training-benefits-container {
  max-width: 1200px;
  margin: 0 auto;
}

.training-benefits-container h2 {
  font-size: 2.5em;
  color: #3a3335;
  margin-bottom: 30px;
  font-weight: 600;
}

.training-benefits-container ul {
  list-style: none;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.training-benefits-container ul li {
  font-size: 1.1em;
  color: #5e5557;
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
}

.training-benefits-container ul li:before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #cda582;
  position: absolute;
  left: 0;
  top: 2px;
}

/* Training Video Section */
.training-video-section {
  padding: 80px 5%;
  background: #faf8f6;
  text-align: center;
}

.training-video-container {
  max-width: 1200px;
  margin: 0 auto;
}

.training-video-container h2 {
  font-size: 2.5em;
  color: #3a3335;
  margin-bottom: 30px;
  font-weight: 600;
}

.video-wrapper {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  border-radius: 15px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 15px;
}

/* Contact Section */
.contact-section {
  padding: 80px 5%;
  background: #fff;
}

.contact-container {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-info h3 {
  font-size: 1.8em;
  color: #3a3335;
  margin-bottom: 20px;
}

.contact-info ul {
  list-style: none;
  margin-bottom: 20px;
}

.contact-info ul li {
  display: flex;
  align-items: center;
  font-size: 1em;
  color: #5e5557;
  margin-bottom: 15px;
}

.contact-info ul li i {
  font-size: 1.2em;
  color: #cda582;
  margin-right: 15px;
}

.contact-info ul li a {
  color: #3a3335;
  transition: color 0.3s ease;
}

.contact-info ul li a:hover {
  color: #cda582;
}

.contact-info .socials h4 {
  font-size: 1.2em;
  color: #3a3335;
  margin-bottom: 10px;
}

.contact-info .socials a {
  font-size: 1.8em;
  color: #5e5557;
  margin-right: 15px;
  transition: color 0.3s ease;
}

.contact-info .socials a:hover {
  color: #cda582;
}

.contact-info .working-hours h4 {
  font-size: 1.2em;
  color: #3a3335;
  margin: 20px 0 10px;
}

.contact-info .working-hours p {
  font-size: 1em;
  color: #5e5557;
}

.contact-form {
  flex: 1;
  min-width: 300px;
}

.contact-form h3 {
  font-size: 1.8em;
  color: #3a3335;
  margin-bottom: 20px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 1em;
  color: #5e5557;
  margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
  padding: 12px;
  font-size: 1em;
  border: 1px solid #e6c9b8;
  border-radius: 8px;
  font-family: "Cardo", serif;
  resize: vertical;
  background: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #cda582;
  outline: none;
  box-shadow: 0 0 5px rgba(205, 165, 130, 0.3);
}

/* Map Section */
.map-section {
  padding: 80px 5%;
  text-align: center;
  background: #faf8f6;
}

.map-section h2 {
  font-size: 2.5em;
  color: #3a3335;
  margin-bottom: 40px;
  font-weight: 600;
}

.map-section .map iframe {
  width: 100%;
  max-width: 1200px;
  height: 400px;
  border-radius: 15px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

/* Effects Section */
.effects-section {
  padding: 80px 5%;
  text-align: center;
  background: #fff;
}

.effects-section h2 {
  font-size: 2.5em;
  color: #3a3335;
  margin-bottom: 40px;
  font-weight: 600;
}

.effects-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.effects-item {
  background: #fefcfa;
  border-radius: 15px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  padding: 15px;
  width: 100%;
  transition: transform 0.3s ease, background 0.3s ease;
}

.effects-item:hover {
  transform: translateY(-5px);
  background: #f5e9e2;
}

.effects-image {
  width: 100%;
  border-radius: 15px;
}

.effects-image-single {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
  border-radius: 10px;
  margin: 0 auto;
}

.effects-item p {
  font-size: 1.1em;
  color: #5e5557;
  margin-top: 15px;
  margin-bottom: 15px;
}

/* CTA Section */
.cta-section {
  padding: 80px 5%;
  text-align: center;
  background: linear-gradient(135deg, #f5e9e2, #e6c9b8);
  color: #3a3335;
}

.cta-section h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
  font-weight: 600;
}

.cta-section p {
  font-size: 1.2em;
  margin-bottom: 25px;
  color: #5e5557;
}

/* Footer */
.footer {
  background: #3a3335;
  color: #fff;
  padding: 40px 5%;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-info h3 {
  font-size: 1.6em;
  color: #cda582;
  margin-bottom: 15px;
}

.footer-info p {
  font-size: 1em;
  color: #d8d3d5;
}

.socials a {
  font-size: 1.5em;
  color: #fff;
  margin-right: 15px;
  transition: color 0.3s ease;
}

.socials a:hover {
  color: #cda582;
}

.footer .map iframe {
  width: 300px;
  height: 200px;
  border-radius: 15px;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 0.9em;
  color: #d8d3d5;
}

/* Linki ogólne */
a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

.see-more {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 30px;
  font-size: 1.2em;
  font-weight: 600;
  color: #cda582;
  border: 2px solid #cda582;
  border-radius: 30px;
  background: transparent;
  transition: all 0.3s ease;
}

.see-more:hover {
  background: #cda582;
  color: #fff;
}

/* Animacje */
.animate-slide-up {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease-out;
}

.animate-slide-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsywność */
@media (max-width: 1024px) {
  .hero {
    margin-top: 100px;
    min-height: calc(80vh - 100px);
    padding: 60px 5%;
  }

  .offer-hero,
  .training-hero,
  .contact-hero,
  .about-hero,
  .effects-hero,
  .regulations-hero,
  .consultations-hero {
    margin-top: 100px;
    min-height: calc(65vh - 100px);
    padding: 40px 5%;
  }

  .offer-info .cta-button {
    padding: 8px 20px;
    font-size: 0.9em;
  }

  .offer-card {
    width: 600px;
  }

  .hero {
    background: none;
    background-image: url("resources/kasia2.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
  }

  .hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
  }

  .hero-image {
    display: none;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .hero-content {
    text-align: center;
    padding: 20px;
    position: relative;
    z-index: 1;
  }

  .hero-content h2 {
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
  }

  .hero-content p {
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
  }

  .hero-buttons {
    justify-content: center;
  }

  .about-grid,
  .services-gallery,
  .effects-gallery,
  .training-gallery,
  .why-us-grid,
  .team-gallery,
  .stats-gallery {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }

  .contact-container,
  .mission-container {
    flex-direction: column;
    gap: 30px;
  }

  .mission-text {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .mission-text p {
    text-align: center;
  }

  .inline-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
  }

  .offer-table th,
  .offer-table td {
    font-size: 0.9em;
  }

  .consultations-container,
  .regulations-container {
    padding: 40px;
  }

  .consultations-container h2,
  .regulations-container h2 {
    font-size: 2.2em;
  }

  .consultations-container p,
  .regulations-container p,
  .consultations-container ul li,
  .regulations-container ol li {
    font-size: 1.1em;
  }

  .regulation-item {
    margin-bottom: 35px;
    padding: 20px;
  }

  .regulation-item h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
  }

  .regulation-item p {
    font-size: 1em;
    margin-bottom: 12px;
  }

  .training-hero-content {
    padding: 25px;
  }

  .training-hero-content h2 {
    font-size: 3em;
    margin-bottom: 25px;
  }

  .training-hero-content p {
    font-size: 1.2em;
  }

  .training-container {
    padding: 40px;
  }

  .training-container h2 {
    font-size: 2.2em;
    margin-bottom: 40px;
  }

  .training-header h3 {
    font-size: 1.5em;
  }

  .short-desc,
  .detailed-desc {
    font-size: 1em;
  }

  .service-card {
    min-height: 380px;
  }

  .filter-button {
    padding: 8px 15px;
    font-size: 0.9em;
  }

  .video-wrapper {
    max-width: 450px;
  }

  .consultations-section,
  .regulations-section,
  .stats-section {
    background-attachment: scroll;
  }

  .regulations-hero .hero-image img,
  .consultations-hero .hero-image img {
    max-width: 600px;
  }
}

@media (max-width: 900px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background: #ffffff;
    flex-direction: column;
    padding: 80px 20px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 999;
    transition: transform 0.3s ease;
    transform: translateX(100%);
  }

  .nav-links.active {
    display: flex;
    transform: translateX(0);
  }

  .nav-links li {
    margin: 15px 0;
  }

  .logo {
    width: 60px;
    height: 60px;
  }

  h1 {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: calc(70vh - 90px);
    margin-top: 90px;
    padding: 40px 5%;
  }

  .offer-hero,
  .training-hero,
  .contact-hero,
  .about-hero,
  .effects-hero,
  .regulations-hero,
  .consultations-hero {
    margin-top: 90px;
    min-height: calc(55vh - 90px);
    padding: 30px 5%;
  }

  .offer-card {
    width: 500px;
  }

  .hero-content h2,
  .offer-hero-content h2,
  .training-hero-content h2,
  .contact-hero-content h2,
  .about-hero-content h2,
  .effects-hero-content h2 {
    font-size: 2.2em;
  }

  .hero-content p,
  .offer-hero-content p,
  .training-hero-content p,
  .contact-hero-content p,
  .about-hero-content p,
  .effects-hero-content p {
    font-size: 1em;
  }

  .cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .about-section,
  .services-section,
  .effects-section,
  .offer-section,
  .training-section,
  .why-us-section,
  .contact-section,
  .map-section,
  .mission-section,
  .team-section,
  .cta-section,
  .consultations-section,
  .regulations-section,
  .stats-section,
  .training-intro-section,
  .training-description-section,
  .training-benefits-section,
  .training-video-section {
    padding: 60px 5%;
  }

  .about-section h2,
  .services-section h2,
  .effects-section h2,
  .offer-section h2,
  .training-section h2,
  .why-us-section h2,
  .contact-section h2,
  .map-section h2,
  .mission-section h2,
  .team-section h2,
  .cta-section h2,
  .consultations-container h2,
  .regulations-container h2,
  .training-intro-container h2,
  .training-description-container h2,
  .training-benefits-container h2,
  .training-video-container h2 {
    font-size: 2em;
  }

  .consultations-container,
  .regulations-container {
    padding: 30px;
  }

  .consultations-container h2,
  .regulations-container h2 {
    font-size: 2em;
  }

  .consultations-container p,
  .regulations-container p,
  .consultations-container ul li,
  .regulations-container ol li {
    font-size: 1em;
  }

  .regulation-item {
    margin-bottom: 30px;
    padding: 15px;
  }

  .regulation-item h3 {
    font-size: 1.4em;
    margin-bottom: 12px;
  }

  .regulation-item p {
    font-size: 0.95em;
    margin-bottom: 10px;
  }

  .training-hero-content {
    padding: 20px;
  }

  .training-hero-content h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
  }

  .training-hero-content p {
    font-size: 1.1em;
  }

  .training-section {
    padding: 80px 5%;
  }

  .training-container {
    padding: 30px;
  }

  .training-container h2 {
    font-size: 2em;
    margin-bottom: 35px;
  }

  .training-header {
    padding: 15px 0;
  }

  .training-header h3 {
    font-size: 1.4em;
  }

  .toggle-icon {
    font-size: 1.1em;
  }

  .short-desc,
  .detailed-desc {
    font-size: 0.95em;
  }

  .detailed-desc {
    padding: 15px 0;
  }

  .service-card img,
  .team-card img {
    height: 180px;
  }

  .effects-gallery {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .effects-image-single {
    max-width: 300px;
  }

  .map-section .map iframe {
    height: 300px;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer .map iframe {
    width: 100%;
  }

  .offer-info h3 {
    font-size: 1.4em;
  }

  .offer-info p {
    font-size: 1em;
  }

  .offer-table th,
  .offer-table td {
    font-size: 0.9em;
    padding: 10px;
  }

  .training-gallery {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  }

  .training-card-gallery img {
    max-width: 200px;
    height: 200px;
  }

  .training-info p {
    font-size: 0.9em;
  }

  .lightbox-prev,
  .lightbox-next {
    width: 35px;
    height: 35px;
    font-size: 1.5em;
  }

  .lightbox-close {
    width: 35px;
    height: 35px;
    font-size: 1.5em;
  }

  .lightbox-counter {
    font-size: 0.9em;
  }

  .see-more {
    padding: 10px 25px;
    font-size: 1em;
  }

  .stats-item h3 {
    font-size: 2em;
  }

  .stats-item p {
    font-size: 0.9em;
  }

  .service-card {
    min-height: 360px;
  }

  .filter-button {
    padding: 8px 15px;
    font-size: 0.9em;
  }

  .training-intro-container p,
  .training-description-container p,
  .training-benefits-container ul li {
    font-size: 1em;
  }

  .video-wrapper {
    max-width: 400px;
  }

  .mission-section {
    padding: 60px 5%;
  }

  .mission-text h3 {
    font-size: 1.5em;
  }

  .mission-text p {
    font-size: 1em;
  }

  .inline-photo {
    width: 100px;
    height: 100px;
  }

  .mission-image {
    min-width: 250px;
  }

  .regulations-hero,
  .consultations-hero {
    padding: 40px 5%;
    min-height: calc(60vh - 100px);
  }

  .regulations-hero .hero-image img,
  .consultations-hero .hero-image img {
    max-width: 600px;
  }
}

@media (max-width: 600px) {
  .offer-card {
    width: 90%;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: calc(60vh - 80px);
    margin-top: 80px;
    padding: 30px 5%;
  }

  .offer-hero,
  .training-hero,
  .contact-hero,
  .about-hero,
  .effects-hero,
  .regulations-hero,
  .consultations-hero {
    margin-top: 80px;
    min-height: calc(45vh - 80px);
    padding: 20px 5%;
  }

  .offer-card {
    width: 90%;
    margin: 0 auto;
  }

  .hero-content {
    min-width: 100%;
    padding: 15px;
  }

  .hero-content h2,
  .offer-hero-content h2,
  .training-hero-content h2,
  .contact-hero-content h2,
  .about-hero-content h2,
  .effects-hero-content h2 {
    font-size: 1.8em;
  }

  .hero-content p,
  .offer-hero-content p,
  .training-hero-content p,
  .contact-hero-content p,
  .about-hero-content p,
  .effects-hero-content p {
    font-size: 0.9em;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .service-info h3,
  .offer-info h3,
  .training-info h3,
  .contact-info h3,
  .contact-form h3,
  .mission-text h3,
  .team-info h3 {
    font-size: 1.2em;
  }

  .offer-info p,
  .training-info p,
  .mission-text p {
    font-size: 0.9em;
  }

  .effects-item p {
    font-size: 1em;
  }

  .contact-info ul li,
  .contact-info .working-hours p {
    font-size: 0.9em;
  }

  .offer-table th,
  .offer-table td {
    font-size: 0.85em;
    padding: 8px;
  }

  .effects-gallery {
    grid-template-columns: 1fr;
  }

  .effects-image-single {
    max-width: 100%;
  }

  .training-gallery {
    grid-template-columns: 1fr;
  }

  .training-card-gallery img {
    max-width: 300px;
    height: 300px;
  }

  .training-info p {
    font-size: 0.85em;
  }

  .lightbox-prev,
  .lightbox-next {
    width: 30px;
    height: 30px;
    font-size: 1.2em;
  }

  .lightbox-close {
    width: 30px;
    height: 30px;
    font-size: 1.2em;
  }

  .lightbox-counter {
    font-size: 0.8em;
  }

  .consultations-container,
  .regulations-container {
    padding: 20px;
  }

  .consultations-container h2,
  .regulations-container h2 {
    font-size: 1.8em;
  }

  .consultations-container p,
  .regulations-container p,
  .consultations-container ul li,
  .regulations-container ol li {
    font-size: 0.9em;
  }

  .regulation-item {
    margin-bottom: 25px;
    padding: 12px;
    border-left-width: 3px;
  }

  .regulation-item h3 {
    font-size: 1.3em;
    margin-bottom: 10px;
  }

  .regulation-item p {
    font-size: 0.9em;
    margin-bottom: 8px;
  }

  .training-hero-content {
    padding: 15px;
  }

  .training-hero-content h2 {
    font-size: 2em;
    margin-bottom: 15px;
  }

  .training-hero-content p {
    font-size: 0.9em;
  }

  .training-section {
    padding: 60px 5%;
  }

  .training-container {
    padding: 20px;
  }

  .training-container h2 {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .training-header {
    padding: 12px 0;
  }

  .training-header h3 {
    font-size: 1.3em;
  }

  .toggle-icon {
    font-size: 1em;
  }

  .short-desc,
  .detailed-desc {
    font-size: 0.9em;
  }

  .detailed-desc {
    padding: 12px 0;
  }

  .see-more {
    padding: 8px 20px;
    font-size: 0.9em;
  }

  .stats-item h3 {
    font-size: 1.8em;
  }

  .stats-item p {
    font-size: 0.8em;
  }

  .service-card {
    min-height: 340px;
  }

  .logo {
    width: 50px;
    height: 50px;
  }

  h1 {
    font-size: 1.4em;
  }

  .header {
    padding: 15px 5%;
  }

  .filter-button {
    padding: 6px 12px;
    font-size: 0.8em;
  }

  .training-intro-section,
  .training-description-section,
  .training-benefits-section,
  .training-video-section {
    padding: 40px 5%;
  }

  .training-intro-container h2,
  .training-description-container h2,
  .training-benefits-container h2,
  .training-video-container h2 {
    font-size: 1.8em;
  }

  .training-intro-container p,
  .training-description-container p,
  .training-benefits-container ul li {
    font-size: 0.9em;
  }

  .video-wrapper {
    max-width: 100%;
  }

  .mission-section {
    padding: 40px 5%;
  }

  .mission-text h3 {
    font-size: 1.3em;
  }

  .mission-text p {
    font-size: 0.9em;
  }

  .inline-photo {
    width: 80px;
    height: 80px;
  }

  .mission-image {
    min-width: 200px;
  }

  .regulations-hero,
  .consultations-hero {
    padding: 20px 5%;
    min-height: calc(50vh - 80px);
  }

  .regulations-hero .hero-image img,
  .consultations-hero .hero-image img {
    max-width: 100%;
  }
}

/* Responsywność */
@media (max-width: 1024px) {
  .training-section {
    padding: 80px 5%;
  }

  .training-container {
    padding: 40px;
  }

  .training-container h2 {
    font-size: 2.2em;
    margin-bottom: 40px;
  }

  .training-header h3 {
    font-size: 1.5em;
  }

  .detailed-desc {
    font-size: 1em;
  }

  .training-program h4 {
    font-size: 1.2em;
  }

  .training-program ul li {
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .training-section {
    padding: 60px 5%;
  }

  .training-container {
    padding: 30px;
  }

  .training-container h2 {
    font-size: 2em;
    margin-bottom: 35px;
  }

  .training-item {
    margin-bottom: 25px;
  }

  .training-header {
    padding: 15px 20px;
  }

  .training-header h3 {
    font-size: 1.4em;
  }

  .toggle-icon {
    font-size: 1.1em;
  }

  .training-content.active {
    max-height: 9999999px; /* Zwiększone na mniejszych ekranach, bo tekst może się zawijać */
    padding: 20px;
  }

  .detailed-desc {
    font-size: 0.95em;
  }

  .detailed-desc p {
    margin-bottom: 15px;
  }

  .training-program h4 {
    font-size: 1.1em;
  }

  .training-program ul li {
    font-size: 0.95em;
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .training-section {
    padding: 40px 5%;
  }

  .training-container {
    padding: 20px;
  }

  .training-container h2 {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .training-item {
    margin-bottom: 20px;
  }

  .training-header {
    padding: 12px 15px;
  }

  .training-header h3 {
    font-size: 1.3em;
  }

  .toggle-icon {
    font-size: 1em;
  }

  .training-content.active {
    max-height: 9999999px; /* Jeszcze większe na bardzo małych ekranach */
    padding: 15px;
  }

  .detailed-desc {
    font-size: 0.9em;
  }

  .detailed-desc p {
    margin-bottom: 12px;
  }

  .training-program h4 {
    font-size: 1em;
  }

  .training-program ul li {
    font-size: 0.9em;
    margin-bottom: 8px;
  }
}

/* Training Section */
.training-section {
  padding: 100px 5%;
  background: #f5e9e2;
}

.training-container {
  max-width: 1000px;
  margin: 0 auto;
  background: #fff;
  padding: 50px;
  border-radius: 15px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.training-container h2 {
  font-family: "Cardo", serif;
  font-weight: 600;
  font-size: 2.5em;
  color: #3a3335;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.training-container h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: #cda582;
}

.training-item {
  margin-bottom: 30px;
  background: #fefcfa;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.training-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.training-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background: #faf8f6;
  border-radius: 10px 10px 0 0;
  transition: background 0.3s ease;
}

.training-header:hover {
  background: #f5e9e2;
}

.training-header h3 {
  font-family: "Cardo", serif;
  font-weight: 600;
  font-size: 1.6em;
  color: #3a3335;
  margin: 0;
  line-height: 1.4;
}

.toggle-icon {
  font-size: 1.2em;
  color: #cda582;
  transition: transform 0.3s ease, color 0.3s ease;
}

.toggle-icon.active {
  transform: rotate(180deg);
  color: #b99874;
}

.training-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.3s ease;
  background: #fff;
  border-radius: 0 0 10px 10px;
  padding: 0 25px;
}

.training-content.active {
  /* Usunięto stałe max-height, aby dostosować wysokość dynamicznie */
  max-height: 9999999px; /* Duża wartość jako fallback, jeśli JavaScript nie działa */
  padding: 25px;
}

/* Stylizacja szczegółowego opisu */
.detailed-desc {
  font-family: "Cardo", serif;
  font-weight: 300;
  font-size: 1.1em;
  color: #5e5557;
  line-height: 1.8;
}

.detailed-desc p {
  margin-bottom: 20px;
}

.detailed-desc p:last-child {
  margin-bottom: 0;
}

/* Wyróżnienie kluczowych informacji (Czas trwania, Cena, Forma) */
.detailed-desc p strong {
  color: #3a3335;
  font-weight: 600;
}

/* Stylizacja programu szkolenia */
.training-program {
  margin: 25px 0;
}

.training-program h4 {
  font-family: "Cardo", serif;
  font-weight: 600;
  font-size: 1.3em;
  color: #cda582;
  margin-bottom: 20px;
  position: relative;
}

.training-program h4::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 2px;
  background: #cda582;
}

.training-program .program-section {
  margin-bottom: 25px;
}

.training-program .program-section:last-child {
  margin-bottom: 0;
}

.training-program h5 {
  font-family: "Cardo", serif;
  font-weight: 600;
  font-size: 1.2em;
  color: #3a3335;
  margin-bottom: 15px;
  position: relative;
}

.training-program h5::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 30px;
  height: 1px;
  background: #e6c9b8;
}

.training-program ul {
  list-style: none;
  padding-left: 20px;
}

.training-program ul li {
  font-family: "Cardo", serif;
  font-weight: 300;
  font-size: 1.1em;
  color: #5e5557;
  margin-bottom: 12px;
  position: relative;
  padding-left: 25px;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.training-program ul li::before {
  content: "\f058"; /* Ikona z Font Awesome (kółko z check) */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #cda582;
  position: absolute;
  left: 0;
  top: 3px;
  font-size: 1em;
  transition: color 0.3s ease;
}

.training-program ul li:hover {
  color: #3a3335;
}

.training-program ul li:hover::before {
  color: #b99874;
}

.sub-section h6 {
  font-size: 1.1rem;
}

/* Responsywność */
@media (max-width: 1024px) {
  .training-section {
    padding: 80px 5%;
  }

  .training-container {
    padding: 40px;
  }

  .training-container h2 {
    font-size: 2.2em;
    margin-bottom: 40px;
  }

  .training-header h3 {
    font-size: 1.5em;
  }

  .detailed-desc {
    font-size: 1em;
  }

  .training-program h4 {
    font-size: 1.2em;
  }

  .training-program h5 {
    font-size: 1.1em;
  }

  .training-program ul li {
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .training-section {
    padding: 60px 5%;
  }

  .training-container {
    padding: 30px;
  }

  .training-container h2 {
    font-size: 2em;
    margin-bottom: 35px;
  }

  .training-item {
    margin-bottom: 25px;
  }

  .training-header {
    padding: 15px 20px;
  }

  .training-header h3 {
    font-size: 1.4em;
  }

  .toggle-icon {
    font-size: 1.1em;
  }

  .training-content.active {
    padding: 20px;
  }

  .detailed-desc {
    font-size: 0.95em;
  }

  .detailed-desc p {
    margin-bottom: 15px;
  }

  .training-program h4 {
    font-size: 1.1em;
  }

  .training-program h5 {
    font-size: 1em;
  }

  .training-program ul li {
    font-size: 0.95em;
    margin-bottom: 10px;
  }

  .sub-section h6 {
    font-size: 0.9em;
  }
}

@media (max-width: 480px) {
  .training-section {
    padding: 40px 5%;
  }

  .training-container {
    padding: 20px;
  }

  .training-container h2 {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .training-item {
    margin-bottom: 20px;
  }

  .training-header {
    padding: 12px 15px;
  }

  .training-header h3 {
    font-size: 1.3em;
  }

  .toggle-icon {
    font-size: 1em;
  }

  .training-content.active {
    padding: 15px;
  }

  .detailed-desc {
    font-size: 0.9em;
  }

  .detailed-desc p {
    margin-bottom: 12px;
  }

  .training-program h4 {
    font-size: 1em;
  }

  .training-program h5 {
    font-size: 0.95em;
  }

  .training-program ul li {
    font-size: 0.9em;
    margin-bottom: 8px;
  }
}

.regulations-section {
  padding: 80px 5%;
  text-align: center;
  background: linear-gradient(
      135deg,
      rgba(245, 233, 226, 0.9),
      rgba(230, 201, 184, 0.9)
    ),
    url("https://www.transparenttextures.com/patterns/clean-gray-paper.png"); /* Gradient + subtelna tekstura */
  background-size: cover;
  background-attachment: fixed; /* Efekt paralaksy */
  background-position: center;
  position: relative;
}

.regulations-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, background 0.3s ease;
  position: relative;
  overflow: hidden;
}

.regulations-container:hover {
  transform: translateY(-5px);
  background: #fefcfa; /* Bardzo jasny beż na hoverze */
}

/* Subtelny efekt tła dla kontenera */
.regulations-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(205, 165, 130, 0.1), transparent);
  z-index: 0;
  opacity: 0.5;
}

.regulations-container > * {
  position: relative;
  z-index: 1;
}

.regulations-container h2 {
  font-size: 2.8em;
  color: #3a3335;
  margin-bottom: 20px;
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.regulations-container h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #cda582; /* Złoty beż */
  border-radius: 2px;
}

.regulations-container p {
  font-size: 1.2em;
  color: #5e5557;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

/* Dodanie listy w regulaminie */
.regulations-container ol {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
  padding-left: 20px;
}

.regulations-container ol li {
  font-size: 1.1em;
  color: #5e5557;
  margin-bottom: 15px;
  line-height: 1.8;
}

#form-message {
  padding: 10px;
  border-radius: 5px;
  font-size: 1em;
  text-align: center;
}

#form-message[style*="color: green"] {
  background: #e6f4e6;
  border: 1px solid #28a745;
}

#form-message[style*="color: red"] {
  background: #f8d7da;
  border: 1px solid #dc3545;
}

.consultation-prices-box {
  max-width: 600px;
  margin: 0 auto 50px auto;
  padding: 50px 30px;
  border-radius: 25px;
  background: linear-gradient(135deg, #fdfaf7, #f1e2d7);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.consultation-prices-box::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at center,
    rgba(205, 165, 130, 0.12),
    transparent 70%
  );
  z-index: 0;
}

.consultation-prices-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.consultation-prices-content {
  position: relative;
  z-index: 1;
}

.consultation-prices-content h3 {
  font-family: "Cardo", serif;
  font-size: 1.6em;
  font-weight: 600;
  color: #3a3335;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

.consultation-link {
  display: inline-block;
  padding: 12px 30px;
  font-size: 0.95em;
  font-weight: 500;
  color: #fff;
  background: linear-gradient(135deg, #cda582, #b48a6a);
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.consultation-link:hover {
  background: linear-gradient(135deg, #b48a6a, #cda582);
  transform: scale(1.05);
}

.consultations-types {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.consultation-box {
  background-color: #f8f8f8;
  border-radius: 10px;
  padding: 20px;
  width: 280px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.consultation-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.consultation-box a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.consultation-box h4 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.consultation-box p {
  font-size: 0.95rem;
  color: #333;
}

.icon {
  color: #e89ab1;
  margin-right: 8px;
  font-size: 2.3em;
  display: block;
  margin-bottom: 10px;
  text-align: center;
}
