        :root {
            --primary-color: #A23659;
            --primary-color-light: #CF4C7F;
            --secondary-color: #222222;
            --light-gray: #f8f9fa;
            --medium-gray: #e9ecef;
            --dark-gray: #495057;
            --text-color: #212529;
            --white: #ffffff;
            --shadow: 0 2px 10px rgba(0,0,0,0.1);
            --border-radius: 8px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Open Sans', sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            font-size: 16px;
        }

        /* Focus management - only show focus outline for keyboard navigation */
        .js-focus-visible *:focus:not(.focus-visible) {
            outline: none;
        }

        /* Skip to content link for accessibility */
        .skip-link {
            position: absolute;
            top: -100px;
            left: 6px;
            background: var(--secondary-color);
            color: white;
            padding: 8px 12px;
            text-decoration: none;
            border-radius: 4px;
            z-index: 1000;
            font-weight: 600;
            border: 2px solid white;
            transition: top 0.2s ease;
        }

        .skip-link:focus {
            top: 6px;
        }

        /* Container system */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        /* Header */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
}

        .top-bar {
            background: var(--secondary-color);
            color: white;
            padding: 0.5rem 0;
            font-size: 0.9rem;
        }

        .top-bar a {
            color: white;
            text-decoration: none;
            margin: 0 1rem;
        }

        .top-bar a:hover {
            color: #F2F2F2;
        }

        .text-right {
            text-align: right;
        }

        .main-header {
            padding: 1rem 0;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo img {
            max-width: 200px;
            height: auto;
        }

        /* Navigation */
        .nav {
            display: flex;
            list-style: none;
            align-items: center;
        }

        .nav li {
            margin: 0 1rem;
        }

        .nav a {
            color: var(--text-color);
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
            transition: color 0.3s ease;
        }

        .nav a:hover {
            color: var(--primary-color);
        }

        .nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background: var(--primary-color);
            transition: width 0.3s ease;
        }

        .nav a:hover::after,
        .nav a:focus-visible::after {
            width: 100%;
        }

        /* Mobile menu */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--text-color);
            cursor: pointer;
        }

        .mobile-nav {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: var(--white);
            z-index: 200;
            padding: 2rem;
        }

        .mobile-nav.active {
            display: block;
        }

        .mobile-nav-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
        }

        .mobile-nav-close {
            background: none;
            border: none;
            font-size: 2rem;
            color: var(--text-color);
            cursor: pointer;
        }

        .mobile-nav ul {
            list-style: none;
            padding: 0;
        }

        .mobile-nav li {
            margin-bottom: 1rem;
        }

        .mobile-nav a {
            color: var(--text-color);
            text-decoration: none;
            font-size: 1.2rem;
            font-weight: 600;
            display: block;
            padding: 1rem 0;
            border-bottom: 1px solid var(--medium-gray);
        }

        .mobile-nav a:hover {
            color: var(--primary-color);
        }

        /* Page header */
        .page-header {
            background: linear-gradient(to bottom, var(--secondary-color) 0%, #333333 100%);
            color: white;
            padding: 3rem 0;
            text-align: center;
        }

        .page-header h1 {
            font-size: 3rem;
            font-weight: 700;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }

        /* Breadcrumb */
        .breadcrumb {
            background: var(--light-gray);
            padding: 1rem 0;
            font-size: 0.9rem;
        }

        .breadcrumb a {
            color: var(--primary-color);
            text-decoration: underline;
            font-weight: 600;
        }

        .breadcrumb a:hover {
            color: var(--secondary-color);
            text-decoration: underline;
        }

        .breadcrumb span {
            color: var(--text-color);
            margin: 0 0.15rem;
            font-weight: 600;
        }

        /* Main content area */
        .main-content {
            padding: 4rem 0;
            background: var(--white);
        }

        .content-wrapper {
            display: flex;
            gap: 3rem;
            align-items: flex-start;
        }

        /* Left content column */
        .content-main {
            flex: 2;
        }

        .content-main h2 {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .content-main h3 {
            font-size: 1.6rem;
            font-weight: 600;
            color: var(--secondary-color);
            margin: 2rem 0 1rem 0;
        }

        .content-main p {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            line-height: 1.7;
            color: var(--dark-gray);
        }

        .content-main ul {
            margin-bottom: 1.5rem;
            padding-left: 2rem;
        }

        .content-main li {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            line-height: 1.6;
            color: var(--dark-gray);
        }

        /* Content images */
        .content-image {
            width: 100%;
            margin: 2rem 0;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }

        .content-image img {
            width: 100%;
            height: auto;
            border-radius: var(--border-radius);
        }

        .content-image figcaption {
            font-size: 0.9rem;
            color: var(--dark-gray);
            text-align: center;
            margin-top: 0.5rem;
            font-style: italic;
        }

        /* Right sidebar */
        .sidebar {
            flex: 1;
            background: var(--light-gray);
            padding: 2rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            height: fit-content;
            position: sticky;
            top: 120px;
        }

        .sidebar h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--primary-color);
        }

        .sidebar p {
            font-size: 1rem;
            margin-bottom: 1rem;
            line-height: 1.6;
        }

        .sidebar ul {
            list-style: none;
            padding: 0;
        }

        .sidebar li {
            margin-bottom: 0.5rem;
        }

        .sidebar a {
            color: var(--dark-gray);
            text-decoration: none;
            font-weight: 500;
            display: flex;
            align-items: center;
            padding: 0.5rem 0;
            transition: color 0.3s ease;
        }

        .sidebar a:hover {
            color: var(--primary-color);
        }

        .sidebar i {
            margin-right: 0.5rem;
            width: 16px;
            color: var(--primary-color);
        }

        /* Contact info box */
        .contact-box {
            background: var(--white);
            padding: 1.5rem;
            border-radius: var(--border-radius);
            margin-top: 2rem;
            border: 2px solid var(--medium-gray);
        }

        .contact-box h4 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 1rem;
        }

        .contact-box p {
            font-size: 0.95rem;
            margin-bottom: 0.5rem;
        }

        .contact-box .btn {
            display: block;
            text-align: center;
            margin-top: 1rem;
            width: 100%;
            color: white;
        }

        .contact-box .btn:hover {
            color: #ffffff;
        }

        /* Advertisement box in sidebar */
        .ad-box {
            background: var(--white);
            padding: 1.5rem;
            border-radius: var(--border-radius);
            margin-top: 2rem;
            border: 2px solid var(--medium-gray);
            text-align: center;
        }

        .ad-box h4 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 1rem;
        }

        .ad-image {
            width: 100%;
            aspect-ratio: 1 / 1;
            overflow: hidden;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            transition: transform 0.3s ease;
        }

        .ad-image:hover {
            transform: scale(1.02);
        }

        .ad-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
        }

        /* Full-width content section */
        .full-width-content {
            background: var(--white);
            padding: 4rem 0;
            border-top: 1px solid var(--medium-gray);
        }

        .full-width-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .full-width-wrapper2 {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .full-width-inner {
            background: var(--white);
            padding: 3rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }

        .full-width-content h2 {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-align: center;
        }

        .full-width-content h3 {
            font-size: 1.6rem;
            font-weight: 600;
            color: var(--secondary-color);
            margin: 2rem 0 1rem 0;
        }

        .full-width-content p {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            line-height: 1.7;
            color: var(--dark-gray);
        }

        .full-width-content ul {
            margin-bottom: 1.5rem;
            padding-left: 2rem;
        }

        .full-width-content li {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            line-height: 1.6;
            color: var(--dark-gray);
        }

        /* Full-width highlight section */
        .highlight-section {
            background: var(--white);
            padding: 5rem 0;
            position: relative;
            overflow: hidden;
            border-top: 1px solid var(--medium-gray);
        }

        .highlight-content {
            text-align: center;
        }

        .highlight-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .highlight-subtitle {
            font-size: 1.3rem;
            color: var(--dark-gray);
            margin-bottom: 3rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .feature-card {
            background: var(--light-gray);
            padding: 2rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: center;
            border: 1px solid var(--medium-gray);
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-color-light));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 1.5rem;
            color: white;
        }

        .feature-card h3 {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--secondary-color);
            margin-bottom: 1rem;
        }

        .feature-card p {
            font-size: 1rem;
            color: var(--dark-gray);
            line-height: 1.6;
        }

        .stats-row {
            display: flex;
            justify-content: center;
            gap: 4rem;
            margin-top: 4rem;
            flex-wrap: wrap;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-color-light);
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 1rem;
            color: var(--dark-gray);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Gallery section */
        .gallery-section {
            background: var(--white);
            padding: 5rem 0;
            border-top: 1px solid var(--medium-gray);
        }

        .gallery-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 1rem;
            text-align: center;
            line-height: 1.2;
        }

        .gallery-subtitle {
            font-size: 1.2rem;
            color: var(--dark-gray);
            margin-bottom: 3rem;
            text-align: center;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .photo-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-bottom: 4rem;
        }

        .photo-item {
            position: relative;
            background: var(--light-gray);
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            aspect-ratio: 4 / 5;
        }

        .photo-item:hover,
        .photo-item:focus-within {
            transform: translateY(-5px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.2);
        }

        .photo-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
            transition: transform 0.3s ease;
        }

        .photo-item:hover img {
            transform: scale(1.02);
        }

        .photo-item img:focus-visible {
            outline: 3px solid var(--primary-color);
            outline-offset: -3px;
        }

        /* Lightbox */
        .lightbox {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        .lightbox.active {
            opacity: 1;
            visibility: visible;
        }

        .lightbox-content {
            position: relative;
            max-width: 90vw;
            max-height: 90vh;
            display: flex;
            align-items: center;
            justify-content: center;
            transform: scale(0.9);
            transition: transform 0.3s ease;
        }

        .lightbox.active .lightbox-content {
            transform: scale(1);
        }

        .lightbox-image {
            max-width: 100%;
            max-height: 90vh;
            width: auto;
            height: auto;
            object-fit: contain;
            border-radius: var(--border-radius);
            box-shadow: 0 10px 40px rgba(0,0,0,0.5);
            transition: opacity 0.15s ease;
        }

        .lightbox-close {
            position: absolute;
            top: -50px;
            right: -10px;
            background: rgba(0, 0, 0, 0.7);
            border: 2px solid white;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.5rem;
            border-radius: 50%;
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 1001;
        }

        .lightbox-close:hover,
        .lightbox-close:focus-visible {
            background: rgba(0, 0, 0, 0.9);
            transform: scale(1.1);
            outline: 3px solid white;
            outline-offset: 2px;
        }

        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.7);
            border: 2px solid white;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 1rem 0.75rem;
            border-radius: var(--border-radius);
            transition: all 0.3s ease;
            width: 50px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1001;
        }

        .lightbox-nav:hover,
        .lightbox-nav:focus-visible {
            background: rgba(0, 0, 0, 0.9);
            transform: translateY(-50%) scale(1.05);
            outline: 3px solid white;
            outline-offset: 2px;
        }

        .lightbox-prev {
            left: 2rem;
        }

        .lightbox-next {
            right: 2rem;
        }

        .lightbox-caption {
            position: absolute;
            bottom: -60px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            text-align: center;
            font-size: 1rem;
            padding: 1rem 2rem;
            background: rgba(0, 0, 0, 0.7);
            border-radius: var(--border-radius);
            max-width: 80%;
            line-height: 1.4;
        }

        /* Video grid */
        .video-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .video-item {
            background: var(--white);
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .video-wrapper {
            position: relative;
            padding-top: 56.25%;
        }

        .video-wrapper iframe {
            border: 0;
            position: absolute;
            top: 0;
            height: 100%;
            width: 100%;
        }

        .gallery-cta {
            text-align: center;
            padding: 2rem;
            background: var(--white);
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            max-width: 800px;
            margin: 0 auto;
        }

        .gallery-cta h3 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 1rem;
        }

        .gallery-cta p {
            font-size: 1.1rem;
            color: var(--dark-gray);
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        /* Buttons */
        .btn {
            display: inline-block;
            padding: 0.75rem 1.5rem;
            background: var(--primary-color);
            color: white;
            text-decoration: none;
            border-radius: var(--border-radius);
            font-weight: 600;
            transition: all 0.3s ease;
            margin-top: 1rem;
            margin-right: 1rem;
        }

        .btn:hover {
            background: #8B2E4A;
            color: #ffffff;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(162, 54, 89, 0.3);
        }

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

        .btn-outline:hover {
            background: var(--primary-color);
            color: white;
        }

        .btn:focus-visible,
        .btn-outline:focus-visible,
        .btn-footer-outline:focus-visible {
            outline: 3px solid #ffffff;
            outline-offset: 2px;
        }

        /* Footer */
        .footer {
            background: var(--secondary-color);
            color: white;
            padding: 3rem 0 1rem;
            text-align: center;
        }

        .footer-content {
            display: block;
            margin-bottom: 2rem;
        }

        .footer-info,
        .footer-newsletter,
        .footer-social {
            margin-bottom: 2rem;
            text-align: center;
        }

        .footer-info h3,
        .footer-newsletter h3 {
            color: white;
            margin-bottom: 1rem;
        }

        .footer-newsletter h3 {
            font-size: 1.2rem;
        }

        .footer-newsletter p {
            margin-bottom: 1.5rem;
            font-size: 0.9rem;
            line-height: 1.5;
        }

        .footer-info a {
            color: #ffffff;
            text-decoration: underline;
        }

        .footer-info a:hover {
            color: #ffffff;
            opacity: 0.8;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            justify-content: center;
        }

        .social-links a {
            color: #ffffff;
            font-size: 2rem;
            transition: color 0.3s ease;
        }

        .social-links a:hover {
            color: #ffffff;
            opacity: 0.8;
        }

        .footer-bottom {
            border-top: 1px solid #444;
            padding-top: 2rem;
            text-align: center;
            font-size: 0.9rem;
        }

        .footer-bottom a {
            color: #ffffff;
            text-decoration: underline;
        }

        .footer-bottom a:hover {
            color: #ffffff;
            opacity: 0.8;
        }

        .btn-footer-outline {
            background: transparent;
            color: #ffffff;
            border: 2px solid #ffffff;
            font-weight: 600;
            padding: 0.75rem 1.5rem;
            border-radius: var(--border-radius);
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-footer-outline:hover {
            background: #ffffff;
            color: var(--secondary-color);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
        }

        /* Responsive Design */
        @media (min-width: 1024px) {
            .footer {
                text-align: left;
            }

            .footer-content {
                display: flex;
                justify-content: space-between;
                align-items: flex-start;
                gap: 2rem;
            }

            .footer-info {
                flex: 2;
                text-align: left;
            }

            .footer-newsletter {
                flex: 2;
                text-align: left;
            }

            .footer-social {
                flex: 1;
                text-align: right;
            }

            .social-links {
                justify-content: flex-end;
            }

            .footer-bottom {
                display: flex;
                justify-content: space-between;
                align-items: center;
                text-align: left;
            }
        }

        @media (max-width: 1023px) {
            .nav {
                display: none;
            }

            .mobile-menu-toggle {
                display: block;
            }

            .page-header h1 {
                font-size: 2.2rem;
            }

            .content-wrapper {
                flex-direction: column;
                gap: 2rem;
            }

            .sidebar {
                position: static;
                top: auto;
            }

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

            .stats-row {
                gap: 2rem;
            }

            .photo-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .video-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .full-width-content {
                padding: 3rem 0;
            }

            .full-width-inner {
                padding: 2rem;
            }

            .full-width-content h2 {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 768px) {
            .lightbox {
                padding: 1rem;
            }

            .lightbox-close {
                top: -40px;
                right: 0;
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }

            .lightbox-nav {
                width: 44px;
                height: 54px;
                font-size: 1.2rem;
                padding: 0.75rem 0.5rem;
            }

            .lightbox-prev {
                left: 1rem;
            }

            .lightbox-next {
                right: 1rem;
            }

            .lightbox-caption {
                bottom: -50px;
                font-size: 0.9rem;
                padding: 0.75rem 1.5rem;
            }
        }

        @media (max-width: 639px) {
            .container {
                padding: 0 0.5rem;
            }

            .page-header {
                padding: 2rem 0 1rem;
            }

            .page-header h1 {
                font-size: 1.8rem;
            }

            .main-content {
                padding: 2rem 0;
            }

            .content-main h2 {
                font-size: 1.8rem;
            }

            .content-main h3 {
                font-size: 1.4rem;
            }

            .sidebar {
                padding: 1.5rem;
            }

            .highlight-section {
                padding: 3rem 0;
            }

            .highlight-title {
                font-size: 1.8rem;
            }

            .highlight-subtitle {
                font-size: 1.1rem;
            }

            .features-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .stat-number {
                font-size: 2.5rem;
            }

            .stats-row {
                gap: 2rem;
            }

            .gallery-section {
                padding: 3rem 0;
            }

            .gallery-title {
                font-size: 1.8rem;
            }

            .gallery-subtitle {
                font-size: 1rem;
            }

            .photo-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .gallery-cta h3 {
                font-size: 1.5rem;
            }

            .footer-bottom > div:last-child {
                margin-top: 10px;
            }

            .full-width-content {
                padding: 2rem 0;
            }

            .full-width-wrapper {
                padding: 0 0.5rem;
            }

            .full-width-wrapper2 {
                padding: 0 0.5rem;
            }

            .full-width-inner {
                padding: 1.5rem;
            }

            .full-width-content h2 {
                font-size: 1.6rem;
            }

            .full-width-content h3 {
                font-size: 1.4rem;
            }
        }

        /* Accessibility */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

        a {
            color: var(--primary-color);
            text-decoration: underline;
        }

        a:hover {
            color: var(--secondary-color);
        }

        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }