<style>

/* Import czcionki Roboto Condensed z Google Fonts - wagi 300, 400, 500, 600, 700 */
    @import url('https://www.youtube.com/channel/UC...9');

    /* Style dla nagłówków */
    h1, h2, h3 {
      font-family: 'Roboto Condensed', sans-serif;
      font-weight: 500; /* Waga 500 (Medium) - dobra równowaga między czytelnością a wyrazistością */
      /* Jeśli uznasz, że 500 jest nadal za lekkie, spróbuj 600 */
    }

    /* Style dla przycisku YouTube */
    .youtube-button-custom {
      display: inline-block;
      padding: 14px 30px;
      background-color: #4c6b5b;
      color: white;
      text-decoration: none;
      border-radius: 8px;
      font-weight: bold;
      font-size: 1.15rem;
      transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
      border: 2px solid #4c6b5b;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    }

    .youtube-button-custom:hover {
      background-color: #3a5347;
      transform: translateY(-3px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
      border-color: #3a5347;
    }

    .youtube-button-custom i {
      margin-right: 10px;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

/* Style dla sekcji "Język w podróży" */
#jezyk-w-podrozy {
  padding: 40px 20px;
  background-color: #f9f9f9; /* Jasne tło sekcji */
  text-align: center;
}

#jezyk-w-podrozy h2 {
  color: #333; /* Ciemny kolor tekstu dla nagłówka */
  margin-bottom: 40px;
  font-size: 2em; /* Rozmiar nagłówka */
}

#jezyk-w-podrozy p {
  color: #555; /* Szary kolor tekstu */
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

/* Style dla siatki korzyści */
.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px; /* Odstępy między kartami */
  max-width: 900px;
  margin: 0 auto 40px;
}

/* Style dla pojedynczej karty korzyści */
.benefit-card {
  flex: 1 1 280px; /* Elastyczny rozmiar karty */
  background-color: #fff; /* Białe tło karty */
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Delikatny cień */
}

.benefit-card h3 {
  color: #2E8B57; /* Niebieski kolor dla nagłówka karty */
  margin-bottom: 10px;
  font-size: 1.3em;
}

.benefit-card p {
  color: #666; /* Ciemniejszy szary dla tekstu karty */
  font-size: 0.95em;
}

/* Style dla przycisku CTA */
.cta-button {
  display: inline-block;
  background-color: #007bff; /* Kolor tła przycisku */
  color: white; /* Kolor tekstu przycisku */
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none; /* Usunięcie podkreślenia */
  font-size: 1.1em;
  transition: background-color 0.3s ease; /* Płynne przejście koloru */
}

.cta-button:hover {
  background-color: #0056b3; /* Ciemniejszy kolor przy najechaniu */
}

