        @font-face {
        font-family: 'Caviar Dreams Bold Local';
        src: url('../fonts/CaviarDreams_Bold.woff2') format('woff2');
        font-weight: 700;
        font-style: normal;
        font-display: swap;
        }
        @font-face {
        font-family: 'Novartis Headline';
        src: url('../fonts/Novartis.woff2') format('woff2');
        font-weight: 400;
        font-style: normal;
        font-display: swap;
        }
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        :root {
            --bg-color: #181818;
            --bg-secondary: #0a0a0a;
            --block-bg: linear-gradient(135deg, #2e2e2e, #3f3f3f, #2e2e2e);
            --text-color: #f0f0f0;
            --text-secondary: #ccc;
            --button-bg: #4a4a4a;
            --button-hover: #5a5a5a;
            --border-color: rgba(255, 255, 255, 0.1);
            --shadow-color: rgba(0, 0, 0, 0.4);
            --shadow-hover: rgba(255, 255, 255, 0.15);
            --copyright-bg: #1f1f1f;
            --news-bg: rgba(255, 255, 255, 0.05);
            --news-hover: rgba(255, 255, 255, 0.08);
            --modal-bg: #292929;
            --menu-bg: #222;
            --menu-border: #383838;
            --accent-color: #008cff;
            --accent-hover: #006bbd;
            --accent-light: rgba(0, 140, 255, 0.1);
            transition: background-color 0.3s ease, color 0.3s ease
        }
        @media (prefers-color-scheme: light) {
            :root {
                --bg-color: #f5f5f5;
                --bg-secondary: #e0e0e0;
                --block-bg: linear-gradient(135deg, #ffffff, #eaeaea);
                --text-color: #333333;
                --text-secondary: #666666;
                --button-bg: #6a6a6a;
                --button-hover: #7a7a7a;
                --border-color: rgba(0, 0, 0, 0.1);
                --shadow-color: rgba(0, 0, 0, 0.2);
                --shadow-hover: rgba(0, 0, 0, 0.25);
                --copyright-bg: #d0d0d0;
                --news-bg: rgba(0, 0, 0, 0.05);
                --news-hover: rgba(0, 0, 0, 0.08);
                --modal-bg: #f9f9f9;
                --menu-bg: #f0f0f0;
                --menu-border: #d0d0d0;
                --accent-color: #007bff;
                --accent-hover: #0056b3;
                --accent-light: rgba(0, 123, 255, 0.1);
            }
            body {
                --text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
            }
            .snowflake {
                color: #ccc;
                opacity: 0.6;
            }
        }
        body {
            font-family: 'Caviar Dreams Bold Local', system-ui, sans-serif;
            background: linear-gradient(to bottom, var(--bg-color), var(--bg-secondary));
            color: var(--text-color);
            text-align: center;
            line-height: 1.7;
            min-height: 100vh;
            scroll-behavior: smooth;
            overflow-y: scroll;
            --text-shadow: 1px 1px 5px rgba(255, 255, 255, 0.1);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            text-rendering: optimizeLegibility;
        }
        .container {
            max-width: 1000px;
            margin: auto;
            padding: 0 20px;
        }
        h1 {
            font-family: 'Novartis Headline', system-ui, sans-serif;
            font-size: clamp(2rem, 5vw, 3rem);
            margin-bottom: clamp(15px, 4vw, 25px);
            text-shadow: 2px 2px 10px var(--text-shadow);
            animation: fadeInDown 1.5s ease-in-out;
            letter-spacing: 1px;
            cursor: default;
            font-weight: 100;
            line-height: 1.2;
        }
        a {
            color: var(--accent-color);
            text-decoration: none;
            position: relative;
            transition: color 0.3s ease;
        }
        a:not(.social-icons a)::after {
            content: '';
            position: absolute;
            width: 100%;
            transform: scaleX(0);
            height: 2px;
            bottom: -2px;
            left: 0;
            background-color: var(--accent-hover);
            transform-origin: bottom right;
            transition: transform 0.25s ease-out;
        }
        a:hover {
            color: var(--accent-hover);
        }
        a:hover:not(.social-icons a)::after {
            transform: scaleX(1);
            transform-origin: bottom left;
        }
        a:focus, button:focus {
            outline: 2px solid var(--button-hover);
            outline-offset: 2px;
        }
        .date {
            font-size: clamp(0.9rem, 2vw, 1rem);
            color: var(--text-secondary);
            margin-bottom: clamp(15px, 3vw, 20px);
            animation: fadeIn 1.5s ease-in-out;
            cursor: default;
            font-weight: 400;
            line-height: 1.4;
        }
        .block {
            background: var(--block-bg);
            border-radius: 15px;
            padding: 30px;
            margin: 40px 0;
            box-shadow: 0px 6px 15px var(--shadow-color);
            animation: fadeInUp 0.8s ease-in-out;
            transition: transform 0.4s ease, box-shadow 0.4s ease, opacity 0.4s ease;
            border: 1px solid var(--border-color);
            opacity: 0;
            transform: translateY(30px);
        }
        .block.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .block:hover {
            transform: translateY(-10px);
            box-shadow: 0px 12px 30px var(--shadow-hover);
            transition: transform 0.4s ease, box-shadow 0.6s ease;
        }
        h2 {
            font-family: 'Novartis Headline', system-ui, sans-serif;
            color: var(--text-color);
            margin-bottom: clamp(15px, 3vw, 20px);
            font-size: clamp(1.5rem, 4vw, 2.2rem);
            cursor: default;
            font-weight: 100;
            text-shadow: var(--text-shadow);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: clamp(10px, 2vw, 15px);
            line-height: 1.3;
        }
        h2 .fas {
            color: var(--accent-color);
            font-size: 2rem;
            padding-bottom: 5px;
        }
        h3 {
            font-family: 'Novartis Headline', system-ui, sans-serif;
            font-weight: 100;
        }
        p {
            font-family: 'Caviar Dreams Bold Local', sans-serif;
            font-size: clamp(1rem, 2.5vw, 1.2rem);
            color: var(--text-secondary);
            cursor: default;
            font-weight: 400;
            line-height: 1.6;
        }
        .gallery-container {
            margin-bottom: 30px;
            overflow-x: auto;
            white-space: nowrap;
            -webkit-overflow-scrolling: touch;
            padding: 0 12px 15px; /* add horizontal padding so outer image shadows/borders are visible */
            scroll-behavior: smooth;
            position: relative;
            scrollbar-width: thin;
            scrollbar-color: var(--accent-color) var(--menu-border);
        }
        .gallery-nav {
            display: none;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background: rgba(0, 0, 0, 0.7);
            color: white;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            font-size: 18px;
            z-index: 5;
            transition: background 0.3s ease;
        }
        .gallery-nav:hover {
            background: rgba(0, 0, 0, 0.9);
        }
        .gallery-nav.prev {
            left: -20px;
        }
        .gallery-nav.next {
            right: -20px;
        }
        @media (min-width: 769px) {
            .gallery-nav {
                display: block;
            }
        }
        .gallery-container::-webkit-scrollbar {
            height: 8px;
        }
        .gallery-container::-webkit-scrollbar-track {
            background: var(--menu-border);
            border-radius: 4px;
        }
        .gallery-container::-webkit-scrollbar-thumb {
            background: var(--accent-color);
            border-radius: 4px;
        }
        .gallery-container::-webkit-scrollbar-thumb:hover {
            background: var(--accent-hover);
        }
        .gallery {
            display: inline-flex;
            gap: 15px;
            padding: 10px 0;
        }
        .gallery img {
            width: 200px;
            height: 200px;
            flex-shrink: 0;
            border-radius: 10px;
            cursor: pointer;
            transition: transform 0.4s ease, box-shadow 0.4s ease, filter 0.4s ease, outline 0.2s ease;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
            object-fit: cover;
            opacity: 0;
            animation: fadeInImage 0.6s ease forwards;
        }
        .gallery img:focus {
            outline: 3px solid var(--accent-color);
            outline-offset: 3px;
        }
        .gallery img.loaded {
            opacity: 1;
        }
        .gallery img:hover {
            transform: scale(1.08) rotate(2deg);
            box-shadow: 0 8px 16px var(--shadow-hover);
            filter: brightness(1.1);
        }
        @keyframes fadeInImage {
            from { opacity: 0; transform: scale(0.9); }
            to { opacity: 1; transform: scale(1); }
        }
        .map-container {
            height: 400px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0px 6px 15px var(--shadow-color);
        }
        .map-container iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }
        @keyframes fadeInDown {
             from { opacity: 0; transform: translateY(-20px); }
             to { opacity: 1; transform: translateY(0); }
         }
         @keyframes fadeInUp {
             from { opacity: 0; transform: translateY(20px); }
             to { opacity: 1; transform: translateY(0); }
         }
         @keyframes fadeIn {
              from { opacity: 0; }
              to { opacity: 1; }
          }
        .copyright {
            margin-top: clamp(30px, 8vw, 50px);
            padding: clamp(10px, 3vw, 15px);
            background-color: var(--copyright-bg);
            border-radius: 15px;
            font-size: clamp(0.8rem, 2vw, 0.9rem);
            color: var(--text-secondary);
            cursor: default;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: clamp(8px, 2vw, 10px);
            line-height: 1.4;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border-width: 0;
        }
        .news-item {
            margin-bottom: 20px;
            padding: 20px;
            text-align: left;
            background-color: var(--news-bg);
            border-radius: 10px;
            transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
            opacity: 0;
            transform: translateY(20px);
            animation: slideInNews 0.6s ease forwards;
            border-left: 4px solid var(--accent-color);
            box-shadow: 0 2px 5px var(--shadow-color);
            word-wrap: break-word;
            overflow-wrap: break-word;
        }
        .news-item:nth-child(1) { animation-delay: 0.1s; }
        .news-item:nth-child(2) { animation-delay: 0.2s; }
        .news-item:nth-child(3) { animation-delay: 0.3s; }
        .news-item:nth-child(4) { animation-delay: 0.4s; }
        .news-item:nth-child(5) { animation-delay: 0.5s; }
        .news-item:nth-child(6) { animation-delay: 0.6s; }
        .news-item:nth-child(7) { animation-delay: 0.7s; }
        .news-item:nth-child(8) { animation-delay: 0.8s; }
        .news-item:nth-child(9) { animation-delay: 0.9s; }
        .news-item:last-child {
            border-bottom: none;
        }
        .news-item:hover {
            background-color: var(--news-hover);
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 8px 16px var(--shadow-color);
        }
        @keyframes slideInNews {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .news-item h3 {
            font-family: 'Novartis Headline', system-ui, sans-serif;
            font-size: clamp(1.1rem, 2.5vw, 1.3rem);
            color: var(--text-color);
            margin-bottom: clamp(5px, 1vw, 8px);
            cursor: default;
            font-weight: 100;
            line-height: 1.3;
        }
        .news-item .news-date {
            font-size: clamp(0.9rem, 2vw, 1rem);
            color: var(--text-secondary);
            margin-bottom: clamp(8px, 2vw, 12px);
            cursor: default;
            font-weight: 400;
            animation: none;
            line-height: 1.4;
        }
        .news-item p {
            font-family: 'Caviar Dreams Bold Local', sans-serif;
            font-size: clamp(0.9rem, 2vw, 1rem);
            color: var(--text-secondary);
            cursor: default;
            font-weight: 400;
            line-height: 1.5;
        }
        .news-container {
            max-height: 500px;
            overflow-y: auto;
            padding-right: 10px;
        }
        .block#news {
            padding: 30px;
        }
        .news-container::-webkit-scrollbar {
            width: 8px;
        }
        .news-container::-webkit-scrollbar-track {
            background: var(--menu-border);
            border-radius: 4px;
        }
        .news-container::-webkit-scrollbar-thumb {
            background: var(--accent-color);
            border-radius: 4px;
        }
        .news-container::-webkit-scrollbar-thumb:hover {
            background: var(--accent-hover);
        }
        .modal {
            display: none;
            position: fixed;
            z-index: 100;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background-color: rgba(0,0,0,0.95);
            animation: fadeIn 0.3s ease-in-out;
            user-select: none;
        }
        .modal-content {
            background-color: var(--modal-bg);
            margin: 2% auto;
            padding: 30px;
            border: 1px solid var(--border-color);
            width: 95%;
            max-width: 900px;
            border-radius: 15px;
            text-align: center;
            position: relative;
            animation: zoomIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: 0 10px 30px var(--shadow-color);
            transform-origin: center;
        }
        @keyframes zoomIn {
            from { opacity: 0; transform: scale(0.8) rotate(-2deg); }
            to { opacity: 1; transform: scale(1) rotate(0deg); }
        }
        .modal-content img {
            max-width: 100%;
            max-height: 85vh;
            display: block;
            margin: 0 auto;
            border-radius: 10px;
            box-shadow: 0 4px 10px var(--shadow-color);
        }
        .modal.fade-out {
            animation: fadeOut 0.3s ease-in-out forwards;
        }
        @keyframes fadeOut {
            from { opacity: 1; }
            to { opacity: 0; }
        }
        .modal-content.zoom-out {
            animation: zoomOut 0.3s ease-in-out forwards;
        }
        @keyframes zoomOut {
            from { opacity: 1; transform: scale(1); }
            to { opacity: 0; transform: scale(0.9); }
        }
        .close {
            color: var(--text-color);
            position: absolute;
            top: -10px;
            right: 10px;
            font-size: 35px;
            font-weight: bold;
            cursor: pointer;
            transition: color 0.3s ease, transform 0.3s ease;
        }
        .close:hover,
        .close:focus {
            color: var(--text-secondary);
            text-decoration: none;
            cursor: pointer;
        }
        .nav-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            font-size: 2rem;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            transition: background 0.3s ease;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .nav-arrow:hover {
            background: rgba(0, 0, 0, 0.8);
        }
        .prev-arrow {
            left: 10px;
        }
        .next-arrow {
            right: 10px;
        }
        @media (max-width: 768px) {
            .nav-arrow {
                width: 40px;
                height: 40px;
                font-size: 1.5rem;
            }
        }
        .contact-container {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            gap: 30px;
            text-align: left;
        }
        .contact-text p {
            display: flex;
            align-items: center;
            gap: clamp(8px, 2vw, 12px);
            font-size: clamp(1rem, 2.5vw, 1.1rem);
            line-height: 1.5;
        }
        .contact-text p strong {
            font-weight: 900;
        }
        .contact-text p a[href^="tel:"] {
            white-space: nowrap;
            word-break: keep-all;
        }
        .contact-text p .fas {
            color: var(--accent-color);
            width: 20px;
            text-align: center;
            font-size: 1.1rem;
        }
        .contact-text {
            flex-grow: 1;
            text-align: left;
            padding-right: 0;
            cursor: default;
        }
        .contact-image {
            flex-shrink: 0;
            text-align: center;
        }
        .contact-image img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid var(--accent-color);
            box-shadow: 0 4px 10px var(--shadow-color);
        }
        .contact-text p {
            font-family: 'Caviar Dreams Bold Local', sans-serif;
            cursor: text;
        }
        .contact-text a {
            color: var(--accent-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .contact-text a:hover {
            color: var(--accent-hover);
        }
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 100;
            display: none;
            backdrop-filter: blur(5px);
            transition: opacity 0.3s ease;
            opacity: 0;
        }
        .overlay.open {
            display: block;
            opacity: 1;
        }
        .social-icons {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 0px;
            margin-bottom: 0px;
        }
        .social-icons a {
            color: var(--text-secondary);
            font-size: 24px;
            transition: color 0.4s ease, transform 0.4s ease, filter 0.4s ease;
            display: inline-block;
            border-radius: 50%;
            padding: 8px;
            margin: 0 4px;
        }
        .social-icons a:hover {
            color: var(--accent-color);
            transform: translateY(-5px) scale(1.1);
            filter: drop-shadow(0 4px 8px var(--shadow-color));
        }
        @media (max-width: 768px) {
            .social-icons {
                gap: 15px;
            }
            .social-icons a {
                font-size: 20px;
            }
        }
        @media (max-width: 768px) {
            .container {
                padding: 0 15px;
                max-width: 100%;
            }
            body {
                line-height: 1.8;
                -webkit-text-size-adjust: 100%;
                -ms-text-size-adjust: 100%;
            }
            h1 {
                font-size: clamp(1.5rem, 6vw, 2rem);
                margin-bottom: 15px;
                line-height: 1.3;
                padding: 0 5px;
            }
            h2 {
                font-size: clamp(1.3rem, 5vw, 1.6rem);
                margin-bottom: 12px;
                line-height: 1.4;
                gap: 8px;
            }
            h2 .fas {
                font-size: 1.3rem;
            }
            p {
                font-size: clamp(0.95rem, 3vw, 1.1rem);
                line-height: 1.7;
                word-wrap: break-word;
                overflow-wrap: break-word;
            }
            .block {
                padding: 20px 15px;
                margin: 20px 0;
                border-radius: 12px;
            }
            .gallery-container {
                padding-bottom: 10px;
                margin: 0 -15px;
                padding-left: 15px;
                padding-right: 15px;
            }
            .gallery {
                gap: 12px;
            }
            .gallery img {
                width: 160px;
                height: 160px;
                min-width: 160px;
            }
            .map-container {
                height: 280px;
                border-radius: 10px;
                margin: 0 -15px;
            }
            .map-container iframe {
                border-radius: 10px;
            }
            .contact-container {
                flex-direction: column;
                gap: 20px;
                align-items: center;
            }
            .contact-text {
                text-align: center;
                width: 100%;
            }
            .contact-text p {
                font-size: clamp(0.9rem, 3vw, 1rem);
                word-wrap: break-word;
                overflow-wrap: break-word;
                justify-content: center;
                text-align: center;
            }
            .contact-image img {
                width: 120px;
                height: 120px;
                border-width: 3px;
            }
            .modal-content {
                padding: 20px 15px;
                width: 95%;
                max-width: 95%;
                margin: 5% auto;
                max-height: 90vh;
            }
            .modal-content img {
                max-height: 75vh;
                width: auto;
            }
            .close {
                font-size: 32px;
                top: 5px;
                right: 10px;
                display: block;
                z-index: 101;
            }
            .nav-arrow {
                width: 35px;
                height: 35px;
                font-size: 1.2rem;
                padding: 0;
            }
            .prev-arrow {
                left: 5px;
            }
            .next-arrow {
                right: 5px;
            }
            .search-input {
                font-size: 16px; /* Prevents zoom on iOS */
                padding: 12px 70px 12px 15px;
                width: 100%;
                box-sizing: border-box;
            }
            .search-icon {
                right: 50px;
                font-size: 1rem;
            }
            .search-clear {
                right: 12px;
                width: 28px;
                height: 28px;
                font-size: 0.95rem;
            }
            .block#news {
                padding: 15px 12px;
            }
            .news-item {
                padding: 12px;
                margin-bottom: 12px;
                border-left-width: 3px;
            }
            .news-item h3 {
                font-size: clamp(0.95rem, 3.5vw, 1.1rem);
                margin-bottom: 6px;
            }
            .news-item p {
                font-size: clamp(0.85rem, 2.8vw, 0.95rem);
                word-wrap: break-word;
                overflow-wrap: break-word;
                line-height: 1.5;
            }
            .news-item .news-date {
                font-size: clamp(0.8rem, 2.5vw, 0.9rem);
                margin-bottom: 8px;
            }
            .search-result-item {
                padding: 12px;
            }
            .search-result-item p {
                word-wrap: break-word;
                overflow-wrap: break-word;
            }
            .news-container {
                max-height: 400px;
                padding-right: 8px;
            }
            .copyright {
                padding: 15px 10px;
                font-size: clamp(0.75rem, 2.5vw, 0.9rem);
            }
        }
        @media (max-width: 600px) {
            .container {
                padding: 0 12px;
            }
            .gallery img {
                width: 150px;
                height: 150px;
                min-width: 150px;
            }
            .gallery-container {
                margin: 0 -12px;
                padding-left: 12px;
                padding-right: 12px;
            }
            .map-container {
                margin: 0 -12px;
                height: 250px;
            }
            .block {
                padding: 18px 12px;
                margin: 18px 0;
            }
            .contact-text p {
                font-size: 0.95rem;
                line-height: 1.7;
            }
            .contact-image img {
                width: 110px;
                height: 110px;
            }
            .block#news {
                padding: 12px 10px;
            }
            .news-item {
                padding: 10px;
                margin-bottom: 10px;
                border-left-width: 3px;
            }
            .news-item h3 {
                font-size: clamp(0.9rem, 3.2vw, 1rem);
                line-height: 1.3;
                margin-bottom: 5px;
            }
            .news-item p {
                font-size: clamp(0.8rem, 2.5vw, 0.9rem);
                line-height: 1.5;
            }
            .news-item .news-date {
                font-size: clamp(0.75rem, 2.2vw, 0.85rem);
                margin-bottom: 6px;
            }
            .news-container {
                max-height: 350px;
                padding-right: 6px;
            }
            .search-input {
                font-size: 16px; /* Prevents zoom on iOS */
                padding: 11px 65px 11px 12px;
            }
            .search-clear {
                right: 10px;
                width: 26px;
                height: 26px;
            }
            .search-result-item {
                padding: 10px;
            }
            .search-result-item h4 {
                font-size: 1rem;
                line-height: 1.4;
            }
            .search-result-item p {
                font-size: 0.9rem;
                line-height: 1.6;
            }
            .modal-content {
                padding: 15px 12px;
                width: 98%;
                max-width: 98%;
            }
            .nav-arrow {
                width: 32px;
                height: 32px;
                font-size: 1.1rem;
            }
            .copyright {
                font-size: 0.85rem;
                line-height: 1.6;
                padding: 12px 8px;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 10px;
            }
            h1 {
                font-size: clamp(1.4rem, 7vw, 1.8rem);
                line-height: 1.2;
                margin-bottom: 12px;
            }
            h2 {
                font-size: clamp(1.2rem, 5.5vw, 1.4rem);
                line-height: 1.3;
                gap: 6px;
            }
            h2 .fas {
                font-size: 1.2rem;
            }
            p {
                font-size: clamp(0.85rem, 3.5vw, 0.95rem);
                line-height: 1.6;
            }
            .block {
                padding: 15px 10px;
                margin: 15px 0;
                border-radius: 10px;
            }
            .gallery img {
                width: 130px;
                height: 130px;
                min-width: 130px;
            }
            .gallery {
                gap: 8px;
            }
            .gallery-container {
                margin: 0 -10px;
                padding-left: 10px;
                padding-right: 10px;
            }
            .map-container {
                margin: 0 -10px;
                height: 220px;
                border-radius: 8px;
            }
            .contact-text p {
                font-size: clamp(0.85rem, 3.5vw, 0.9rem);
                line-height: 1.6;
            }
            .contact-image img {
                width: 100px;
                height: 100px;
                border-width: 2px;
            }
            .contact-container {
                gap: 15px;
            }
            .block#news {
                padding: 12px 8px;
            }
            .news-item {
                padding: 10px 8px;
                margin-bottom: 10px;
                border-left-width: 2px;
                border-radius: 8px;
            }
            .news-item h3 {
                font-size: clamp(0.85rem, 3vw, 0.95rem);
                line-height: 1.3;
                margin-bottom: 4px;
            }
            .news-item p {
                font-size: clamp(0.75rem, 2.5vw, 0.85rem);
                line-height: 1.5;
            }
            .news-item .news-date {
                font-size: clamp(0.7rem, 2.2vw, 0.8rem);
                margin-bottom: 5px;
            }
            .news-container {
                max-height: 300px;
                padding-right: 5px;
            }
            .search-input {
                font-size: 16px; /* Prevents zoom on iOS */
                padding: 10px 60px 10px 12px;
            }
            .search-icon {
                right: 45px;
                font-size: 0.95rem;
            }
            .search-clear {
                right: 8px;
                width: 24px;
                height: 24px;
                font-size: 0.9rem;
            }
            .search-result-item {
                padding: 10px 8px;
            }
            .search-result-item h4 {
                font-size: clamp(0.9rem, 3.5vw, 0.95rem);
                line-height: 1.3;
            }
            .search-result-item p {
                font-size: clamp(0.8rem, 3vw, 0.85rem);
                line-height: 1.5;
            }
            .modal-content {
                padding: 15px 10px;
                width: 100%;
                max-width: 100%;
                margin: 2% auto;
                border-radius: 8px;
            }
            .modal-content img {
                max-height: 70vh;
            }
            .close {
                font-size: 28px;
                top: 5px;
                right: 8px;
            }
            .nav-arrow {
                width: 30px;
                height: 30px;
                font-size: 1rem;
            }
            .prev-arrow {
                left: 3px;
            }
            .next-arrow {
                right: 3px;
            }
            .copyright {
                font-size: clamp(0.75rem, 3vw, 0.8rem);
                padding: 12px 8px;
                line-height: 1.5;
            }
            .social-icons {
                gap: 12px;
            }
            .social-icons a {
                font-size: 18px;
                padding: 6px;
            }
            .date {
                font-size: clamp(0.85rem, 3vw, 0.9rem);
                line-height: 1.4;
            }
            .block#news {
                padding: 10px 6px;
            }
            .news-item {
                padding: 8px 6px;
                margin-bottom: 8px;
            }
            .news-item h3 {
                font-size: 0.85rem;
                margin-bottom: 3px;
            }
            .news-item p {
                font-size: 0.75rem;
            }
            .news-item .news-date {
                font-size: 0.7rem;
                margin-bottom: 4px;
            }
            .news-container {
                max-height: 280px;
                padding-right: 4px;
            }
        }
        /* Anniversary Styles */
        .anniversary-badge {
            display: inline-block;
            background: linear-gradient(135deg, #ffd700, #ffa500);
            color: #000;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: bold;
            margin-bottom: 20px;
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
            border: 2px solid #fff;
            animation: anniversary-pulse 2s infinite;
            display: none; /* Hidden by default, shown via JS on March 7 */
        }
        @keyframes anniversary-pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        .confetti {
            position: fixed;
            width: 10px;
            height: 10px;
            top: -20px;
            z-index: 10001;
            pointer-events: none;
            animation: confetti-fall linear forwards;
        }
        @keyframes confetti-fall {
            0% { transform: translateY(0) rotate(0deg); opacity: 1; }
            100% { transform: translateY(100vh) rotate(720deg); opacity: 0; }
        }
        /* Winter Snowflakes */
        .snowflake {
            position: absolute;
            top: -100px;
            color: #fff;
            font-size: 1em;
            pointer-events: none;
            animation: fall linear infinite;
            opacity: 0.8;
            z-index: 10000;
        }
        @keyframes fall {
            0% {
                transform: translateY(0) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 0.8;
            }
            90% {
                opacity: 0.8;
            }
            100% {
                transform: translateY(calc(100vh + 100px)) rotate(360deg);
                opacity: 0;
            }
        }
        /* Extra small devices (phones, 360px and down) */
        @media (max-width: 360px) {
            .container {
                padding: 0 8px;
            }
            h1 {
                font-size: 1.4rem;
            }
            h2 {
                font-size: 1.15rem;
            }
            .block {
                padding: 12px 8px;
                margin: 12px 0;
            }
            .gallery img {
                width: 120px;
                height: 120px;
                min-width: 120px;
            }
            .gallery-container {
                margin: 0 -8px;
                padding-left: 8px;
                padding-right: 8px;
            }
            .map-container {
                margin: 0 -8px;
                height: 200px;
            }
            .contact-image img {
                width: 90px;
                height: 90px;
            }
            .modal-content {
                padding: 12px 8px;
            }
            .nav-arrow {
                width: 28px;
                height: 28px;
                font-size: 0.9rem;
            }
            .copyright {
                padding: 10px 6px;
            }
        }
        /* Touch device optimizations */
        @media (hover: none) and (pointer: coarse) {
            .gallery img {
                cursor: pointer;
            }
            .gallery img:hover {
                transform: none; /* Disable hover effects on touch */
            }
            .block:hover {
                transform: none; /* Disable hover effects on touch */
            }
            .nav-arrow {
                min-width: 44px; /* iOS touch target minimum */
                min-height: 44px;
            }
            .close {
                min-width: 44px;
                min-height: 44px;
                display: flex;
                align-items: center;
                justify-content: center;
            }
            .search-input {
                min-height: 44px; /* Better touch target */
            }
        }
        /* Landscape orientation on mobile */
        @media (max-width: 768px) and (orientation: landscape) {
            .map-container {
                height: 300px;
            }
            .modal-content img {
                max-height: 80vh;
            }
            .block#news {
                padding: 15px 10px;
            }
            .news-item {
                padding: 10px;
                margin-bottom: 10px;
            }
            .news-container {
                max-height: 350px;
                padding-right: 6px;
            }
        }
