        /* Reset i zmienne */
        :root {
            --primary-color: #1A3A5F;
            --accent-color: #D4AF37;
            --dark-gray: #333333;
            --light-gray: #F5F5F5;
            --white: #FFFFFF;
            --black: #000000;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Roboto', sans-serif;
            line-height: 1.6;
            color: var(--dark-gray);
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--primary-color);
        }
        h1 {
            font-size: 2.5rem;
        }
        h2 {
            font-size: 2rem;
            margin-bottom: 2rem;
            position: relative;
        }
        h2:after {
            content: '';
            display: block;
            width: 80px;
            height: 3px;
            background-color: var(--accent-color);
            margin-top: 10px;
        }
        h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }
        p {
            margin-bottom: 1rem;
        }
        a {
            color: var(--primary-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: var(--accent-color);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .section {
            padding: 40px 0;
        }
        .section:nth-child(even) {
            background-color: var(--light-gray);
        }
        .btn {
            display: inline-block;
            background-color: var(--primary-color);
            color: var(--white);
            padding: 12px 25px;
            border-radius: 4px;
            font-weight: 500;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-family: 'Roboto', sans-serif;
        }
        .btn:hover {
            background-color: var(--accent-color);
            color: var(--dark-gray);
        }
        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
        }
        .btn-outline:hover {
            background-color: var(--primary-color);
            color: var(--white);
        }
        /* STYL DLA PRZYCISKU KONSULTACJI */
        .btn-consultation {
            background-color: var(--accent-color);
            color: var(--dark-gray);
            font-weight: 700;
        }
        .btn-consultation:hover {
            background-color: var(--white);
            color: var(--accent-color);
        }
        /* STYL DLA PRZYCISKU USŁUG - BIAŁA RAMKA I TEKST */
        .btn-services {
            background-color: transparent;
            border: 2px solid var(--white);
            color: var(--white);
        }
        .btn-services:hover {
            background-color: var(--white);
            color: var(--primary-color);
        }
        .text-center {
            text-align: center;
        }
        /* Header i Nawigacja - UKRYWANIE PRZY SCROLLU */
/* Styl dla nowego obrazka logo - zmodyfikowany do rozmiaru 60x60px */
.logo-img {
  width: 120px;   /* Ustawiona stała szerokość */
  height: 60px;  /* Ustawiona stała wysokość */
  margin-right: 15px; /* Zachowaj odstęp od tekstu */
  /* Opcjonalne: dodatkowe stylizacje */
  /* border-radius: 4px; */ /* Jeśli chcesz zaokrąglić rogi jak SVG z rect */
  object-fit: cover; /* lub object-fit: contain; - zobacz wyjaśnienie poniżej */
  vertical-align: middle; /* Wyrównanie do środka w linii z tekstem */
}        
 header {
            background-color: var(--white);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 20;
            left: 0;
            z-index: 1000;
            transition: transform 0.3s ease;
        }
header nav {
    margin-top: 3px; /* Dostosuj wartość według potrzeb */
}
        /* Stan ukryty - przy scrollowaniu w dół */
        header.hide {
            transform: translateY(-100%);
        }
        /* Stan widoczny - przy scrollowaniu w górę */
        header.show {
            transform: translateY(0);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 5px 0;
        }
        .logo {
            display: flex;
            align-items: center;
        }
        .logo-svg {
            width: 60px;
            height: 60px;
            margin-right: 15px;
        }
        .logo-text {
            font-family: 'Playfair Display', serif;
        }
        .logo-text h1 {
            font-size: 1.8rem;
            margin-bottom: 0;
            color: var(--primary-color);
            line-height: 1.2;
        }
        .logo-text span {
            font-size: 0.9rem;
            color: var(--accent-color);
            font-family: 'Roboto', sans-serif;
        }
          nav ul {
    display: flex;
    list-style: none;
    justify-content: space-between; /* Równomiernie rozkłada elementy */
    align-items: center; /* Wyśrodkowuje elementy pionowo */
    width: 100%; /* Upewnia się, że ul zajmuje całą dostępną szerokość */
    /* padding: 0 10px; */ /* Opcjonalnie: niewielki padding wewnętrzny jako margines bezpieczeństwa */
    margin: 0px; /* Usuwa domyślne marginesy */
}
nav ul li {
    /* Usuwamy margin-left, bo odstępy zarządza teraz 'justify-content' */
    margin: 10px; 
    flex-shrink: 0; */ /* Opcjonalnie: zapobiega kurczeniu się elementów */
}
        nav ul li a {
            font-weight: 500;
            position: relative;
        }
/* --- POPRAWIONY STYL DLA SUBMENU USŁUGI --- */
li.nav-dropdown {
    position: relative;
    display: inline-block; /* Zapewnia, że element nie zajmuje całej szerokości */
}
/* Ukryj submenu domyślnie */
.nav-dropdown .dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--white);
    min-width: 220px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
    z-index: 1001; /* Upewnij się, że jest nad innymi elementami */
    top: 100%; /* Umieść tuż pod elementem nadrzędnym */
    left: 0;
    border-radius: 0 0 4px 4px;
    /* Usuń padding z nav ul li, jeśli się tam znalazł */
    padding: 0;
    margin: 0;
}
/* Styl linków w submenu */
.nav-dropdown .dropdown-content a {
    color: var(--dark-gray);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-weight: normal;
    border-bottom: 1px solid #eee;
    transition: background-color 0.2s ease;
    /* Resetuj domyślne style linków z nav */
    position: static; /* Nadpisuje position: relative z nav ul li a */
}
.nav-dropdown .dropdown-content a:last-child {
    border-bottom: none;
}
.nav-dropdown .dropdown-content a:hover {
    background-color: var(--light-gray);
    color: var(--primary-color);
}
/* Pokaż submenu po najechaniu na cały element li.nav-dropdown */
.nav-dropdown:hover .dropdown-content {
    display: block;
}
/* Usuń podkreślenie spod głównego linku "Usługi" */
.nav-dropdown .dropbtn {
    position: relative; /* Potrzebne dla pseudoelementu ::after */
}
.nav-dropdown .dropbtn::after {
    /* Nadpisuje efekt podkreślania z głównego nav ul li a:after */
    display: none;
}
/* ----------------------------- */
        nav ul li a:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent-color);
            transition: width 0.3s ease;
        }
        nav ul li a:hover:after {
            width: 100%;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--primary-color);
            cursor: pointer;
        }
        /* Hero Section - ZMIENIONE TŁO */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            background-image: linear-gradient(rgba(26, 58, 95, 0.4), rgba(26, 58, 95, 0.4)), url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            color: var(--white);
            padding-top: 80px;
            position: relative;
        }
        .hero-content {
            max-width: 800px;
        }
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            color: var(--white);
        }
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }
        .scroll-down {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 2rem;
            color: var(--white);
            animation: bounce 2s infinite;
        }
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0) translateX(-50%);
            }
            40% {
                transform: translateY(-20px) translateX(-50%);
            }
            60% {
                transform: translateY(-10px) translateX(-50%);
            }
        }
        /* O Kancelarii */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }
        .about-image img {
            width: 100%;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        /* Usługi - ZMIENIONA SEKCJA */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        .service-card {
            background-color: var(--white);
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
            cursor: pointer;
        }
        .service-card:hover {
            transform: translateY(-10px);
        }
        .service-icon {
            font-size: 2.5rem;
            color: var(--accent-color);
            margin-bottom: 20px;
        }
        /* Dlaczego My - ZMIENIONA SEKCJA */
        .why-us-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        .feature-card {
            text-align: center;
            padding: 20px;
        }
        .feature-icon {
            font-size: 2.5rem;
            color: var(--accent-color);
            margin-bottom: 20px;
        }
        .counter {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 10px;
        }
        /* Artykuły (zamiast opinii) - POPRAWIONA SEKCJA */
        .articles-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            overflow: hidden;
        }
        .articles-slider {
            display: flex;
            transition: transform 0.8s ease;
        }
        /* Styl dla pojedynczego slajdu */
        .article-slide {
            flex: 0 0 100%; /* Domyślnie pełna szerokość kontenera */
            padding: 20px;
            display: grid;
            /* grid-template-columns będzie ustawiane dynamicznie przez CSS Media Queries */
            gap: 30px;
        }
        .article-card {
            background-color: var(--white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        .article-card:hover {
            transform: translateY(-5px);
        }
        .article-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            flex-shrink: 0;
        }
        .article-content {
            padding: 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        .article-date {
            font-size: 0.9rem;
            color: var(--accent-color);
            margin-bottom: 10px;
        }
        .article-excerpt {
            margin-bottom: 15px;
            color: var(--dark-gray);
            flex-grow: 1;
        }
        .read-more {
            color: var(--primary-color);
            font-weight: 500;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            margin-top: auto; /* Przyciąga do dołu contentu */
        }
        .read-more:hover {
  text-decoration: underline;
}
.read-more i {
  margin-left: 5px;
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}
.read-more:hover i {
  transform: translateX(3px);
}
        .articles-nav {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 30px;
            gap: 15px; /* Dodaj odstęp między przyciskami i kropkami */
        }
       #prevArticleBtn,
#nextArticleBtn {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary-color);
  padding: 8px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
      #prevArticleBtn:hover,
#nextArticleBtn:hover {
  background-color: var(--light-gray);
}
#prevArticleBtn:disabled,
#nextArticleBtn:disabled {
  color: #ccc;
  cursor: not-allowed;
  background-color: transparent;
}
        /* Styl dla kropek wskazujących slajdy */
        .articles-dots {
  display: flex;
  gap: 10px;
}
.article-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ccc;
  cursor: pointer;
  transition: var(--transition);
}
.article-dot.active {
  background-color: var(--primary-color);
  transform: scale(1.2);
}
 /* === PRZESUNIĘCIE TEKSTU PODTYTUŁU BLIŻEJ NAGŁÓWKA W SEKCJI AKTUALNOŚCI === */
  /* Wybiera drugi akapit z klasą text-center w sekcji o id="articles" */
  #articles p.text-center:nth-of-type(1) {
    /* Ujemny margines górny przesuwa element w górę, bliżej poprzedniego elementu */
    margin-top: -15px; /* Możesz dostosować wartość: -5px, -15px, -20px */
  }
        /* KALENDARZ REZERWACJI - NOWA SEKCJA */
        .reservation-section {
            background-color: var(--white);
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            overflow: hidden;
            margin-bottom: 40px;
        }
        .reservation-header {
            background: linear-gradient(135deg, var(--primary-color) 0%, #2c5282 100%);
            color: var(--white);
            padding: 15px;
            text-align: center;
        }
        .reservation-header h1 {
            color: var(--white);
            margin-bottom: 10px;
            font-size: 2.2rem;
        }
        .reservation-header p {
            font-size: 1.0rem;
            opacity: 0.9;
            margin-bottom: 0;
        }
        .reservation-content {
            display: flex;
            flex-wrap: wrap;
            min-height: 600px;
        }
        .calendar-section {
            flex: 1;
            min-width: 300px;
            padding: 30px;
            border-right: 1px solid #eee;
        }
        .form-section {
            flex: 1;
            min-width: 300px;
            padding: 30px;
        }
        /* Calendar Styles */
        .calendar-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
        }
        .calendar-header h2 {
            font-family: 'Playfair Display', serif;
            color: var(--primary-color);
            font-size: 1.8rem;
            margin: 0;
        }
        .nav-button {
            background: var(--primary-color);
            color: var(--white);
            border: none;
            padding: 10px 15px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 16px;
            transition: background 0.3s ease;
            font-weight: 500;
            font-family: 'Roboto', sans-serif;
        }
        .nav-button:hover {
            background: var(--accent-color);
            color: var(--dark-gray);
        }
        .calendar-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 8px;
            margin-bottom: 25px;
        }
        .calendar-day-header {
            text-align: center;
            font-weight: 700;
            padding: 12px 5px;
            background: var(--light-gray);
            border-radius: 4px;
            font-size: 0.9rem;
            color: var(--primary-color);
        }
        .calendar-day {
            text-align: center;
            padding: 15px 5px;
            background-color: var(--white);
            border: 1px solid #e9ecef;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
        }
        .calendar-day:hover:not(.disabled):not(.blocked) {
            background-color: #e3f2fd;
            transform: translateY(-2px);
            border-color: var(--primary-color);
        }
        .calendar-day.selected {
            background-color: var(--primary-color);
            color: var(--white);
            border-color: var(--primary-color);
        }
        .calendar-day.today {
            background-color: #fff3cd;
            border-color: var(--warning-color);
            font-weight: 700;
        }
        .calendar-day.disabled {
            background-color: #f8f9fa;
            color: #ccc;
            cursor: not-allowed;
        }
        .calendar-day.blocked {
            background-color: #f8d7da;
            color: var(--danger-color);
            cursor: not-allowed;
            position: relative;
        }
        .calendar-day.blocked::after {
            content: "🚫";
            position: absolute;
            top: 2px;
            right: 2px;
            font-size: 10px;
        }
        .calendar-day.sunday {
            background-color: #f8d7da;
            color: var(--danger-color);
            cursor: not-allowed;
        }
        .calendar-day.sunday::after {
            content: "📅";
            position: absolute;
            top: 2px;
            right: 2px;
            font-size: 10px;
        }
        /* Hours Selection */
        .hours-section {
            margin-top: 30px;
        }
        .hours-section h3 {
            font-family: 'Playfair Display', serif;
            color: var(--primary-color);
            margin-bottom: 15px;
            font-size: 1.5rem;
        }
        .hours-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
            gap: 10px;
        }
        .hour-button {
            padding: 10px;
            background: var(--light-gray);
            border: 1px solid #dee2e6;
            border-radius: 4px;
            cursor: pointer;
            text-align: center;
            transition: all 0.3s ease;
        }
        .hour-button:hover:not(.disabled) {
            background: #e3f2fd;
            border-color: var(--primary-color);
        }
        .hour-button.selected {
            background: var(--primary-color);
            color: var(--white);
            border-color: var(--primary-color);
        }
        .hour-button.disabled {
            background: #f8f9fa;
            color: #ccc;
            cursor: not-allowed;
        }
        /* Reservation Form */
        .form-section h2 {
            font-family: 'Playfair Display', serif;
            color: var(--primary-color);
            margin-bottom: 25px;
            font-size: 2rem;
            position: relative;
        }
        .form-section h2:after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background-color: var(--accent-color);
            margin-top: 10px;
        }
        .selected-info {
            background: #e3f2fd;
            padding: 20px;
            border-radius: 4px;
            margin-bottom: 25px;
            border-left: 4px solid var(--primary-color);
        }
        .selected-info p {
            margin: 8px 0;
            font-weight: 500;
        }
        .selected-info strong {
            color: var(--primary-color);
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--dark-gray);
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-family: 'Roboto', sans-serif;
            font-size: 16px;
            transition: border-color 0.3s ease;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 2px rgba(26, 58, 95, 0.1);
        }
        .submit-button {
            width: 100%;
            background: linear-gradient(135deg, var(--primary-color) 0%, #2c5282 100%);
            color: var(--white);
            padding: 15px;
            border: none;
            border-radius: 4px;
            font-size: 18px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Roboto', sans-serif;
            margin-top: 10px;
        }
        .submit-button:hover {
            background: linear-gradient(135deg, var(--accent-color) 0%, #c9a34a 100%);
            color: var(--dark-gray);
            transform: translateY(-2px);
        }
        .submit-button:disabled {
            background: #ccc;
            cursor: not-allowed;
            transform: none;
        }
        /* Confirmation */
        .confirmation {
            text-align: center;
            padding: 40px 20px;
            background: #d4edda;
            border-radius: 4px;
            margin-top: 20px;
            border-left: 4px solid var(--success-color);
        }
        .confirmation h3 {
            color: var(--success-color);
            font-family: 'Playfair Display', serif;
            margin-bottom: 15px;
        }
     /* --- NOWE STYLE DLA SEKCJI KONTAKTÓW --- */
  #contact .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.75fr; /* Dwie kolumny o równych szerokościach */
    gap: 40px;
    align-items: start; /* Wyrównanie elementów do góry */
  }
  .map-container-full {
    height: 100%;
    min-height: 400px; /* Ustaw minimalną wysokość */
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }
  .map-container-full iframe {
    width: 100%;
    height: 100%;
    border: none;
  }
  /* --- DODATKOWY ODSTĘP PO TEKŚCIE W SEKCJI KONTAKTÓW (oddalenie od mapy i danych) --- */
  #contact .text-center:nth-of-type(1) {
    margin-bottom: 5px; /* Mały odstęp od nagłówka */
  }
  /* Zwiększ odstęp między tekstem a siatką kontaktową */
  #contact .contact-grid {
    margin-top: 50px; /* LUB możesz użyć padding-top na .contact-grid */
    /* padding-top: 40px; */
  }
  /* --- KONIEC DODATKOWEGO ODSTĘPU --- */
