<style>
 .testimonials {
            position: relative;
            overflow: hidden;
            padding: 80px 0 120px;
        }

        .testimonials-container {
            position: relative;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            z-index: 2;
        }

        .testimonials-carousel {
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .testimonials-track {
            display: flex;
            transition: transform 0.7s cubic-bezier(0.215, 0.61, 0.355, 1);
            align-items: stretch; /* Ensure cards stretch to same height */
        }

        .testimonial-card {
            background: var(--card-bg);
            border-radius: 20px;
            box-shadow: 0 15px 50px rgba(2, 12, 27, 0.6);
            transition: var(--transition);
            min-width: 100%;
            border: 1px solid rgba(100, 255, 218, 0.1);
            position: relative;
            overflow: hidden;
            padding: 40px;
            display: flex;
            flex-direction: column;
            height: auto; /* Changed to auto to allow equal height */
        }

        /* Ensure all cards in the same row have equal height */
        .testimonials-track {
            align-items: stretch;
        }

        .testimonial-card {
            height: auto;
        }

        .testimonial-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 20px 60px rgba(30, 144, 255, 0.4);
            border-color: rgba(100, 255, 218, 0.3);
        }

        .testimonial-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, var(--accent-blue), var(--accent-light));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.7s ease;
        }

        .testimonial-card:hover::before {
            transform: scaleX(1);
        }

        .stars {
            display: flex;
            justify-content: center;
            margin: 0 0 30px;
            position: relative;
        }

        .star {
            color: #FFD700;
            font-size: 1.8rem;
            margin: 0 5px;
            text-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
            transition: all 0.3s ease;
        }

        .testimonial-card:hover .star {
            transform: rotate(15deg) scale(1.1);
        }

        .testimonial-text {
            font-style: italic;
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 30px;
            position: relative;
            padding: 0 20px;
            font-size: 1.15rem;
            text-align: center;
            flex-grow: 1; /* Allow text to grow and push other elements down */
        }

        .testimonial-text::before,
        .testimonial-text::after {
            content: '"';
            position: absolute;
            font-size: 90px;
            color: var(--accent-blue);
            opacity: 0.15;
            font-family: Georgia, serif;
            line-height: 1;
            transition: all 0.5s ease;
        }

        .testimonial-text::before {
            top: -55px;
            left: 0;
        }

        .testimonial-text::after {
            content: '"';
            bottom: -80px;
            right: 0;
            transform: rotate(180deg);
        }

        .testimonial-card:hover .testimonial-text::before,
        .testimonial-card:hover .testimonial-text::after {
            opacity: 0.3;
            text-shadow: 0 0 15px rgba(100, 255, 218, 0.4);
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 20px 0 30px;
            position: relative;
        }

        .author-avatar {
            width: 85px;
            height: 85px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 20px;
            border: 3px solid var(--accent-blue);
            box-shadow: 0 5px 20px rgba(30, 144, 255, 0.3);
            transition: transform 0.5s ease;
            position: relative;
            z-index: 2;
        }

        .testimonial-card:hover .author-avatar {
            transform: scale(1.08);
            box-shadow: 0 8px 25px rgba(30, 144, 255, 0.4);
        }

        .author-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .testimonial-card:hover .author-avatar img {
            transform: scale(1.1);
        }

        .author-info h4 {
            color: var(--text-light);
            margin: 0 0 5px 0;
            font-size: 1.4rem;
            font-weight: 600;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        }

        .author-info p {
            color: var(--accent-light);
            font-size: 1rem;
            margin: 0;
            opacity: 0.9;
        }

        .facebook-author {
            margin-top: auto; /* Push to bottom of card */
            padding-top: 20px;
            text-align: center;
            z-index: 2;
        }

        .facebook-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 30px;
            background: linear-gradient(135deg, #4267B2, #3b5998);
            color: white;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            gap: 12px;
            box-shadow: 0 5px 20px rgba(66, 103, 178, 0.4);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .facebook-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: 0.5s;
            z-index: -1;
        }

        .facebook-button:hover::before {
            left: 100%;
            transform: translateX(100%);
        }

        .facebook-button:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 8px 25px rgba(66, 103, 178, 0.6);
            background: linear-gradient(135deg, #3b5998, #4267B2);
        }

        .facebook-button i {
            font-size: 1.3rem;
            transition: transform 0.3s ease;
        }

        .facebook-button:hover i {
            transform: scale(1.2);
        }

        .carousel-nav {
            display: flex;
            justify-content: center;
            margin-top: 50px;
        }

        .carousel-dot {
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: rgba(100, 255, 218, 0.3);
            margin: 0 10px;
            cursor: pointer;
            transition: all 0.4s ease;
            border: 2px solid transparent;
            position: relative;
        }

        .carousel-dot:hover {
            background: rgba(100, 255, 218, 0.5);
            transform: scale(1.2);
        }

        .carousel-dot.active {
            background: var(--accent-blue);
            transform: scale(1.4);
            box-shadow: 0 0 15px rgba(100, 255, 218, 0.5);
            border-color: rgba(255, 255, 255, 0.2);
        }

        /* Fixed dot alignment */
        .carousel-dot.active::after {
            content: '';
            position: absolute;
            width: 24px;
            height: 24px;
            border: 2px solid var(--accent-blue);
            border-radius: 50%;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%); /* Center the pseudo-element */
            animation: pulse 1.5s infinite;
        }

        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(10, 25, 47, 0.7);
            border: 2px solid rgba(100, 255, 218, 0.3);
            width: 65px;
            height: 65px;
            border-radius: 50%;
            color: var(--accent-blue);
            font-size: 1.8rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            z-index: 10;
            backdrop-filter: blur(5px);
            box-shadow: 0 8px 25px rgba(2, 12, 27, 0.6);
        }

        .carousel-btn:hover {
            background: var(--accent-blue);
            color: var(--secondary-dark);
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 10px 30px rgba(100, 255, 218, 0.4);
            border-color: transparent;
        }

        .carousel-prev {
            left: 30px;
        }

        .carousel-next {
            right: 30px;
        }

        /* Decorations */
        .testimonials::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 30%, rgba(100, 255, 218, 0.05) 0%, transparent 50%);
            z-index: 1;
        }

        .decoration {
            position: absolute;
            opacity: 0.1;
            z-index: 0;
            pointer-events: none;
        }

        .circle {
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(100, 255, 218, 0.15) 0%, transparent 70%);
            top: -150px;
            left: -150px;
            animation: float 12s ease-in-out infinite;
        }

        .square {
            width: 300px;
            height: 300px;
            background: linear-gradient(135deg, #4267B2, #3b5998);
            bottom: -100px;
            right: -100px;
            transform: rotate(25deg);
            animation: rotate 20s linear infinite;
        }

        .triangle {
            width: 0;
            height: 0;
            border-left: 100px solid transparent;
            border-right: 100px solid transparent;
            border-bottom: 180px solid rgba(100, 255, 218, 0.1);
            top: 50%;
            left: 10%;
            transform: rotate(45deg);
            opacity: 0.1;
            animation: float 15s ease-in-out infinite reverse;
        }

        @keyframes float {
            0%, 100% {
                transform: translate(0, 0) rotate(0deg);
            }
            25% {
                transform: translate(-10px, -20px) rotate(5deg);
            }
            50% {
                transform: translate(10px, -30px) rotate(-5deg);
            }
            75% {
                transform: translate(-15px, -15px) rotate(3deg);
            }
        }

        @keyframes rotate {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }

        @keyframes pulse {
            0% {
                transform: translate(-50%, -50%) scale(0.8);
                opacity: 1;
            }
            70% {
                transform: translate(-50%, -50%) scale(1.2);
                opacity: 0.5;
            }
            100% {
                transform: translate(-50%, -50%) scale(0.8);
                opacity: 1;
            }
        }

        /* Responsiveness */
        @media (min-width: 992px) {
            .testimonial-card {
                flex: 0 0 calc(50% - 40px);
                min-width: unset;
                margin: 0 20px;
            }
        }

        @media (min-width: 1200px) {
            .testimonial-card {
                flex: 0 0 calc(33.333% - 40px);
            }
        }

        @media (max-width: 1200px) {
            .testimonials {
                padding: 100px 0;
            }

            .section-title {
                font-size: 2.5rem;
                margin-bottom: 60px;
            }

            .testimonial-card {
                padding: 35px;
            }

            .carousel-btn {
                width: 55px;
                height: 55px;
                font-size: 1.6rem;
            }
        }

        @media (max-width: 992px) {
            .testimonials {
                padding: 80px 0;
            }

            .section-title {
                font-size: 2.2rem;
                margin-bottom: 50px;
            }

            .testimonial-card {
                padding: 30px;
            }

            .carousel-btn {
                width: 50px;
                height: 50px;
                font-size: 1.4rem;
            }

            .testimonial-text {
                font-size: 1.1rem;
            }

            .author-avatar {
                width: 75px;
                height: 75px;
            }
        }

        @media (max-width: 768px) {
            .testimonials {
                padding: 70px 0;
            }

            .section-title {
                font-size: 2rem;
                margin-bottom: 40px;
            }

            .testimonial-card {
                padding: 25px 20px;
            }

            .carousel-btn {
                width: 45px;
                height: 45px;
                font-size: 1.3rem;
            }

            .carousel-prev {
                left: 15px;
            }

            .carousel-next {
                right: 15px;
            }

            .testimonial-text {
                font-size: 1rem;
                padding: 0 15px;
            }

            .author-avatar {
                width: 70px;
                height: 70px;
                margin-right: 15px;
            }

            .author-info h4 {
                font-size: 1.3rem;
            }

            .facebook-button {
                padding: 12px 25px;
                font-size: 1rem;
            }
        }

        @media (max-width: 576px) {
            .testimonial-author {
                flex-direction: column;
                text-align: center;
            }

            .author-avatar {
                margin-right: 0;
                margin-bottom: 15px;
            }

            .testimonial-text::before {
                top: -40px;
                font-size: 70px;
            }

            .testimonial-text::after {
                bottom: -60px;
                font-size: 70px;
            }

            .stars {
                margin: 15px 0;
            }

            .star {
                font-size: 1.5rem;
            }

            .carousel-btn {
                width: 40px;
                height: 40px;
                font-size: 1.1rem;
            }

            .carousel-dot {
                width: 14px;
                height: 14px;
            }

            .carousel-dot.active::after {
                width: 20px;
                height: 20px;
            }
        }

    /* Location Section */
    .location-section {
            padding: 120px 5%;
            position: relative;
            overflow: hidden;
            background-color: var(--secondary-dark);
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 3;
        }

        .section-title {
            font-size: 2.8rem;
            font-weight: 800;
            text-align: center;
            margin-bottom: 80px;
            position: relative;
        }

        .section-title span {
            color: var(--accent-blue);
        }

        .location-cards {
            display: flex;
            gap: 40px;
            margin-bottom: 60px;
            flex-wrap: wrap;
        }

        .location-card {
            flex: 1;
            min-width: 300px;
            background: var(--card-bg);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid rgba(77, 166, 255, 0.1);
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            transform: scale(1);
            filter: brightness(1);
        }

        .location-cards:hover .location-card:not(:hover) {
            transform: scale(0.95);
            filter: brightness(0.7);
        }

        .location-card:hover {
            transform: scale(1.05) !important;
            filter: brightness(1.05) !important;
            box-shadow: 0 25px 60px rgba(30, 144, 255, 0.5);
            z-index: 10;
        }

        .location-card img {
            width: 100%;
            height: 280px;
            object-fit: cover;
            transition: all 0.4s ease;
        }

        .location-card:hover img {
            transform: scale(1.05);
        }

        .location-content {
            padding: 30px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .location-content h3 {
            font-size: 1.8rem;
            color: var(--text-light);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .location-content h3 i {
            color: var(--accent-blue);
            font-size: 1.5rem;
        }

        .address-highlight {
            background-color: rgba(30, 144, 255, 0.1);
            padding: 15px;
            border-left: 4px solid var(--accent-blue);
            border-radius: 8px;
            margin-bottom: 25px;
            color: var(--text-gray);
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .description {
            font-size: 1.05rem;
            line-height: 1.7;
            margin-bottom: 25px;
            color: var(--text-gray);
            flex: 1;
        }

        .facilities-title {
            color: var(--accent-blue);
            margin-bottom: 15px;
            font-weight: 600;
            font-size: 1.2rem;
            text-align: center;
        }

        .facilities {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 30px;
            justify-content: center;
        }

        .facility-tag {
            background-color: rgba(30, 144, 255, 0.1);
            color: var(--accent-light-blue);
            padding: 10px 20px;
            border-radius: 30px;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            border: 1px solid rgba(77, 166, 255, 0.3);
            transition: all 0.3s ease;
        }

        .facility-tag:hover {
            background-color: rgba(30, 144, 255, 0.25);
            transform: translateY(-3px);
        }

        .facility-tag i {
            margin-right: 10px;
            color: var(--accent-blue);
        }

        .facility-tag.price {
            background: linear-gradient(135deg, rgba(52, 152, 219, 0.25), rgba(79, 195, 247, 0.25));
            color: var(--text-light);
            font-weight: 600;
        }

        .btn-container {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin-top: auto;
        }

        .btn {
            display: inline-block;
            background: linear-gradient(135deg, var(--accent-blue), var(--accent-light-blue));
            color: white;
            padding: 12px 30px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
            border: none;
            cursor: pointer;
            letter-spacing: 1px;
            text-align: center;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(52, 152, 219, 0.5);
        }

        .btn.outline {
            background: transparent;
            border: 2px solid var(--accent-blue);
            color: var(--accent-light-blue);
        }

        .btn.outline:hover {
            background: rgba(52, 152, 219, 0.15);
        }

        .map-container {
            margin-top: 60px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(77, 166, 255, 0.2);
            position: relative;
            z-index: 2;
        }

        .map-container iframe {
            width: 100%;
            height: 400px;
            border: none;
        }

        /* Dekoracje */
        .decorations {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            z-index: 1;
        }

        .circle {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(52, 152, 219, 0.15) 0%, rgba(52, 152, 219, 0) 70%);
        }

        .circle-1 {
            width: 300px;
            height: 300px;
            top: 10%;
            left: 5%;
        }

        .circle-2 {
            width: 400px;
            height: 400px;
            bottom: 20%;
            right: 10%;
        }

        .leaf {
            position: absolute;
            opacity: 0.15;
            color: var(--accent-light-blue);
            font-size: 8rem;
            transform: rotate(45deg);
        }

        .leaf-1 {
            top: 15%;
            right: 5%;
        }

        .leaf-2 {
            bottom: 15%;
            left: 5%;
            transform: rotate(-20deg);
        }

        .dumbbell {
            position: absolute;
            font-size: 3rem;
            color: var(--accent-blue);
            opacity: 0.1;
        }

        .dumbbell-1 {
            top: 40%;
            left: 15%;
            transform: rotate(45deg);
        }

        .dumbbell-2 {
            bottom: 30%;
            right: 20%;
        }

        .wave-top {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
        }

        .wave-top svg {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 150px;
        }

        .wave-top .shape-fill {
            fill: var(--primary-dark);
        }

        .wave-bottom {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
            transform: rotate(180deg);
        }

        .wave-bottom svg {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 150px;
        }

        .wave-bottom .shape-fill {
            fill: var(--primary-dark);
        }

        /* Responsywność */
        @media (max-width: 992px) {
            .location-cards {
                flex-direction: column;
            }

            .location-card {
                min-width: 100%;
            }

            .section-title {
                font-size: 2.3rem;
                margin-bottom: 50px;
            }

            .facilities {
                justify-content: center;
            }

            .circle-1, .circle-2 {
                display: none;
            }
        }

    /* Contact Section */
    .contact {
      background-color: var(--darker-bg);
    }

    .contact-container {
      display: flex;
      gap: 50px;
    }

    .contact-info {
      flex: 1;
    }

    .contact-info h3 {
      font-size: 1.8rem;
      margin-bottom: 20px;
      color: var(--accent-light);
    }

    .contact-info p {
      color: var(--text-gray);
      margin-bottom: 30px;
    }

    .contact-details {
      margin-top: 30px;
    }

    .contact-item {
      display: flex;
      align-items: flex-start;
      margin-bottom: 25px;
    }

    .contact-item i {
      font-size: 1.5rem;
      color: var(--accent-blue);
      margin-right: 20px;
      min-width: 30px;
    }

    .contact-text h4 {
      font-size: 1.1rem;
      margin-bottom: 5px;
    }

    .contact-text p, .contact-text a {
      color: var(--text-gray);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .contact-text a:hover {
      color: var(--accent-blue);
    }

    .contact-form {
      flex: 1;
      background-color: var(--card-bg);
      padding: 40px;
      border-radius: 10px;
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    }

    .form-group {
      margin-bottom: 25px;
    }

    .form-group label {
      display: block;
      margin-bottom: 8px;
      font-weight: 500;
      color: var(--text-light);
    }

    .form-control {
      width: 100%;
      padding: 14px 20px;
      background-color: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 5px;
      color: var(--text-light);
      font-size: 1rem;
      transition: border-color 0.3s ease;
    }

    .form-control:focus {
      outline: none;
      border-color: var(--accent-blue);
    }

    textarea.form-control {
      min-height: 150px;
      resize: vertical;
    }

    /* Footer */
    footer {
      background: var(--darker-bg);
      color: var(--text-gray);
      padding: 70px 0 0;
      position: relative;
      overflow: hidden;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
      margin-bottom: 50px;
      position: relative;
      z-index: 1;
    }

    .footer-column h3 {
      font-size: 1.5rem;
      color: var(--text-light);
      margin-bottom: 25px;
      position: relative;
      padding-bottom: 15px;
    }

    .footer-column h3::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 50px;
      height: 3px;
      background: var(--accent-blue);
      border-radius: 2px;
    }

    .footer-column p {
      line-height: 1.8;
      margin-bottom: 20px;
      color: var(--text-gray);
    }

    .contact-info-list {
      list-style: none;
    }

    .contact-info-list li {
      display: flex;
      align-items: flex-start;
      margin-bottom: 15px;
      line-height: 1.6;
    }

    .contact-info-list i {
      color: var(--accent-blue);
      margin-right: 15px;
      font-size: 1.2rem;
      min-width: 20px;
    }

    .social-links {
      display: flex;
      gap: 15px;
      margin-top: 20px;
    }

    .social-links a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 45px;
      height: 45px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.08);
      color: var(--text-light);
      font-size: 1.2rem;
      transition: var(--transition);
    }

    .social-links a:hover {
      background: var(--accent-blue);
      transform: translateY(-5px);
    }

    .footer-links {
      list-style: none;
    }

    .footer-links li {
      margin-bottom: 12px;
    }

    .footer-links a {
      display: block;
      padding: 8px 0;
      transition: var(--transition);
      position: relative;
      padding-left: 25px;
    }

    .footer-links a::before {
      content: '→';
      position: absolute;
      left: 0;
      color: var(--accent-blue);
      transition: transform 0.3s ease;
    }

    .footer-links a:hover {
      color: var(--text-light);
      padding-left: 30px;
    }

    .footer-links a:hover::before {
      transform: translateX(5px);
    }

    .footer-bottom {
      padding: 25px 0;
      text-align: center;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      position: relative;
      z-index: 1;
      font-size: 0.9rem;
    }

    /* Cookie Banner */
    .cookie-banner {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background-color: var(--card-bg);
      color: var(--text-gray);
      padding: 15px;
      text-align: center;
      z-index: 1000;
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 15px;
    }

    .cookie-banner p {
      margin: 0;
      font-size: 0.95rem;
    }

    .cookie-banner a {
      color: var(--accent-light);
      text-decoration: underline;
    }

    .cookie-banner button {
      padding: 10px 25px;
      background-color: var(--accent-blue);
      border: none;
      color: white;
      cursor: pointer;
      border-radius: 50px;
      font-weight: 600;
      transition: var(--transition);
    }

    .cookie-banner button:hover {
      background-color: var(--accent-light);
      transform: translateY(-2px);
    }

    /* Animations */
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

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

    /* Responsywność */
    @media (max-width: 992px) {
      .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 0 60px;
      }

      .hero-content {
        padding: 0 20px;
        align-items: center;
        text-align: center;
        margin-bottom: 40px;
      }

      .hero-content h1 {
        margin-top: 0;
      }

      .hero-content p {
        max-width: 100%;
      }

      .features-container {
        justify-content: center;
      }

      .about .container {
        flex-direction: column;
      }

      .about-content h2 {
        text-align: center;
      }

      .contact-container {
        flex-direction: column;
      }

      .location-card {
        flex-direction: column;
      }

      .location-card img {
        width: 100%;
        height: 300px;
      }
    }

    @media (max-width: 768px) {
      section {
        padding: 80px 0;
      }

      .section-title {
        font-size: 2rem;
      }

      .service-card {
        padding: 30px 20px;
      }
    }

    @media (max-width: 480px) {
      .section-title {
        font-size: 1.8rem;
      }

      .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
      }

      .feature-item {
        width: 100%;
        justify-content: center;
      }

      .btn-container {
        flex-direction: column;
      }
    }

</style>