/* Media queries dla responsywności na mniejszych ekranach (jeśli potrzebne) */
@media (max-width: 768px) {
  .benefit-card {
    flex: 1 1 100%; /* Karty na pełną szerokość na małych ekranach */
  }
}    
    body {
      font-family: 'Inter', sans-serif;
      line-height: 1.6;
      color: #1e293b;
      background-color: #f8fafc;
    }
    
    /* Header Hero Section */
    .hero {
      background: linear-gradient(135deg, #22c55e 0%, #16a34a 50%, #15803d 100%);
      color: white;
      padding: 80px 20px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    
    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="60" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="70" cy="80" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
      animation: float 20s infinite linear;
    }
    
    @keyframes float {
      0% { transform: translateY(0px) rotate(0deg); }
      100% { transform: translateY(-100px) rotate(360deg); }
    }
    
    .hero-content {
      max-width: 800px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }
    
    .logo {
      width: 120px;
      height: 120px;
      background: rgba(255,255,255,0.2);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 30px;
      backdrop-filter: blur(10px);
      box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    }
    
    .logo i {
      font-size: 24px;
      color: white;
    }
    
    .hero-motto {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem; /* Zwiększony rozmiar czcionki dla większych ekranów */
  font-weight: 800; /* Pogrubiona czcionka */
  margin-bottom: 40px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
  line-height: 1.4;
  font-style: italic;
}
    
    .hero-contact {
      background: rgba(255,255,255,0.15);
      backdrop-filter: blur(10px);
      border-radius: 12px;
      padding: 20px 35px;
      margin-top: 30px;
      display: inline-block;
      border: 1px solid rgba(255,255,255,0.2);
      box-shadow: 0 8px 25px rgba(0,0,0,0.2);
      transition: transform 0.3s ease;
    }
    
    .hero-contact:hover {
      transform: scale(1.05);
    }
    
    .hero-contact i {
  margin-right: 15px;
  font-size: 1.8rem;
  color: white !important;
}
    
    .hero-contact span {
  font-size: 1.6rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
  color: white !important;
}
    
    .hero-flags {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 2;
    }
    
    .flag-left {
      left: 40px;
    }
    
    .flag-right {
      right: 40px;
    }
    
    .hero-flag {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      background: rgba(255,255,255,0.95);
      display: flex;
      align-items: center;
      justify-content: center;
      backdrop-filter: blur(20px);
      box-shadow: 0 10px 40px rgba(0,0,0,0.3);
      transition: all 0.3s ease;
      animation: pulse 3s infinite;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }
    
    .flag-gb {
      background-image: url('images/flaga-anglia-kurs-korepetycje-angielski-srem-dolsk-ksiaz.webp');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }
    
    .flag-de {
      background-image: url('images/flaga-niemcy-kurs-korepetycje-angielski-srem-dolsk-ksiaz.webp');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }
    
    @keyframes pulse {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.05); }
    }
    
    .hero-flag:hover {
      transform: scale(1.1);
      box-shadow: 0 15px 50px rgba(0,0,0,0.4);
    }
    
    .language-flags {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }
    
    .flag {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(255,255,255,0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      backdrop-filter: blur(10px);
      transition: transform 0.3s ease;
    }
    
    .flag:hover {
      transform: scale(1.1);
    }
    
    /* Navigation */
    nav {
      background: rgba(255,255,255,0.95);
      backdrop-filter: blur(20px);
      position: sticky;
      top: 0;
      z-index: 1000;
      padding: 15px 0;
      box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    }
    
    .nav-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: center;
      gap: 40px;
      padding: 0 20px;
    }
    
    nav a {
      text-decoration: none;
      color: #1e293b;
      font-weight: 500;
      transition: all 0.3s ease;
      position: relative;
      padding: 10px 0;
    }
    
    nav a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: #22c55e;
      transition: width 0.3s ease;
    }
    
    nav a:hover::after {
      width: 100%;
    }
    
    nav a:hover {
      color: #22c55e;
    }
    
    /* Main Content */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    
    .section {
      padding: 80px 0;
    }
    
    .section:nth-child(even) {
      background: white;
    }
    
    .section h1, .section h2 {
      font-size: 2.5rem;
      font-weight: 700;
      text-align: center;
      margin-bottom: 50px;
      color: #1e293b;
    }
    
    .section h3 {
      font-size: 1.5rem;
      font-weight: 600;
      margin-bottom: 20px;
      color: #1e293b;
    }
    
    /* Individual Classes Highlight */
    .individual-highlight {
      background: linear-gradient(135deg, #fbbf24, #f59e0b);
      border: 3px solid #d97706;
      border-radius: 16px;
      padding: 30px;
      text-align: center;
      margin: 50px 0;
      box-shadow: 0 8px 25px rgba(251, 191, 36, 0.3);
      animation: glow 2s ease-in-out infinite alternate;
    }
    
    @keyframes glow {
      from { box-shadow: 0 8px 25px rgba(251, 191, 36, 0.3); }
      to { box-shadow: 0 12px 35px rgba(251, 191, 36, 0.5); }
    }
    
    .individual-highlight h3 {
      color: #92400e;
      font-size: 1.8rem;
      margin-bottom: 15px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    
    .individual-highlight p {
      color: #92400e;
      font-size: 1.2rem;
      font-weight: 600;
      margin: 0;
    }
    
    /* Cards */
    .cards-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 50px;
    }
    
    .card {
      background: white;
      border-radius: 16px;
      padding: 30px;
      box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
      transition: all 0.3s ease;
      border: 1px solid rgba(34,197,94,0.1);
    }
    
    .card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
    }
    
     .card-icon {
      width: 70px;
      height: 70px;
      background: linear-gradient(135deg, #fbbf24, #f59e0b);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }
    
    .card-icon i {
      font-size: 28px;
      color: white;
    }
    
#english-course-heading {
    margin-top: 0px; /* Zmniejsz tę wartość, aby zmniejszyć górny odstęp */
    margin-bottom: 30px; /* Zwiększ tę wartość, aby uzyskać większy odstęp. Możesz użyć 80px, 100px lub innej wartości. */
}

#german-course-heading {
    margin-top: 0px; /* Zmniejsz tę wartość, aby zmniejszyć górny odstęp */
    margin-bottom: 30px; /* Zwiększ tę wartość, aby uzyskać większy odstęp. Możesz użyć 80px, 100px lub innej wartości. */
}


    /* Promo Box */
    .promo {
      background: linear-gradient(135deg, #fef3c7, #fbbf24);
      border-radius: 16px;
      padding: 30px;
      text-align: center;
      margin: 40px 0;
      border: 1px solid #f59e0b;
    }
    
    .promo-content {
      font-size: 1.2rem;
      font-weight: 600;
      color: #92400e;
    }
    
    .promo-icon {
      font-size: 2rem;
      margin-bottom: 10px;
      color: #f59e0b;
    }
    
    /* Language Benefits */
    .language-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 30px;
      margin-top: 30px;
      /* Dodane style, aby pasowały do kontenera */
      padding: 0 20px; /* Odpowiada paddingowi .container */
      box-sizing: border-box; /* Zapewnia, że padding jest wliczony w szerokość */
    }
    
    .language-card {
      background: white;
      border-radius: 16px;
      padding: 30px;
      box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
      position: relative;
      overflow: hidden;
    }
    
    .language-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, #22c55e, #16a34a);
    }
    
    .language-card h3 {
      color: #1e293b;
      text-transform: uppercase;
      font-weight: 700;
      letter-spacing: 0.5px;
      margin-bottom: 20px;
      display: flex;
      align-items: center;
    }
    
   .language-card i {
      color: #f59e0b;
      font-size: 1.5rem;
      margin-right: 10px;
    }
    
    /* Features List */
    .features-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }
    
    .feature-item {
      display: flex;
      align-items: center;
      gap: 15px;
      padding: 20px;
      background: white;
      border-radius: 12px;
      box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    }
    
      .feature-item i {
      color: #f59e0b;
      font-size: 1.4rem;
    }
    
    /* Testimonials */
    .testimonial {
      background: white;
      border-radius: 16px;
      padding: 30px;
      margin: 20px 0;
      box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
      position: relative;
    }
    
    .testimonial::before {
      content: '"';
      position: absolute;
      top: -10px;
      left: 20px;
      font-size: 4rem;
      color: #22c55e;
      opacity: 0.3;
    }
    
    .testimonial-content {
      font-style: italic;
      margin-bottom: 15px;
      color: #64748b;
    }
    
    .testimonial-author {
      font-weight: 600;
      color: #1e293b;
    }
    
    /* Contact Info Box */
    .contact-info {
      background: linear-gradient(135deg, #22c55e, #16a34a);
      color: white;
      border-radius: 16px;
      padding: 25px;
      text-align: center;
      margin: 30px 0;
      box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
    }
    
    .contact-info h4 {
      font-size: 1.3rem;
      margin-bottom: 10px;
    }
    
    .contact-info p {
      font-size: 1.1rem;
      margin: 0;
    }
    
    .contact-info i {
      margin-right: 10px;
      font-size: 1.2rem;
    }
    
    /* Form */
    .form-container {
      max-width: 600px;
      margin: 0 auto;
      background: white;
      border-radius: 16px;
      padding: 40px;
      box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    }
    
    .form-group {
      margin-bottom: 25px;
    }
    
    .form-group label {
      display: block;
      margin-bottom: 8px;
      font-weight: 500;
      color: #374151;
    }
    
    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 12px 16px;
      border: 2px solid #e5e7eb;
      border-radius: 8px;
      font-size: 16px;
      transition: border-color 0.3s ease;
    }
    
    .form-group input:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: #22c55e;
    }
    
    .btn {
      background: linear-gradient(135deg, #22c55e, #16a34a);
      color: white;
      border: none;
      padding: 16px 32px;
      border-radius: 8px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      width: 100%;
    }
    
    .btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 15px rgba(34,197,94,0.3);
    }
    
    /* Video Section */
    .video-container {
      display: flex;
      justify-content: center;
      margin-top: 40px;
    }
    
    .video-placeholder {
      width: 560px;
      height: 315px;
      background: linear-gradient(135deg, #64748b, #475569);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.2rem;
    }
    
    /* Expanded Introduction */
    .intro-expanded {
      max-width: 900px;
      margin: 0 auto 40px;
      font-size: 1.1rem;
      line-height: 1.8;
      color: #475569;
      background: white;
      padding: 30px;
      border-radius: 16px;
      box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    }
    
.intro-paragraph {
    margin-bottom: 20px; /* Zmniejsz tę wartość, aby zmniejszyć odstęp pod akapitem. Domyślnie może być np. 1em (~16px) lub więcej. Możesz ustawić nawet na 0px, jeśli chcesz, aby nagłówek był bardzo blisko. */
}

    .intro-expanded p {
      margin-bottom: 20px;
    }
    
    .intro-expanded p:last-child {
      margin-bottom: 0;
    }
    
    /* Responsive Design */
    @media (max-width: 768px) {
      .hero-motto {
        font-size: 1.8rem;
      }
      
      .hero-flags {
        display: none;
      }
      
      .nav-container {
        flex-wrap: wrap;
        gap: 20px;
      }
      
      .section {
        padding: 60px 0;
      }
      
      .section h2 {
        font-size: 2rem;
      }
      
      .cards-grid {
        grid-template-columns: 1fr;
      }
      
      .language-grid {
        grid-template-columns: 1fr;
      }
      
      .video-placeholder {
        width: 100%;
        height: 200px;
      }
      
      .individual-highlight h3 {
        font-size: 1.5rem;
      }
      
      .individual-highlight p {
        font-size: 1.1rem;
      }
      
      .hero-contact span {
        font-size: 1.4rem;
      }
    }
    
    @media (max-width: 1024px) {
      .hero-flag {
        width: 80px;
        height: 80px;
      }
      
      .flag-left {
        left: 20px;
      }
      
      .flag-right {
        right: 20px;
      }
    }
    
    /* Smooth Scrolling */
    html {
      scroll-behavior: smooth;
    }

.hero-contact {
  text-decoration: none !important;
}

.hero-contact:hover {
  text-decoration: none !important;
}

.hero-contact:focus {
  text-decoration: none !important;
}

.hero-contact:active {
  text-decoration: none !important;
}

.contact-info-clickable {
  text-decoration: none !important;
  color: white;
  display: block;
  transition: all 0.3s ease;
  cursor: pointer;
}

.contact-info-clickable:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 35px rgba(34, 197, 94, 0.5);
  text-decoration: none !important;
  color: white;
}