/* Powiększ pojedynczy element kontaktowy (ikona + tekst) */
  #contact .contact-item {
    margin-bottom: 1px; /* Domyślnie 20px */
    align-items: flex-start; /* Domyślnie flex-start, zostawiamy */
  }
  /* Powiększ ikony kontaktowe */
  #contact .contact-icon {
    font-size: 1.8rem; /* Domyślnie 1.5rem */
    margin-right: 20px; /* Domyślnie 15px */
    width: 35px; /* Domyślnie 30px */
    text-align: center;
  }
  /* Powiększ nagłówki wewnątrz elementów (Adres, Telefon itd.) */
  #contact .contact-item h3 {
    font-size: 1.3rem; /* Domyślnie stylowany jako h4, czyli ok. 1.17rem */
    margin-bottom: 0px; /* Domyślnie 0, ale może mieć domyślne marginesy h3/h4 */
  }
  /* Powiększ tekst (adres, telefon, email, godziny) */
  #contact .contact-item p {
    font-size: 1.1rem; /* Domyślnie 1rem */
    line-height: 1.7; /* Poprawa czytelności przy większej czcionce */
  }
  /* Powiększ ikony w linkach social-media (jeśli są bezpośrednio w .contact-info) */
  #contact .social-links a {
    width: 60px; /* Domyślnie 40px */
    height: 60px; /* Domyślnie 40px */
    font-size: 1.3rem; /* Domyślnie nie określone, ale ikony są ok. 1rem */
  }
  /* === KONIEC POWIĘKSZENIA DANYCH KONTAKTOWYCH === */
  /* --- KONIEC NOWYCH STYLÓW --- */
        /* Footer */
        footer {
            background-color: var(--primary-color);
            color: var(--white);
            padding: 60px 0 30px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
         .footer-logo h3 {
            color: var(--white);
            margin-bottom: 15px;
            font-size: 1.8rem;
        }
        .footer-logo span {
            color: var(--accent-color);
        }
        .footer-logo p {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 20px;
        }
        .social-icons {
            display: flex;
            margin-top: 20px;
        }
        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            margin-right: 12px;
            color: var(--white);
            transition: var(--transition);
        }
        .social-icons a:hover {
            background-color: var(--accent-color);
            color: var(--primary-color);
            transform: translateY(-3px);
        }
        .footer-links h3 {
            color: var(--white);
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links ul li {
            margin-bottom: 10px;
        }
        .footer-links ul li a {
            color: var(--white);
            transition: color 0.3s ease;
        }
        .footer-links ul li a:hover {
            color: var(--accent-color);
        }
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
        }
 /* Responsywność */
        @media (max-width: 992px) {
            .header-content {
                padding: 15px 0;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .about-grid,
            .contact-grid {
                grid-template-columns: 1fr;
            }
            .services-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            }
.mobile-menu-btn {
                display: block;
            }
  .footer-contact {
    display: none !important;
  }
            nav {
                position: fixed;
                top: 90px;
                left: 0;
                width: 100%;
                background-color: var(--white);
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
                transform: translateY(-150%);
                transition: transform 0.3s ease;
                z-index: 999;
            }
            nav.show {
                transform: translateY(0);
            }
            nav ul {
                flex-direction: column;
                padding: 20px;
            }
            nav ul li {
                margin: 0 0 15px 0;
            }
    #month-year {
    flex-grow: 1;
    text-align: center;
    margin: 0;
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    font-size: 1.5rem; /* Dostosuj ogólny rozmiar */
    line-height: 1.3; /* Dostosuj odstęp między liniami */
    /* --- WYMUSZENIE ZAWIJANIA --- */
    display: block; /* Zmień z domyślnego display:flex, który może być nadawany przez przeglądarkę */
    width: 100%; /* Upewnij się, że zajmuje całą szerokość dostępną przez flex-grow */
    min-width: 0; /* Kluczowe dla flexbox! */
    }
}
/* --- KONIEC UKRYWANIA DANYCH ADRESOWYCH --- */
        }
        @media (max-width: 768px) {
            html {
                font-size: 14px;
            }
            .mobile-menu-btn {
                display: block;
            }
            nav {
                position: fixed;
                top: 90px;
                left: 0;
                width: 100%;
                background-color: var(--white);
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
                transform: translateY(-150%);
                transition: transform 0.3s ease;
                z-index: 999;
            }
            nav.show {
                transform: translateY(0);
            }
            nav ul {
                flex-direction: column;
                padding: 20px;
            }
            nav ul li {
                margin: 0 0 15px 0;
            }
            .section {
                padding: 60px 0;
            }
            .team-grid {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            }
            /* Hero section na urządzeniach mobilnych */
            .hero {
                height: 70vh;
            }
            .hero-content {
                padding-top: 40px;
            }
            .hero h1 {
                font-size: 2rem;
                margin-bottom: 2rem;
            }
            .hero p {
                font-size: 1rem;
                margin-bottom: 1.5rem;
            }
            /* Przyciski obok siebie na mobilnych */
            .hero-buttons {
                display: flex;
                justify-content: space-between;
                gap: 10px;
            }
            .hero-buttons .btn {
                flex: 1;
                margin-left: 0 !important;
                padding: 10px 12px;
                font-size: 0.85rem;
                text-align: center;
                /* Zapobiegaj zawijaniu tekstu */
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }
            /* WIĘKSZE LITERY W PRZYCISKACH NA MOBILNYCH */
            .hero-buttons .btn {
                font-size: 1.1rem !important;
                padding: 15px 12px !important; 
   	    }
            /* Ukryj tekst tylko na mobilnych */
            .hero-content > p {
                display: none;
            }
            /* Jeszcze mniejsze odstępy między kartami w sekcji "Dlaczego warto wybrać DPPW" */
            .why-us-grid {
                gap: 8px;
            }
            .feature-card {
                padding: 12px;
            }
            /* Artykuły na mobilnych - tylko jeden artykuł */
            .article-slide {
                grid-template-columns: 1fr;
            }
            /* KALENDARZ NA MOBILNYCH */
            .reservation-content {
                flex-direction: column;
            }
            .calendar-section {
                border-right: none;
                border-bottom: 1px solid #eee;
            }
            .calendar-grid {
                gap: 5px;
            }
            .calendar-day {
                padding: 10px 2px;
                font-size: 0.9rem;
            }
            .hours-grid {
                grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
            }
            .hour-button {
                padding: 10px 2px;
                font-size: 0.9rem;
            }
  /* --- SEKCJA KONTAKTÓW NA MOBILNYCH --- */
  #contact .contact-grid {
    grid-template-columns: 1fr; /* Jedna kolumna na urządzeniach mobilnych */
  }
  #contact .map-container {
    min-height: 300px; /* Możesz dostosować wysokość mapy na mobile */
  }
  /* --- KONIEC SEKCJI KONTAKTÓW NA MOBILNYCH --- */
        }
