/* Base styles and reset */
:root {
  --primary-color: #8A2BE2; /* Fioletowy */
  --primary-light: #9D4EDD; /* Jaśniejszy fiolet */
  --primary-dark: #6A0DAD; /* Ciemniejszy fiolet */
  --secondary-color: #1A1A2E; /* Różowy */
  --secondary-light: #1A1A2E; /* Jaśniejszy różowy */
  --accent-color: #FFEB3B; /* Żółty */
  --accent-light: #F9F9FB; /* Jaśniejszy żółty */
  --cta-color: #FF6B00; /* Pomarańczowy CTA */
  --cta-hover: #FF8C38; /* Jaśniejszy pomarańczowy hover */
  --dark-color: #333333;
  --light-color: #ffffff;
  --background-color: #F9F9FB; /* Jasny szary pastel */
  --gray-color: #6c757d;
  --success-color: #4caf50;
  --warning-color: #ff9800;
  --danger-color: #f44336;
  --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  --gradient-secondary: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  --gradient-cta: linear-gradient(135deg, var(--cta-color), #FF9800);
  --shadow-sm: 0 2px 8px rgba(138, 43, 226, 0.1);
  --shadow-md: 0 4px 12px rgba(138, 43, 226, 0.15);
  --shadow-lg: 0 8px 24px rgba(138, 43, 226, 0.2);
  --border-radius-sm: 8px;
  --border-radius-md: 12px;
  --border-radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--dark-color);
  background-color: var(--light-color);
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 100px 0;
  position: relative;
}

section:nth-of-type(even) {
  background-color: var(--background-color);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary-color);
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* Typography */
.section-title {
  font-size: 2.75rem;
  margin-bottom: 60px;
  text-align: center;
  position: relative;
  color: var(--primary-color);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--border-radius-md);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  z-index: -1;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.8, 0, 0.2, 1);
}

.btn:hover::before {
  transform: translateX(0);
}

.btn--primary {
  background: var(--cta-color); /* Pomarańczowy CTA */
  color: white;
  box-shadow: var(--shadow-md);
}

.btn--primary:hover {
  background: var(--cta-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn--secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn--secondary:hover {
  background: rgba(138, 43, 226, 0.1);
}

.btn--large {
  padding: 16px 40px;
  font-size: 1.1rem;
}

.btn--full {
  width: 100%;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  padding: 15px 0;
  transition: var(--transition);
}

.header.scrolled {
  padding: 10px 0;
  box-shadow: var(--shadow-md);
}

.header__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo h1 {
  font-size: 1.8rem;
  color: var(--primary-color);
}

.logo span {
  color: var(--cta-color);
  font-weight: 800;
}

.nav__list {
  display: flex;
  align-items: center;
}

.nav__item {
  margin-left: 30px;
}

.nav__link {
  color: var(--dark-color);
  font-weight: 500;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__link--cta {
  background: var(--cta-color);
  color: white;
  padding: 10px 20px;
  border-radius: var(--border-radius-md);
}

.nav__link--cta:hover {
  background: var(--cta-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.nav__link--cta::after {
  display: none;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
}

.hamburger {
  display: block;
  position: relative;
  width: 30px;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  bottom: -8px;
}

/* Hero Section */
.hero {
  padding: 200px 0 120px;
  background: linear-gradient(135deg, rgba(138, 43, 226, 0.08), rgba(255, 105, 180, 0.08));
  position: relative;
  overflow: hidden;
}

.hero__shape {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: var(--gradient-primary);
  border-radius: 50%;
  opacity: 0.1;
  z-index: -1;
}

.hero__content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero__title {
  font-size: 4rem;
  margin-bottom: 24px;
  color: var(--primary-color);
  position: relative;
  display: inline-block;
}

.hero__title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.hero__subtitle {
  font-size: 1.5rem;
  margin-bottom: 40px;
  color: var(--secondary-color);
}

.hero__cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
}

.hero__stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 80px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  min-width: 180px;
}

.stat__number {
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient-cta);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}

.stat__label {
  font-size: 1rem;
  color: var(--dark-color);
  font-weight: 500;
}

/* Services Section */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: white;
  border-radius: var(--border-radius-lg);
  padding: 40px 30px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid rgba(138, 43, 226, 0.1);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  z-index: -1;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.service-card__icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  box-shadow: 0 10px 20px rgba(138, 43, 226, 0.2);
}

.service-card__icon i {
  font-size: 30px;
  color: white;
}

.service-card__title {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.service-card__list {
  padding-left: 20px;
}

.service-card__list li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 8px;
}

.service-card__list li::before {
  content: '✓';
  color: var(--secondary-color);
  position: absolute;
  left: -20px;
  font-weight: bold;
}

/* Features Section */
.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.feature {
  text-align: center;
  background: white;
  padding: 40px 24px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.feature__icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transform: rotate(45deg);
  box-shadow: 0 10px 20px rgba(138, 43, 226, 0.15);
}

.feature__icon i {
  font-size: 28px;
  color: white;
  transform: rotate(-45deg);
}

.feature__title {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.feature__text {
  color: var(--gray-color);
}

/* Process Section */
.process__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  counter-reset: process-counter;
}

.process__step {
  text-align: center;
  padding: 40px 24px;
  background: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  position: relative;
  transition: var(--transition);
  border: 1px solid rgba(138, 43, 226, 0.1);
  counter-increment: process-counter;
}

.process__step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(138, 43, 226, 0.03), rgba(255, 105, 180, 0.03));
  border-radius: var(--border-radius-lg);
  z-index: -1;
}

.process__step:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.process__step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: white;
  font-weight: 700;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 8px 16px rgba(138, 43, 226, 0.2);
}

.process__step-title {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 1.4rem;
  color: var(--primary-color);
}

.process__step-text {
  color: var(--gray-color);
}

/* Testimonials Section */
.testimonials__slider {
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial {
  padding: 20px;
}

.testimonial__content {
  background-color: white;
  padding: 40px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  position: relative;
  border-left: 4px solid var(--secondary-color);
}

.testimonial__content::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 6rem;
  color: rgba(138, 43, 226, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial__text {
  font-size: 1.1rem;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.testimonial__author {
  display: flex;
  align-items: center;
}

.testimonial__author-info h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--primary-color);
}

.testimonial__author-position {
  color: var(--secondary-color);
  font-size: 0.9rem;
}

.testimonials__nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.testimonials__nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: white;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.testimonials__nav-btn:hover {
  background: var(--primary-color);
  color: white;
}

/* Contact Section */
.contact__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
  background: linear-gradient(135deg, rgba(138, 43, 226, 0.05), rgba(255, 107, 0, 0.05));
  border-radius: var(--border-radius-lg);
  padding: 60px 30px;
  position: relative;
  overflow: hidden;
}

.contact__wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%238A2BE2' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.contact__content {
  text-align: center;
  max-width: 800px;
  position: relative;
  z-index: 1;
}

.contact__content .section-title {
  font-size: 2.5rem;
  margin-bottom: 30px;
  background: linear-gradient(135deg, var(--primary-color), var(--cta-color));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  animation: fadeInUp 0.8s ease-out;
}

.contact__cta {
  margin-top: 40px;
  animation: fadeInUp 1s ease-out;
}

.contact__cta .btn {
  padding: 18px 40px;
  font-size: 1.2rem;
  background: var(--cta-color);
  box-shadow: 0 10px 20px rgba(255, 107, 0, 0.3);
  transform: translateY(0);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.contact__cta .btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 107, 0, 0.4);
  background: var(--cta-hover);
}

.service-details {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
  position: relative;
}

.service-details__item {
  margin-bottom: 100px;
  background: white;
  border-radius: var(--border-radius-lg);
  padding: 60px 40px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-details__item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.service-details__item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--primary-color), var(--cta-color));
}

.service-details__item .section-title {
  font-size: 2.2rem;
  margin-bottom: 40px;
  text-align: center;
  background: linear-gradient(135deg, var(--primary-color), var(--cta-color));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}

.service-details__content {
  max-width: 800px;
  margin: 0 auto;
}

.service-details__content h3 {
  font-size: 1.8rem;
  margin: 40px 0 20px;
  color: var(--primary-color);
  position: relative;
  padding-left: 20px;
}

.service-details__content h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 30px;
  background: var(--cta-color);
  border-radius: 4px;
}

.service-details__content p {
  margin-bottom: 25px;
  line-height: 1.8;
  color: var(--dark-color);
  font-size: 1.1rem;
}

.service-details__content ul,
.service-details__content ol {
  margin-bottom: 30px;
  padding-left: 25px;
}

.service-details__content li {
  margin-bottom: 15px;
  line-height: 1.8;
  color: var(--dark-color);
  position: relative;
  padding-left: 10px;
}

.service-details__content ul li::before {
  content: '→';
  position: absolute;
  left: -20px;
  color: var(--cta-color);
  font-weight: bold;
}

.service-details__cta {
  margin-top: 50px;
  text-align: center;
}

.service-details__cta .btn {
  padding: 16px 36px;
  font-size: 1.1rem;
  background: var(--cta-color);
  box-shadow: 0 10px 20px rgba(255, 107, 0, 0.3);
  transform: translateY(0);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.service-details__cta .btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 107, 0, 0.4);
  background: var(--cta-hover);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #e0e0e0;
  border-radius: var(--border-radius-md);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
  background-color: #f9f9f9;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(138, 43, 226, 0.2);
  background-color: white;
}

.form-group.checkbox {
  display: flex;
  align-items: flex-start;
}

.form-group.checkbox input {
  width: auto;
  margin-right: 10px;
  margin-top: 5px;
}

.form-group.checkbox label {
  font-size: 0.9rem;
  font-weight: 400;
}

/* FAQ Section */
.faq__list {
  max-width: 900px;
  margin: 0 auto;
}

.faq__item {
  background-color: white;
  border-radius: var(--border-radius-md);
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid rgba(138, 43, 226, 0.1);
}

.faq__question {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  transition: var(--transition);
}

.faq__question:hover {
  background-color: rgba(138, 43, 226, 0.03);
}

.faq__question h3 {
  font-size: 1.1rem;
  margin: 0;
  color: var(--primary-color);
}

.faq__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--primary-color);
}

.faq__answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq__answer p {
  padding-bottom: 20px;
}

.faq__answer ol {
  padding-left: 20px;
  padding-bottom: 20px;
}

.faq__answer li {
  margin-bottom: 8px;
}

.faq__item.active .faq__answer {
  max-height: 500px;
}

/* CTA Section */
.cta {
  padding: 100px 0;
  background:#ffffff;
  color: var(--dark-color);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%238A2BE2' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.2;
}

.cta__content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta__title {
  font-size: 2.75rem;
  margin-bottom: 24px;
  color: var(--primary-dark);
}

.cta__text {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: var(--dark-color);
}

.cta .btn--primary {
  background: var(--cta-color);
  box-shadow: 0 10px 20px rgba(255, 107, 0, 0.3);
}

.cta .btn--primary:hover {
  background: var(--cta-hover);
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(255, 107, 0, 0.4);
}

/* Footer */
.footer {
  background-color: #1A1A2E;
  color: white;
  padding: 80px 0 30px;
}

.footer__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.footer__column h3 {
  font-size: 1.2rem;
  margin-bottom: 25px;
  position: relative;
  color: white;
}

.footer__column h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--secondary-color);
}

.footer__list {
  list-style: none;
}

.footer__list li {
  margin-bottom: 12px;
}

.footer__list a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer__list a:hover {
  color: white;
  padding-left: 5px;
}

.footer__bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Media Queries dla responsywności */
@media (max-width: 992px) {
  section {
    padding: 100px 0;
  }
  
  .hero__title {
    font-size: 3.2rem;
  }
  
  .contact__wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  section {
    padding: 80px 0;
  }
  
  .nav__list {
    display: none;
  }
  
  .nav__list.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: white;
    padding: 20px;
    box-shadow: var(--shadow-md);
  }
  
  .nav__item {
    margin: 10px 0;
  }
  
  .nav-toggle {
    display: block;
  }
  
  .hero__title {
    font-size: 2.5rem;
  }
  
  .hero__subtitle {
    font-size: 1.2rem;
  }
  
  .hero__cta {
    flex-direction: column;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .process__steps {
    grid-template-columns: 1fr;
  }
  
  .contact__content .section-title {
    font-size: 2rem;
  }
  
  .service-details__item {
    padding: 40px 20px;
  }
  
  .service-details__item .section-title {
    font-size: 1.8rem;
  }
  
  .service-details__content h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .hero__title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .cta__title {
    font-size: 2rem;
  }
  
  .testimonial__content {
    padding: 30px 20px;
  }
  
  .footer__content {
    grid-template-columns: 1fr;
  }
  
  .footer__column {
    text-align: center;
  }
  
  .footer__column h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Dodatek: style dla błędów formularza */
.error {
  border-color: var(--danger-color) !important;
  box-shadow: 0 0 0 3px rgba(244, 67, 54, 0.2) !important;
}

.error-message {
  color: var(--danger-color);
  font-size: 0.9rem;
  margin-top: 5px;
}

/* Dodatek: animacje przy przewijaniu */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Specjalne efekty wizualne */
.hero__title span,
.section-title span {
  position: relative;
  display: inline-block;
}

.hero__title span::before,
.section-title span::before {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 10px;
  background-color: var(--accent-light);
  z-index: -1;
}

.service-details {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.service-details__item {
    margin-bottom: 60px;
}

.service-details__item:last-child {
    margin-bottom: 0;
}

.service-details__content {
    max-width: 800px;
    margin: 0 auto;
}

.service-details__content h3 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: #333;
}

.service-details__content p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #666;
}

.service-details__content ul,
.service-details__content ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.service-details__content li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #666;
}

.service-details__cta {
    margin-top: 40px;
    text-align: center;
}

.contact__cta {
    text-align: center;
    margin-top: 30px;
}

.footer__section {
    margin-bottom: 30px;
}

.footer__title {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
}

.footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__list li {
    margin-bottom: 10px;
}

.footer__list a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__list a:hover {
    color: #ff6b6b;
}

.footer__copyright {
    text-align: center;
    color: #fff;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}