.contact-info-clickable:visited {
  color: white;
}

.contact-info-clickable h4,
.contact-info-clickable p,
.contact-info-clickable i {
  color: white !important;
}

.accordion {
  margin-top: 30px;
  border-top: 2px solid #22c55e;
}

.accordion-item {
  border-bottom: 1px solid #e5e7eb;
}

.accordion-header {
  background: #f0fdf4;
  color: #1e293b;
  padding: 20px;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: left;
  width: 100%;
  border: none;
  cursor: pointer;
  outline: none;
  transition: background 0.3s ease;
}

.accordion-header:hover {
  background: #d1fae5;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: white;
  padding: 0 20px;
}

.accordion-content ul {
  list-style: none;
  padding: 0px 0;
  margin: 0;
}

.accordion-content li {
    padding: 0px 0; /* Pozostaw to */
    margin-bottom: -12px; /* Ustaw na 0, aby usunąć wszelkie domyślne marginesy */
    /* Jeśli nadal jest zbyt duży odstęp, możesz spróbować wartości ujemnych, np. margin-bottom: -5px; */
}
.accordion-content a {
    /* Zachowaj istniejące style */
    text-decoration: none;
    color: #22c55e;
    font-weight: 500;
    transition: color 0.3s ease;

    /* Dodane/Zmodyfikowane style dla zmniejszenia odstępu */
    display: block; /* Link będzie zachowywał się jak blok, co pozwala na kontrolę margin-top/bottom */
    line-height: 1; /* Ustawia wysokość linii na równą wysokości czcionki */
    padding-top: 2px; /* Drobne dopasowanie paddingu, jeśli tekst jest zbyt blisko siebie */
    padding-bottom: 2px; /* Drobne dopasowanie paddingu, jeśli tekst jest zbyt blisko siebie */
}

