/* Base Styles */
        body {
            font-family: 'Inter', sans-serif;
            background-color: #f8f8f8;
            color: #333;
            scroll-padding-top: 64px; /* Maintain scroll-padding-top for smooth scroll target positioning relative to sticky header */
        }
        /* .hero-background is no longer needed but kept in case other elements might use it in future. */
        .hero-background {
            background-image: url('https://placehold.co/1920x800/d3d3d3/ffffff?text=Cozy+B%26B+Exterior'); /* Placeholder image */
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        /* Generic Section Title Styles (reused across About, Amenities, Gallery, Rooms) */
        .section-pre-heading {
            color: #978667; /* Tan/gold color */
            font-size: 0.875rem; /* text-sm */
            letter-spacing: 0.1em; /* Tracking-widest */
            text-transform: uppercase;
            font-weight: 600; /* semibold */
            margin-bottom: 0.5rem; /* mb-2 */
        }
        .section-main-heading {
            color: #2a2a2a; /* Very dark gray, almost black */
            font-size: 3rem; /* text-5xl */
            font-weight: 800; /* Extra bold */
            line-height: 1.1; /* Tighter line height */
            margin-bottom: 1rem; /* mb-4 - adjusted for multiple lines */
        }
        .section-description {
            color: #4a4a4a; /* Slightly lighter dark gray for body text */
            font-size: 1.125rem; /* text-lg */
            font-weight: 300; /* Lighter font weight for elegance */
            line-height: 1.8; /* More relaxed line height for readability */
            margin-bottom: 1rem; /* mb-4 */
        }
        .section-body-text { /* For the main body paragraph */
            color: #555; /* Slightly softer dark gray */
            font-size: 1.05rem; /* Slightly larger base font size */
            font-weight: 300; /* Lighter font weight for elegance */
            line-height: 1.8; /* More relaxed line height for readability */
            margin-bottom: 1rem;
        }

        /* About Section Specific Styles */
        .about-image-stack {
            position: relative;
            height: 400px; /* Overall height for the container on mobile */
            width: 100%; /* Full width on mobile */
            overflow: hidden; /* Ensures shadows and borders are clipped */
            border-radius: 0.75rem; /* Apply to the container */
            
            margin-bottom: 2rem; /* space below on mobile */
        }
        .about-image-stack img {
            position: absolute;
            object-fit: cover;
            border-radius: 0.75rem; /* rounded-lg for individual images */
            box-shadow: 0 5px 10px -2px rgba(0, 0, 0, 0.1); /* Lighter individual image shadow */
        }
        .about-image-stack .back-image { /* Image with stairs/dining */
            width: 85%; /* Background image size */
            height: 85%;
            top: 0;
            left: 0;
            z-index: 1; /* Sits behind the front image */
        }
        .about-image-stack .front-image { /* Image with sofa */
            width: 70%; /* Foreground image size, smaller than background */
            height: 70%;
            bottom: 0;
            right: 0; /* Positions to bottom-right corner of the stack */
            z-index: 2; /* Ensures it's on top */
        }
        /* Specific adjustments for md screens and larger */
        @media (min-width: 768px) {
            .about-image-stack {
                height: 500px; /* Taller on desktop for more impact */
                margin-bottom: 0; /* No bottom margin on desktop */
                box-shadow: none; /* Remove outer shadow here, as individual images have it */
            }
            .about-image-stack .back-image {
                width: 85%; /* Consistently 85% on desktop */
                height: 85%;
            }
            .about-image-stack .front-image {
                width: 70%; /* Consistently 70% on desktop */
                height: 70%;
            }
        }
        .motel-info-highlight {
            background-color: #f5f5f5; /* Light gray to stand out from white background */
            padding: 1.5rem; /* Increased padding */
            border-radius: 0.5rem; /* Slightly rounded corners */
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); /* Subtle shadow */
        }
        .motel-info-highlight .motel-info-heading {
            color: #978667; /* Tan/gold color for the heading */
            font-weight: 700; /* Bold */
            font-size: 1.25rem; /* text-xl */
        }

        /* Rooms Section Specific Styles */
        .carousel-container {
            position: relative;
            width: 100%;
            /* Removed previous fixed heights or aspect-ratio for a more robust solution */
            height: 450px; /* Increased height for mobile to better accommodate portrait images */
            overflow: hidden; /* Ensures only one slide is visible */
            border-radius: 0.75rem; /* rounded-xl */
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }
        @media (min-width: 768px) { /* md breakpoint */
            .carousel-container {
                height: 600px; /* Even taller for desktop to ensure good display of portrait images */
            }
        }
        .carousel-track {
            display: flex;
            transition: transform 0.8s ease-in-out; /* Increased transition duration */
            height: 100%; /* Ensure track fills container height */
            /* width will be set by JS: slides.length * 100% */
        }
        .carousel-slide {
            flex-shrink: 0; /* Prevents slides from shrinking */
            width: 100%;
            height: 100%;
            /* object-fit will be applied to the img inside */
        }
        /* New rule: Apply object-fit directly to the image within the slide */
        .room-carousel-img { 
            width: 100%;
            height: 100%;
            object-fit: contain; /* Ensures the entire image is visible, padding with empty space if aspect ratio differs */
        }
        .carousel-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(0, 0, 0, 0.5);
            color: white;
            padding: 0.5rem 0.75rem;
            border-radius: 9999px; /* rounded-full */
            cursor: pointer;
            z-index: 10;
            transition: background-color 0.3s ease;
        }
        .carousel-button:hover {
            background-color: rgba(0, 0, 0, 0.7);
        }
        /* Specific positioning for carousel buttons */
        .carousel-button.prev {
            left: 1rem;
        }
        .carousel-button.next {
            right: 1rem;
        }
        .carousel-dots {
            position: absolute;
            bottom: 1rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 0.5rem;
            z-index: 10;
        }
        .carousel-dot {
            width: 0.75rem;
            height: 0.75rem;
            background-color: rgba(255, 255, 255, 0.5);
            border-radius: 9999px; /* rounded-full */
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        .carousel-dot.active {
            background-color: rgba(255, 255, 255, 0.9);
        }

        .room-amenities-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); /* Responsive grid for amenities */
            gap: 8px 16px; /* gap-y-2 gap-x-4 */
        }
        .room-amenities-list li {
            display: flex;
            align-items: center;
            color: #4a4a4a; /* text-gray-700 */
            font-size: 0.95rem; /* text-sm */
        }
        .room-amenities-list li i {
            width: 1rem; /* w-4 */
            height: 1rem; /* h-4 */
            margin-right: 0.5rem; /* mr-2 */
            color: #978667; /* Theme color */
            flex-shrink: 0;
        }
        /* Amenities Section Specific Styles */
        .amenity-card {
            opacity: 0; /* Hides by default */
            transform: translateY(20px); /* Starts slightly below */
            transition: opacity 0.6s ease-out, transform 0.6s ease-out; /* Smooth transition if JS is slow */
        }

        /* Gallery Section Specific Styles */
        .fullscreen-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9); /* Dark overlay */
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000; /* Ensure it's on top of everything */
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
        }
        .fullscreen-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        .fullscreen-overlay img {
            max-width: 90%;
            max-height: 90%;
            border-radius: 0.75rem; /* rounded-xl */
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.25), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
            object-fit: contain; /* Ensure the entire image is visible within the bounds */
        }
        /* Animation Keyframes (generic name for reuse) */
        @keyframes section-fade-in-slide-up {
            from {
                opacity: 0; /* Starts from invisible */
                transform: translateY(20px); /* Starts slightly offset */
            }
            to {
                opacity: 1; /* Ends fully visible */
                transform: translateY(0); /* Ends in original position */
            }
        }
        /* Class to apply the animation when active */
        .animate-on-scroll {
            opacity: 0; /* Initial state: invisible */
            transform: translateY(20px); /* Initial state: slightly below */
            transition: opacity 0.6s ease-out, transform 0.6s ease-out; /* Smooth transition for non-animated state */
        }
        .animate-on-scroll.active {
            animation: section-fade-in-slide-up 0.6s ease-out forwards;
        }

        /* Header Specific Styles (from header-section-design-v2) */
        header {
            background-color: #ffffff;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            padding-top: 1.5rem;
            padding-bottom: 1.5rem;
            transition: all 0.3s ease-in-out;
            opacity: 0; /* Initial state for animation */
            transform: translateY(-100%); /* Start completely above the viewport */
        }
        header.animate-active {
            animation: header-slide-down-fade-in 0.7s ease-out forwards;
        }
        .header-logo {
            font-family: 'Inter', sans-serif;
            font-size: 2.25rem;
            font-weight: 800;
            color: #2a2a2a;
            letter-spacing: -0.025em;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .header-logo:hover {
            color: #978667;
        }
        .header-nav-link {
            position: relative;
            color: #4a4a4a;
            font-weight: 500;
            font-size: 1.05rem;
            text-decoration: none;
            padding: 0.5rem 0.75rem;
            transition: color 0.3s ease, border-color 0.3s ease;
            border-bottom: 2px solid transparent;
        }
        .header-nav-link:hover {
            color: #978667;
            border-color: #978667;
        }
        .header-nav-link.current-section {
            color: #978667;
            border-bottom: 2px solid #978667;
        }
        .header-nav-link::after {
            display: none;
        }
        .mobile-menu-button {
            border: 2px solid #978667;
            border-radius: 0.5rem;
            padding: 0.5rem;
            color: #978667;
            transition: background-color 0.3s ease, color 0.3s ease;
        }
        .mobile-menu-button:hover {
            background-color: #978667;
            color: white;
        }
        .mobile-menu-container {
            background-color: #ffffff;
            border-radius: 0.75rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            display: none; /* Hidden by default for mobile */
            opacity: 0; /* Start invisible for fade in */
            transition: opacity 0.3s ease-out; /* Smooth transition for opacity */
        }
        .mobile-menu-container.show {
            display: block; /* Show as block */
            opacity: 1; /* Fade in */
        }
        .mobile-menu-container .header-nav-link {
            color: #2a2a2a;
            padding: 0.75rem 1rem;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }
        .mobile-menu-container .header-nav-link:last-child {
            border-bottom: none;
        }
        .mobile-menu-container .header-nav-link:hover {
            background-color: #f0f0f0;
            color: #978667;
        }
        .mobile-menu-container .header-nav-link.current-section {
            color: #978667;
            background-color: #f8f8f8;
        }
        .header-book-now-btn {
            background-color: #978667;
            color: white;
            font-weight: 700; /* bold */
            padding: 0.75rem 1.5rem; /* py-3 px-6 */
            border-radius: 9999px; /* rounded-full */
            transition: background-color 0.3s ease, transform 0.2s ease;
            text-decoration: none;
            margin-left: 1.5rem; /* ml-6 */
        }
        .header-book-now-btn:hover {
            background-color: #897455; /* Slightly darker gold on hover */
            transform: translateY(-2px); /* Slight lift effect */
        }

        @keyframes header-slide-down-fade-in {
            from {
                opacity: 0;
                transform: translateY(-100%);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* --- Attractions Section Specific Styles --- */
        /* These styles are taken from the latest "our-attractions-section" immersive */
        /* Removed .pre-heading, .main-heading, .description-text overrides for consistency */
        .distance-text {
            color: #978667;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        .distance-text a {
            color: #978667; /* Tan/gold for links, aligning with base design */
            text-decoration: none;
            transition: all 0.2s ease-in-out;
        }
        .distance-text a:hover {
            text-decoration: underline;
            color: #7b6a4a; /* Darker tan/gold on hover */
        }
        /* .description-text now uses .section-description styles */

        .image-container {
            border-radius: 1rem; /* More rounded corners */
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); /* Stronger shadow */
            transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
        }
        .attraction-link-wrapper:hover .image-container {
            transform: translateY(-5px); /* Lift on hover */
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15); /* More intense shadow on hover */
        }
        .image-container img {
            width: 100%;
            height: 100%; /* Fill container */
            object-fit: cover; /* Cover and crop as needed */
        }

        /* Responsive adjustments for headings in Attractions section - now using generic ones */
        /* No specific overrides here, will rely on .section-main-heading responsiveness */

        /* Social Icon Styling for Font Awesome */
        .social-icon {
            color: #978667; /* Default icon color */
            font-size: 1.5rem;
            margin-right: 1rem; /* Spacing between icons */
            transition: color 0.3s ease, transform 0.2s ease-out;
        }
        .social-icon:last-child {
            margin-right: 0; /* No margin on the last icon */
        }
        .social-icon:hover {
            transform: translateY(-2px) scale(1.1); /* Subtle lift and scale on hover */
        }
        /* Native colors on hover */
        .social-icon.fa-facebook-f:hover {
            color: #1877F2; /* Facebook Blue */
        }
        .social-icon.fa-instagram:hover {
            color: #C13584; /* Instagram Pink/Purple */
        }
        .social-icon.fa-x-twitter:hover {
            color: #1DA1F2; /* Twitter Blue */
        }
        .social-icon.fa-tiktok:hover {
            color: #000000; /* TikTok Black */
        }

        /* Styles for the clickable card wrapper (no explicit text-decoration) */
        .attraction-link-wrapper {
            text-decoration: none;
            color: inherit;
            display: block; /* Make the whole area clickable */
        }

        /* Scroll to Top Button */
        #scroll-to-top-btn {
            position: fixed;
            bottom: 20px;
            left: 20px; /* Position on the left side */
            background-color: #978667; /* Theme color */
            color: white;
            border: none;
            border-radius: 9999px; /* Fully rounded */
            padding: 1rem; /* Adjust size */
            font-size: 1.5rem; /* Icon size */
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            z-index: 999; /* Below message box, above content */
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, transform 0.2s ease;
        }
        #scroll-to-top-btn:hover {
            background-color: #7b6a4a; /* Darker on hover */
            transform: translateY(-3px); /* Subtle lift */
        }
        #scroll-to-top-btn.show {
            opacity: 1;
            visibility: visible;
        }

        /* Message box for form feedback */
        .message-box {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            background-color: #ffda00; /* Yellow */
            color: #333;
            padding: 15px 25px;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            z-index: 10000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
            font-weight: 500;
        }
        .message-box.show {
            opacity: 1;
            visibility: visible;
        }
        .message-box.error {
            background-color: #ff4d4d; /* Red for errors */
            color: white;
        }
        .message-box.success {
            background-color: #4CAF50; /* Green for success */
            color: white;
        }
        /* Styles for Contact Info & Form elements - to ensure consistency after merge */
        .contact-info-text {
            color: #555; /* Soft dark gray for general contact text */
            font-size: 1.05rem;
        }
        .contact-icon {
            color: #978667; /* Consistent tan/gold for icons */
            width: 1.25rem; /* w-5 */
            height: 1.25rem; /* h-5 */
            margin-right: 0.5rem; /* mr-2 */
        }
        .motel-info-heading { /* Re-used from About section */
            color: #978667; /* Tan/gold color for the heading */
            font-weight: 700; /* Bold */
            font-size: 1.25rem; /* text-xl */
        }
        .form-input-field {
            box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); /* subtle shadow */
            border-color: #e2e8f0; /* default light gray border */
            border-radius: 0.5rem; /* rounded-md */
            transition: all 0.2s ease-in-out;
        }
        .form-input-field:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(151, 134, 103, 0.5), 0 1px 2px 0 rgba(0, 0, 0, 0.05); /* ring-tan/gold */
            border-color: transparent; /* transparent border on focus */
        }
        .submit-button {
            background-color: #978667;
            color: white;
            font-weight: 700; /* bold */
            padding: 0.75rem 1.5rem; /* py-3 px-6 */
            border-radius: 9999px; /* rounded-full */
            transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
            text-decoration: none;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); /* Subtle shadow */
        }
        .submit-button:hover {
            background-color: #897455; /* Slightly darker gold on hover */
            transform: translateY(-2px); /* Slight lift effect */
            box-shadow: 0 6px 10px -2px rgba(0, 0, 0, 0.15), 0 3px 6px -1px rgba(0, 0, 0, 0.08); /* More pronounced shadow */
        }

        /* New Restaurant Item Design (Two-column layout) */
        .restaurant-item-block {
            /* Styling for the container of each restaurant's content */
            background-color: #ffffff; /* White background for the block */
            border-radius: 1rem; /* rounded-xl */
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08); /* Soft shadow */
            padding: 2.5rem; /* Ample padding inside the block */
            transition: box-shadow 0.3s ease-in-out;
        }
        .restaurant-item-block:hover {
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12); /* Slightly more prominent shadow on hover */
        }

        /* Text and Image Styling for the two-column layout */
        /* restaurant-title is now handled directly by Tailwind classes in HTML */
        .restaurant-cuisine {
            font-size: 1rem; /* base text size */
            color: #666;
            margin-bottom: 1rem;
        }
        /* restaurant-info-text is now handled by section-description class */
        /* Specific styling for the link wrapping the restaurant name and image */
        .restaurant-name-link,
        .restaurant-image-link {
            text-decoration: none; /* No underline by default */
            color: inherit; /* Inherit text color */
            display: block; /* Make the whole area clickable */
            transition: color 0.3s ease; /* For text color change */
        }
        /* Specific hover for the name link: change color, but NO underline */
        .restaurant-name-link:hover .text-3xl { /* Targeted for the H3 within the link */
            color: #978667; /* Change name color on hover */
            text-decoration: none; /* Explicitly ensure no underline */
        }
        /* Styling for the address link within restaurant-info-text */
        .address-link { /* Changed from .restaurant-info-text .address-link to just .address-link for simpler targeting */
            color: #978667; /* Tan/gold for address links */
            text-decoration: none;
            transition: text-decoration 0.2s ease, color 0.2s ease;
        }
        .address-link:hover {
            text-decoration: underline; /* Underline only on address hover */
            color: #7b6a4a;
        }

        .restaurant-image-container {
            border-radius: 0.75rem; /* rounded-xl */
            overflow: hidden;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1); /* Soft shadow for image */
            transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
        }
        /* Hover effect for the entire image container when its wrapper is hovered */
        .restaurant-image-link:hover .restaurant-image-container {
            transform: translateY(-5px); /* Lift on hover */
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15); /* More intense shadow on hover */
        }
        .restaurant-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Footer Specific Styles */
        footer {
            background-color: #2a2a2a; /* Fallback dark gray */
            background-image: linear-gradient(to right, #2a2a2a, #333333); /* Subtle gradient */
            color: #d1d5db; /* text-gray-300 */
            padding: 2rem 1.25rem; /* py-8, px-5 for mobile */
            border-top: 4px solid #978667; /* Consistent gold line at top */
        }
        @media (min-width: 768px) { /* md breakpoint */
            footer {
                padding: 2.5rem 1.5rem; /* py-10, px-6 on desktop */
            }
        }

        .footer-link {
            color: #d1d5db; /* Default link color */
            font-weight: 500; /* Medium weight */
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 0.875rem; /* text-sm for mobile compactness */
            white-space: nowrap; /* Prevent wrapping for individual links */
            padding-top: 0.25rem; /* py-1 to match line-height */
            padding-bottom: 0.25rem; /* py-1 to match line-height */
        }
        @media (min-width: 768px) {
            .footer-link {
                font-size: 1.05rem; /* Restore desktop size */
            }
        }
        .footer-link:hover {
            color: #978667; /* Tan/gold on hover */
        }
        
        /* New styling for footer nav container to implement grid */
        .footer-nav-grid-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile */
            gap: 0.5rem 1rem; /* Row gap 0.5rem, column gap 1rem */
            justify-items: center; /* Center items within their grid cells */
            margin-bottom: 1.5rem; /* mb-6 below nav links */
        }
        @media (min-width: 640px) { /* sm breakpoint */
            .footer-nav-grid-container {
                grid-template-columns: repeat(3, 1fr); /* 3 columns on sm screens */
            }
        }
        @media (min-width: 768px) { /* md breakpoint - revert to row for desktop */
            .footer-nav-grid-container {
                display: flex; /* Revert to flexbox row */
                gap: initial; /* Reset gap */
                justify-content: center;
                space-x: 2rem; /* space-x-8 */
            }
            .footer-link {
                padding: 0.5rem 0.75rem; /* Restore desktop padding */
            }
        }

        .footer-social-icons-container { 
            display: flex;
            justify-content: center;
            margin-bottom: 1.5rem; /* mb-6 */
            gap: 1.5rem; /* space-x-6, using gap for better responsiveness */
        }

        .footer-social-icon {
            color: #d1d5db; /* Default social icon color */
            font-size: 1.5rem; /* Icon size */
            transition: color 0.3s ease, transform 0.2s ease;
        }
        .footer-social-icon:hover {
            transform: translateY(-2px) scale(1.1);
            color: #1877F2; /* Facebook Blue on hover */
        }

        /* Specific link style for "The WesternTech" */
        .westerntech-link {
            color: #d1d5db; /* Inherit default footer text color */
            text-decoration: none;
            transition: color 0.3s ease;
            font-weight: 400; /* Regular weight for copyright text */
        }
        .westerntech-link:hover {
            color: #978667; /* Tan/gold on hover, consistent with other links */
            text-decoration: underline; /* Add underline on hover for this specific link */
        }

        .copyright-text {
            font-size: 0.8rem; /* Slightly smaller text for copyright */
            color: #9ca3af; /* text-gray-400 */
            line-height: 1.4; /* Tighter line height for compactness */
        }