        /* Reset i podstawowe style */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: sans-serif;
            background-color: #F9FAFB; /* gray-50 */
            color: #44403C; /* stone-700 */
            line-height: 1.6;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 4rem; /* px-16 */
        }
        @media (max-width: 768px) {
            .container {
                padding: 0 1rem;
            }
        }

        /* Nawigacja */
        nav {
            background-color: #a5ac9b; /* nowy kolor tła */
            color: #44403C; /* stone-700 */
            padding: 1rem 0; /* py-4 */
            position: sticky;
            top: 0;
            z-index: 50;
        }
        nav .container {
            display: flex;
            justify-content: center;
            gap: 1rem; /* space-x-4 */
        }
        .nav-link {
            color: #44403C; /* stone-700 */
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .nav-link:hover {
            color: #4B4B4B; /* stone-800 */
            text-decoration: underline;
        }

        /* Nagłówek / Hero */
        header {
            background-color: #a5ac9b; /* nowy kolor tła */
            color: #44403C; /* stone-700 */
            padding: 4rem 0; /* py-16 */
            text-align: center;
        }
        .hero-container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1rem; /* mniejszy odstęp */
            flex-wrap: wrap;
            max-width: 1000px; /* ograniczenie szerokości dla wyśrodkowania */
            margin: 0 auto;
        }
        @media (max-width: 768px) {
            .hero-container {
                flex-direction: column;
                gap: 1rem;
            }
        }
        .hero-logo {
            max-width: 300px; /* powiększone logo */
            height: auto;
        }
        @media (max-width: 768px) {
            .hero-logo {
                margin-bottom: 1rem; /* mniejszy odstęp */
            }
        }
        .hero-content {
            flex: 1;
            text-align: left;
            max-width: 600px; /* ograniczenie szerokości tekstu */
            padding-right: 1rem; /* dodany padding dla balansu */
        }
        @media (max-width: 768px) {
            .hero-content {
                text-align: center;
                max-width: 100%;
                padding-right: 0;
            }
        }
        .hero-title {
            font-family: 'Cormorant SC', serif; /* nowa czcionka */
            font-weight: 300; /* Light */
            font-size: 2.25rem; /* text-4xl */
            margin-bottom: 1rem; /* mb-4 */
            margin-top: 4px; /* przesunięcie w dół o 4px (~1mm) */
        }
        @media (min-width: 768px) {
            .hero-title {
                font-size: 3rem; /* text-5xl */
            }
        }
        header p {
            color: #57534E; /* stone-600 */
            font-size: 1.125rem; /* text-lg */
            margin-bottom: 1.5rem; /* mb-6 */
        }
        @media (min-width: 768px) {
            header p {
                font-size: 1.25rem; /* text-xl */
            }
        }
        header p:last-of-type {
            color: #57534E; /* stone-600 */
            font-size: 1rem; /* text-md */
        }
        @media (min-width: 768px) {
            header p:last-of-type {
                font-size: 1.125rem; /* text-lg */
            }
        }
        .btn {
            display: inline-block;
            background-color: #E7E5E4; /* stone-200 */
            color: #44403C; /* stone-700 */
            padding: 0.75rem 1.5rem; /* px-6 py-3 */
            border-radius: 0.5rem; /* rounded-lg */
            text-decoration: none;
            margin-top: 1.5rem; /* mt-6 */
            transition: all 0.3s ease;
        }
        .btn:hover {
            transform: scale(1.05);
            background-color: #b8bdac; /* jaśniejszy odcień #a5ac9b dla efektu hover */
        }

        /* Sekcje */
        section {
            padding: 4rem 0; /* py-16 */
        }
        .section-title {
            font-family: Georgia, serif;
            font-size: 1.875rem; /* text-3xl */
            font-weight: bold;
            color: #44403C; /* stone-700 */
            margin-bottom: 1.5rem; /* mb-6 */
            position: relative;
            display: inline-block;
            padding-bottom: 0.5rem;
            text-align: center;
        }
        .section-title::before {
            position: absolute;
            bottom: -0.5rem;
            left: 50%;
            transform: translateX(-50%);
            color: #a5ac9b; /* dopasowany do nowego motywu */
            font-size: 1.5rem;
        }
        .bg-white {
            background-color: #FFFFFF;
        }
        .bg-gray-50 {
            background-color: #F9FAFB;
        }

        /* Sekcja O nas */
        #about {
            text-align: center;
        }
        .about-text {
            font-family: Calibri, sans-serif;
            color: #4B5563; /* gray-600 */
            max-width: 32rem; /* max-w-2xl */
            margin: 0 auto;
        }
        .reflective-image {
            margin: 4rem auto;
            max-width: 600px;
            width: 100%;
            height: auto;
            border-radius: 0.5rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        /* Sekcja Usługi */
        #services .grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem; /* gap-6 */
        }
        @media (min-width: 768px) {
            #services .grid {
                grid-template-columns: 1fr 1fr; /* md:grid-cols-2 */
            }
        }
        .card {
            background-color: #FFFFFF;
            padding: 1.5rem; /* p-6 */
            border-radius: 0.5rem; /* rounded-lg */
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* shadow */
            border: 1px solid #E5E7EB; /* gray-200 */
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }
        .card h3 {
            font-size: 1.25rem; /* text-xl */
            font-weight: 600; /* font-semibold */
            color: #57534E; /* stone-600 */
            margin-bottom: 0.5rem; /* mb-2 */
        }
        .card p {
            color: #4B5563; /* gray-600 */
        }
        .card a {
            color: #57534E; /* stone-600 */
            margin-top: 1rem; /* mt-4 */
            display: inline-block;
            transition: color 0.3s ease;
        }
        .card a:hover {
            color: #4B4B4B; /* stone-800 */
            text-decoration: underline;
        }

        /* Sekcja Obszar działania */
        #area p {
            color: #4B5563; /* gray-600 */
        }
        #area iframe {
            width: 100%;
            height: 400px;
            border: 0;
            margin-top: 0.5rem;
        }
        #area .grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem; /* gap-6 */
            margin-top: 2.5rem; /* mt-10 */
        }
        @media (min-width: 768px) {
            #area .grid {
                grid-template-columns: 1fr 1fr; /* md:grid-cols-2 */
            }
        }
        @media (min-width: 1024px) {
            #area .grid {
                grid-template-columns: 1fr 1fr 1fr; /* lg:grid-cols-3 */
            }
        }
        .map-image {
            width: 100%;
            height: auto;
            border-radius: 0.5rem;
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        .map-image:hover {
            transform: scale(1.02);
        }

        /* Sekcja Galeria */
        #gallery .grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem; /* gap-6 */
            justify-items: center;
        }
        @media (min-width: 768px) {
            #gallery .grid {
                grid-template-columns: 1fr 1fr 1fr; /* trzy kolumny */
            }
        }
        #gallery .card {
            max-width: 400px; /* mniejszy rozmiar dla zdjęć */
            margin: 0 auto; /* wyśrodkowanie kart */
        }
        .gallery-image {
            width: 100%;
            max-width: 100%;
            height: auto;
            border-radius: 0.5rem;
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        .gallery-image:hover {
            transform: scale(1.02);
        }

        /* Sekcja Cennik */
        #pricing .grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem; /* gap-6 */
        }
        @media (min-width: 768px) {
            #pricing .grid {
                grid-template-columns: 1fr 1fr; /* md:grid-cols-2 */
            }
        }
        #pricing .card ul {
            list-style: disc;
            padding-left: 1.5rem; /* list-inside */
            color: #4B5563; /* gray-600 */
            margin-bottom: 1rem; /* mb-4 */
        }

        /* Sekcja Kontakt */
        #contact p {
            color: #4B5563; /* gray-600 */
            margin-bottom: 1rem; /* mb-4 */
        }
        #contact a {
            color: #57534E; /* stone-600 */
            transition: color 0.3s ease;
        }
        #contact a:hover {
            color: #4B4B4B; /* stone-800 */
            text-decoration: underline;
        }
        #contact form {
            max-width: 32rem; /* max-w-lg */
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 1rem; /* space-y-4 */
        }
        #contact input,
        #contact textarea {
            width: 100%;
            padding: 0.75rem; /* p-3 */
            border: 1px solid #D1D5DB; /* gray-300 */
            border-radius: 0.5rem; /* rounded-lg */
            outline: none;
        }
        #contact input:focus,
        #contact textarea:focus {
            border-color: #57534E; /* stone-600 */
            box-shadow: 0 0 0 2px rgba(87, 83, 78, 0.2); /* focus:ring-2 */
        }
        #contact textarea {
            resize: vertical;
            min-height: 120px; /* rows-5 */
        }
        #contact label {
            display: flex;
            align-items: center;
            color: #4B5563; /* gray-600 */
            font-size: 0.875rem; /* text-sm */
            gap: 0.1rem;
        }
        #contact label input {
            margin-right: 0;
        }

        /* Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            z-index: 1000;
            justify-content: center;
            align-items: center;
        }
        .modal-content {
            max-width: 90%;
            max-height: 90vh;
            object-fit: contain;
        }
        .close {
            position: absolute;
            top: 10px;
            right: 20px;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }
        .success-modal {
            background-color: #FFFFFF;
            padding: 2rem;
            border-radius: 0.5rem;
            text-align: center;
            max-width: 500px;
            width: 90%;
        }
        .error-message {
            color: #DC2626; /* red-600 */
            font-size: 0.875rem;
            margin-top: 0.25rem;
            display: none;
        }
        .error-message.hidden {
            display: none;
        }

        /* Stopka */
        footer {
            background-color: #a5ac9b; /* nowy kolor tła */
            color: #44403C; /* stone-700 */
            padding: 1rem 0; /* py-4 */
            text-align: center;
        }