.accordion-content a:hover {
  color: #16a34a;
}

.accordion-item.active .accordion-content {
  max-height: 500px; /* dostosuj do ilości treści */
  padding: 15px 20px;
}
  
    /* Style dla przycisku YouTube */
    .youtube-button-custom {
      display: inline-block;
      padding: 14px 30px; /* Nieco większy padding */
      background-color: #4c6b5b; /* Nowy zielonkawy kolor */
      color: white; /* Biały tekst */
      text-decoration: none;
      border-radius: 8px; /* Lekko większe zaokrąglenie */
      font-weight: bold;
      font-size: 1.15rem; /* Nieco większy rozmiar czcionki */
      transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease; /* Łagodniejsze przejścia dla hover */
      border: 2px solid #4c6b5b; /* Ramka w kolorze tła */
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); /* Subtelny cień */
    }

    .youtube-button-custom:hover {
      background-color: #3a5347; /* Ciemniejszy odcień zieleni po najechaniu */
      transform: translateY(-3px); /* Delikatne uniesienie */
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25); /* Bardziej widoczny cień */
      border-color: #3a5347; /* Ramka dopasowuje się do tła */
    }

    /* Jeśli używasz ikony Font Awesome, dla lepszego wyglądu */
    .youtube-button-custom i {
      margin-right: 10px; /* Odstęp między ikoną a tekstem */
    }