.skip-links {
    position: absolute;
    left: -9999px;
}
.skip-links a {
    display: block;
    padding: 10px;
    background: var(--button-bg);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 5px;
    margin-bottom: 5px;
}
.skip-links a:focus {
    position: static;
    left: auto;
}
.search-container {
    margin-top: 20px;
    position: relative;
}
.search-input {
    width: 100%;
    padding: 12px 80px 12px 20px;
    border: 1px solid var(--border-color);
    border-radius: 25px;
    background: var(--bg-color);
    color: var(--text-color);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.search-icon {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    font-size: 1.1rem;
    pointer-events: none;
    transition: color 0.3s ease;
}
.search-clear {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 5px;
    display: none;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.search-clear:hover {
    background: var(--accent-light);
    color: var(--accent-color);
}
.search-clear.visible {
    display: flex;
}
.search-input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 10px var(--accent-light);
}
.search-input:focus + .search-icon {
    color: var(--accent-color);
}
.search-results-header {
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: none;
}
.search-results-header.visible {
    display: block;
}
.search-results {
    margin-top: 20px;
}
.search-result-item {
    padding: 12px;
    border-bottom: 1px solid var(--border-color);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s, transform 0.3s, background-color 0.2s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
    border-radius: 8px;
    margin-bottom: 8px;
    cursor: pointer;
}
.search-result-item.show {
    opacity: 1;
    transform: translateY(0);
}
.search-result-item:hover {
    background-color: var(--news-bg);
}
.search-result-item h4 {
    margin: 0 0 8px 0;
    font-size: 1.1rem;
}
.search-result-item h4 a {
    color: var(--text-color);
    text-decoration: none;
    display: block;
}
.search-result-item h4 a:hover {
    color: var(--accent-color);
}
.search-result-item p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}
.search-highlight {
    background-color: var(--accent-light);
    color: var(--accent-color);
    font-weight: 600;
    padding: 2px 4px;
    border-radius: 3px;
}
.search-no-results {
    padding: 20px;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.95rem;
    display: none;
}
.search-no-results.visible {
    display: block;
}
.block#description {
    position: relative;
    background-size: cover;
    background-position: center;
    color: white;
}
@media (prefers-color-scheme: light) {
    .block#description {
        background-image: none;
        color: var(--text-color);
    }
    .block#description h2, .block#description p {
        color: var(--text-color);
    }
}
@media (prefers-color-scheme: dark) {
    .block#description h2, .block#description p {
        color: white;
    }
}
.block#contacts {
    background: var(--accent-light);
    border: 1px solid var(--accent-color);
}
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px var(--shadow-color);
    transition: background 0.3s ease, transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
    z-index: 50;
    opacity: 0;
    transform: translateY(20px);
}
.scroll-to-top.visible {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}
.scroll-to-top:hover {
    background: var(--accent-hover);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 16px var(--shadow-hover);
}
.scroll-to-top:focus {
    outline: 2px solid var(--button-hover);
    outline-offset: 2px;
}
.scroll-to-top:active {
    transform: translateY(-3px) scale(1.05);
}
@media (max-width: 768px) {
    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 1.1rem;
    }
}
@media (max-width: 480px) {
    .scroll-to-top {
        width: 40px;
        height: 40px;
        bottom: 15px;
        right: 15px;
        font-size: 1rem;
    }
}
/* Hide modal close button on phones - REMOVED */
/* @media (max-width: 768px) {
    .modal .close {
        display: none !important;
    }
}*/
.modal-caption {
    margin-top: 10px;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.4;
}
.mobile-instruction {
    display: none;
    text-align: center;
    margin-top: 10px;
    color: var(--text-secondary);
    font-size: 0.8rem;
}
@media (max-width: 768px) {
    .mobile-instruction {
        display: block;
    }
}