@media (max-width: 768px) {
            .scroll-down {
                display: none !important;
            }
        }
        @media (max-width: 576px) {
            .section {
                padding: 40px 0;
            }
            .hero {
                height: 60vh;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
    /* Ukryj tekst tylko na mobilnych */
            .hero-content > p {
                display: none;
            }
            .logo-text h1 {
                font-size: 1.5rem;
            }
            /* Na bardzo małych ekranach przyciski mogą się skalować */
            .hero-buttons .btn {
                font-size: 0.95rem !important;
                padding: 12px 10px !important;
            }
            /* Artykuły na bardzo małych ekranach */
            .articles-nav button {
                font-size: 1.2rem;
                margin: 0 5px;
            }
            /* KALENDARZ NA BARDZO MAŁYCH EKRANACH */
            .calendar-section,
            .form-section {
                padding: 20px 15px;
            }
            .hours-grid {
                grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
            }
/* === WYŚRODKOWANIE MIESIĄCA W NAGŁÓWKU KALENDARZA NA BARDZO MAŁYCH EKRANACH === */
  .calendar-header {
    /* Upewnij się, że elementy są wyśrodkowane */
    align-items: center;
    /* Dodatkowo wyśrodkuj tekst wewnętrznie */
    text-align: center;
  }
  .calendar-header h3 {
    /* Upewnij się, że tekst w nagłówku h3 jest wyśrodkowany */
    text-align: center;
    /* Możesz też wymusić, żeby h3 zajmowało całą szerokość dostępną w flexboxie */
    width: 100%;
    /* Lub użyj flex-grow, jeśli .calendar-header jest flex containerem z flex-direction: column */
    /* flex-grow: 1; */
    margin: 0;
    font-size: 1.2rem;
  }
  /* === KONIEC WYŚRODKOWANIA === */
        }
  .btn-consultation-header {
            background-color: var(--white);
            color: var(--primary-color);
            font-weight: 700;
            border: 2px solid var(--accent-color);
            border-radius: 25px; /* Zaokrąglone rogi */
            padding: 8px 20px; /* Mniejszy padding */
  	margin-top: 0px;
            font-size: 0.95rem; /* Mniejsza czcionka */
            /* Subtelny cień */
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            /* Pulsowanie */
            animation: pulseHeader 2s infinite;
            transition: all 0.3s ease;
            margin-left: 20px; /* Odstęp od innych elementów */
        } 
	.btn-consultation-header:hover {
            background-color: var(--accent-color);
            color: var(--dark-gray);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
            transform: translateY(-2px);
            animation: none; /* Wyłącz animację przy hover */
        }
        /* Definicja animacji pulsowania dla nagłówka */
        @keyframes pulseHeader {
            0% {
                box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            }
50% {
                box-shadow: 0 2px 12px rgba(212, 175, 55, 0.4); /* Delikatne złote światło */
            }
            100% {
                box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            }
        }
        /* --- STYL DLA WYSUWANYCH FLAG W NAWIGACJI --- */
        .language-selector {
            position: relative;
            display: flex;
            align-items: center;
            height: 100%;
            margin-left: 10px; /* Mały odstęp od przycisku konsultacji */
        }

        .language-selector-trigger {
            display: flex;
            align-items: center;
            cursor: pointer;
            padding: 5px;
            border-radius: 4px;
            transition: background-color 0.3s ease;
        }

        .language-selector-trigger:hover {
            background-color: var(--light-gray);
        }

        .language-flag-main {
            width: 30px;
            height: 20px;
            border: 1px solid #ccc;
            background-size: cover;
            background-position: center;
            border-radius: 2px;
            margin-right: 5px;
        }

        .language-flag-main.pl {
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="640" height="400" viewBox="0 0 16 10"><rect width="16" height="10" fill="%23fff"/><rect width="16" height="5" y="5" fill="%23dc143c"/></svg>');
        }

        .language-flag-main.en {
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 30" width="1200" height="600"><clipPath id="t"><path d="M30,15h30v15zv15h-30zh-30v-15zv-15h30z"/></clipPath><path d="M0,0v30h60v-30z" fill="%23012169"/><path d="M0,0 60,30M60,0 0,30" stroke="%23fff" stroke-width="6"/><path d="M0,0 60,30M60,0 0,30" clip-path="url(%23t)" stroke="%23c8102e" stroke-width="4"/><path d="M30,0v30M0,15h60" stroke="%23fff" stroke-width="10"/><path d="M30,0v30M0,15h60" stroke="%23c8102e" stroke-width="6"/></svg>');
        }

        .language-flag-main.de {
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="1000" height="600" viewBox="0 0 5 3"><desc>Flag of Germany</desc><rect id="black_stripe" width="5" height="3" y="0" x="0" fill="%23000"/><rect id="red_stripe" width="5" height="2" y="1" x="0" fill="%23D00"/><rect id="gold_stripe" width="5" height="1" y="2" x="0" fill="%23FFCE00"/></svg>');
        }

        .language-flag-main.it {
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="1500" height="1000" viewBox="0 0 3 2"><rect width="3" height="2" fill="%23009246"/><rect width="2" height="2" x="1" fill="%23fff"/><rect width="1" height="2" x="2" fill="%23ce2b37"/></svg>');
        }

        .language-flag-main.sv {
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 10" width="1600" height="1000"><path fill="%23005293" d="M0,0H16V10H0Z"/><path stroke="%23fecb00" stroke-width="1" d="M0,5h16M5,0v10"/></svg>');
        }

        .language-selector-arrow {
            font-size: 0.8rem;
            color: var(--primary-color);
            transition: transform 0.3s ease;
        }

        .language-selector:hover .language-selector-arrow {
            transform: rotate(180deg);
        }

        .language-dropdown {
            position: absolute;
            top: 100%;
            right: 0; /* Wyrównanie do prawej krawędzi przycisku */
            background-color: var(--white);
            box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
            z-index: 1001;
            display: none;
            flex-direction: column;
            min-width: 120px;
            border-radius: 0 0 4px 4px;
            overflow: hidden;
        }

        .language-selector:hover .language-dropdown {
            display: flex;
        }

        .language-flag-option {
            width: 100%;
            height: 30px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            background-size: cover;
            background-position: center;
            padding: 5px 10px 5px 40px; /* Odstęp na ikonę */
            text-align: left;
            font-size: 0.9rem;
            color: var(--dark-gray);
            position: relative;
        }

        .language-flag-option:hover {
            background-color: var(--light-gray);
        }

        .language-flag-option::before {
            content: '';
            position: absolute;
            left: 10px;
            top: 50%;
            transform: translateY(-50%);
            width: 25px;
            height: 15px;
            border: 1px solid #ccc;
            background-size: cover;
            background-position: center;
            border-radius: 2px;
        }

        .language-flag-option.pl::before {
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="640" height="400" viewBox="0 0 16 10"><rect width="16" height="10" fill="%23fff"/><rect width="16" height="5" y="5" fill="%23dc143c"/></svg>');
        }

        .language-flag-option.en::before {
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 30" width="1200" height="600"><clipPath id="t"><path d="M30,15h30v15zv15h-30zh-30v-15zv-15h30z"/></clipPath><path d="M0,0v30h60v-30z" fill="%23012169"/><path d="M0,0 60,30M60,0 0,30" stroke="%23fff" stroke-width="6"/><path d="M0,0 60,30M60,0 0,30" clip-path="url(%23t)" stroke="%23c8102e" stroke-width="4"/><path d="M30,0v30M0,15h60" stroke="%23fff" stroke-width="10"/><path d="M30,0v30M0,15h60" stroke="%23c8102e" stroke-width="6"/></svg>');
        }

        .language-flag-option.de::before {
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="1000" height="600" viewBox="0 0 5 3"><desc>Flag of Germany</desc><rect id="black_stripe" width="5" height="3" y="0" x="0" fill="%23000"/><rect id="red_stripe" width="5" height="2" y="1" x="0" fill="%23D00"/><rect id="gold_stripe" width="5" height="1" y="2" x="0" fill="%23FFCE00"/></svg>');
        }

        .language-flag-option.it::before {
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="1500" height="1000" viewBox="0 0 3 2"><rect width="3" height="2" fill="%23009246"/><rect width="2" height="2" x="1" fill="%23fff"/><rect width="1" height="2" x="2" fill="%23ce2b37"/></svg>');
        }

        .language-flag-option.sv::before {
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 10" width="1600" height="1000"><path fill="%23005293" d="M0,0H16V10H0Z"/><path stroke="%23fecb00" stroke-width="1" d="M0,5h16M5,0v10"/></svg>');
        }

        /* --- KONIEC STYLU DLA WYSUWANYCH FLAG W NAWIGACJI --- */