img[src="images/flaga-anglia-kurs-korepetycje-angielski-srem-dolsk-ksiaz.webp"] {
    float: left;
    margin: 0 15px 15px 0; /* Marginesy: góra, prawo, dół, lewo */
    height: 50px; /* Zachowaj obecną wysokość */
    width: auto; /* Zachowaj proporcje */
    vertical-align: top; /* Zapobiega przesunięciu linii tekstu */
}

.section .container p {
    margin-top: 0; /* Usuń nadmiarowy margines górny */
    line-height: 1.6; /* Ustaw rozsądną wysokość linii dla lepszego opływania */
    overflow: visible; /* Upewnij się, że akapit nie ogranicza opływania */
    clear: none; /* Zapobiega blokowaniu float */
}

/* Upewnij się, że kontener nie blokuje opływania */
.section .container {
    overflow: visible; /* Zapobiega obcinaniu opływania */
    width: 100%; /* Upewnij się, że kontener ma odpowiednią szerokość */
}


/* Style dla flagi Wielkiej Brytanii (zachowane z poprzedniego rozwiązania) */
img[src="images/flaga-anglia-kurs-korepetycje-angielski-srem-dolsk-ksiaz.webp"] {
    float: left;
    margin: 0 15px 15px 0;
    height: 125px;
    width: auto;
    vertical-align: center;
}

/* Style dla flagi Niemiec */
img[src="images/flaga-niemcy-kurs-korepetycje-angielski-srem-dolsk-ksiaz.webp"] {
    float: left;
    margin: 0 15px 15px 0;
    height: 125px;
    width: auto;
    vertical-align: center;
}

/* Style dla akapitów w sekcjach */
.section .container p {
    margin-top: 0;
    line-height: 1.6;
    overflow: visible;
    clear: none;
}

/* Style dla kontenera */
.section .container {
    overflow: visible;
    width: 100%;
}

.faq-icon {
    float: left; /* Zachowujemy float dla opływania, ale możemy zmienić na flex */
    margin: 0 10px 0 0;
    height: 150px; /* Dostosuj wysokość według potrzeb */
    width: auto;
    vertical-align: middle;
}

.section .container h2 {
    margin: 0 auto; /* Wyśrodkowanie nagłówka */
    padding: 0;
    line-height: 1.2;
    overflow: visible;
    display: flex; /* Zachowujemy flex */
    align-items: center; /* Wyrównanie pionowe */
    justify-content: center; /* Wyśrodkowanie poziome */
    text-align: center; /* Wyśrodkowanie tekstu w razie potrzeby */
    width: fit-content; /* Ogranicza szerokość do zawartości */
    margin-left: auto;
    margin-right: auto; /* Alternatywna metoda wyśrodkowania */
}

.section .container {
    overflow: visible;
    width: 100%;
    text-align: center; /* Wyśrodkowanie kontenera, jeśli potrzebne */
}


.contact-header-wrapper {
    display: flex; /* Ustawia kontener jako flexbox, co pozwala na umieszczenie elementów w jednej linii */
    align-items: center; /* Wyrównuje elementy w pionie do środka */
    justify-content: center; /* Wyśrodkowuje elementy w poziomie */
    gap: 15px; /* Dodaje odstęp między grafiką a nagłówkiem */
    margin-bottom: 30px; /* Dodaje odstęp poniżej całego bloku nagłówka */
    width: fit-content; /* Szerokość kontenera dopasowuje się do zawartości */
    margin-left: auto; /* Wyśrodkowuje kontener poziomo */
    margin-right: auto; /* Wyśrodkowuje kontener poziomo */
}

.contact-header-wrapper h2 {
    font-size: 2.5rem; /* Rozmiar czcionki taki jak dla innych nagłówków h2 */
    font-weight: 700; /* Grubość czcionki taka jak dla innych nagłówków h2 */
    color: #1e293b; /* Kolor tekstu taki jak dla innych nagłówków h2 */
    margin-bottom: 0; /* Zresetuj margines dolny h2, ponieważ odstęp między grafiką a tekstem jest kontrolowany przez 'gap' w .contact-header-wrapper */
    /* .contact-header-wrapper już zapewnia centrowanie h2 razem z ikoną,
       więc nie potrzebujesz tu text-align: center, ani margin: auto; */
}

.contact-icon {
    width: 150px; /* Ustawia szerokość grafiki na 40px (możesz dostosować) */
    height: auto; /* Zachowuje proporcje grafiki */
    /* Jeśli wcześniej grafika miała styl 'float: left;', usuń go lub upewnij się, że ten nowy styl go nadpisuje. */
}

/* Możesz rozważyć usunięcie lub modyfikację istniejących stylów dla .faq-icon,
   jeśli ta grafika była jedynym elementem, który ich używał, aby uniknąć konfliktów. */
/*
.faq-icon {
    / * Usuń lub zmodyfikuj dotychczasowe style .faq-icon, które są sprzeczne z nowymi,
       np. float, height, margin */
}

#main-cta-button {
    display: block !important; /* Ustawia przycisk jako element blokowy (nadpisuje inline-block) */
    width: fit-content !important; /* Dopasowuje szerokość przycisku do jego zawartości */
    margin: 0 auto !important; /* Wyśrodkowuje przycisk poziomo */
}

.section-title {
  text-align: center;
}

.cta-button {
  display: inline-block;
  margin-top: 20px;
}

h3 {
  margin-top: 30px;  /* Odstęp NAD nagłówkiem */
  margin-bottom: 30px; /* możesz zwiększyć nawet do 40px */
}

  </style>