        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }
        
        /* Hero Section with Parallax Effect */
        .hero {
            margin-top: 0; 
            min-height: 100vh; /* Locks to full screen height */
            display: flex;
            align-items: center; 
            justify-content: center;
            background: linear-gradient(rgba(45, 90, 61, 0.7), rgba(26, 36, 30, 0.85)), 
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%23333" width="1200" height="800"/></svg>');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            text-align: center;
            color: #FFFFFF;
            position: relative;
            overflow: hidden;
            padding: 80px 0; /* Ensures content doesn't hit edges on short screens */
        }

        /* Bottom Fade to next section */
        .hero::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 15vh;
            background: linear-gradient(to bottom, transparent, #FFFFFF);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: 1000px; /* Limits the width of the stats block */
            margin: 0 auto;
        }

        .hero-badge {
            display: inline-block;
            font-family: 'DM Sans', sans-serif;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #C6A867;
            background: rgba(198, 168, 103, 0.15);
            padding: 8px 20px;
            border-radius: 100px;
            margin-bottom: 24px;
            border: 1px solid rgba(198, 168, 103, 0.3);
            backdrop-filter: blur(10px);
        }

        .hero-title {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: clamp(48px, 10vw, 86px); /* Responsive font sizing */
            font-weight: 400;
            margin-bottom: 32px;
            font-style: italic;
            line-height: 1.1;
            text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        .hero-subtitle {
            font-family: 'DM Sans', sans-serif;
            font-size: 22px;
            font-weight: 400;
            margin-bottom: 16px;
            opacity: 0.95;
        }

        .hero-description {
            font-family: 'DM Sans', sans-serif;
            font-size: 17px;
            max-width: 800px;
            margin: 0 auto 40px;
            opacity: 0.9;
            line-height: 1.8;
        }

        .hero-cta {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 20px 48px;
            background: #C6A867;
            color: #1A241E;
            font-family: 'DM Sans', sans-serif;
            font-size: 16px;
            font-weight: 700;
            text-decoration: none;
            border-radius: 100px;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(198, 168, 103, 0.3);
        }

        .hero-cta:hover {
            background: #D4B676;
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(198, 168, 103, 0.4);
        }
        
        /* --- Integrated Intro Stats Styling --- */
        .intro-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin: 40px auto 50px; /* Space above and below stats */
            padding: 30px;
            background: rgba(255, 255, 255, 0.05); /* Subtle glass effect */
            backdrop-filter: blur(10px);
            border-radius: 24px;
            border: 1px solid rgba(198, 168, 103, 0.2);
            max-width: 800px;
        }
        
        .intro-stat-number {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 42px;
            font-weight: 600;
            color: #C6A867;
            display: block;
            line-height: 1;
            margin-bottom: 8px;
        }
        
        .intro-stat-label {
            font-family: 'DM Sans', sans-serif;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 2px;
            opacity: 0.8;
        }

        /* Section Styles */
        .section {
            padding: 100px 0;
        }
        
        .section-cuisine {
            background: #FFFFFF;
        }
        
        .section-alt {
            background: #FAFAF8;
        }

        .section-title {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 52px;
            font-weight: 400;
            color: #1A241E;
            margin-bottom: 16px;
            text-align: center;
        }

        .section-subtitle {
            font-family: 'DM Sans', sans-serif;
            font-size: 19px;
            color: #666;
            text-align: center;
            max-width: 700px;
            margin: 0 auto 64px;
            line-height: 1.7;
        }

        /* Intro Section */
        .intro-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 80px;
            align-items: center;
            margin-bottom: 80px;
        }

        .intro-text h3 {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 38px;
            font-weight: 500;
            color: #2D5A3D;
            margin-bottom: 24px;
            line-height: 1.3;
        }

        .intro-text p {
            font-family: 'DM Sans', sans-serif;
            font-size: 17px;
            color: #666;
            line-height: 1.9;
            margin-bottom: 20px;
        }

        .intro-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            margin-top: 40px;
            padding: 36px;
            background: linear-gradient(135deg, #2D5A3D 0%, #3A5F4D 100%);
            border-radius: 20px;
            color: #FFFFFF;
        }

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

        .intro-stat-number {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 42px;
            font-weight: 600;
            color: #C6A867;
            display: block;
            margin-bottom: 8px;
        }

        .intro-stat-label {
            font-family: 'DM Sans', sans-serif;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            opacity: 0.95;
        }

        .intro-image {
            width: 100%;
            height: 450px;
            background: #E5E5E5;
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 96px;
            box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12);
            position: relative;
            overflow: hidden;
        }

        .intro-image::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(45, 90, 61, 0.1), transparent);
        }

        /* Attractions Section */
        .attractions-filter {
            display: flex;
            justify-content: center;
            gap: 16px;
            margin-bottom: 48px;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 12px 28px;
            background: #FFFFFF;
            border: 2px solid #E5E5E5;
            border-radius: 100px;
            font-family: 'DM Sans', sans-serif;
            font-size: 14px;
            font-weight: 600;
            color: #666;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .filter-btn:hover,
        .filter-btn.active {
            background: #2D5A3D;
            border-color: #2D5A3D;
            color: #FFFFFF;
        }

        .attractions-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }

        .attraction-card {
            background: #FFFFFF;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            cursor: pointer;
        }

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

        .attraction-image {
            width: 100%;
            height: 280px;
            background: #E5E5E5;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 64px;
            position: relative;
            overflow: hidden;
        }

        .attraction-badge {
            position: absolute;
            top: 16px;
            right: 16px;
            background: rgba(198, 168, 103, 0.95);
            backdrop-filter: blur(10px);
            color: #1A241E;
            padding: 6px 16px;
            border-radius: 100px;
            font-family: 'DM Sans', sans-serif;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .attraction-info {
            padding: 28px;
        }

        .attraction-category {
            font-family: 'DM Sans', sans-serif;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: #2D5A3D;
            margin-bottom: 12px;
        }

        .attraction-name {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 24px;
            font-weight: 600;
            color: #1A241E;
            margin-bottom: 12px;
            line-height: 1.3;
        }

        .attraction-description {
            font-family: 'DM Sans', sans-serif;
            font-size: 15px;
            color: #666;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .attraction-meta {
            display: flex;
            gap: 20px;
            padding-top: 20px;
            border-top: 1px solid #F0F0F0;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 6px;
            font-family: 'DM Sans', sans-serif;
            font-size: 13px;
            color: #999;
        }

        .meta-icon {
            font-size: 16px;
        }

        .card-learn-more {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin-top: 16px;
            font-family: 'DM Sans', sans-serif;
            font-size: 14px;
            font-weight: 600;
            color: #2D5A3D;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .card-learn-more:hover {
            color: #4A8B5C;
            gap: 10px;
        }
        
        /* Container for the icons */
        .attraction-contact-row {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-top: 24px;
            min-height: 42px; /* Maintains alignment even if empty */
        }
        
        /* Base style for all icon buttons */
        .contact-icon-btn {
            width: 42px;
            height: 42px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: #FAFAF8;
            color: #2D5A3D; /* Theme Green */
            border: 1px solid #E5E5E5;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            text-decoration: none;
        }
        
        /* Elegant Hover Effects */
        .contact-icon-btn:hover {
            background: #2D5A3D;
            color: #FFFFFF;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(45, 90, 61, 0.2);
            border-color: #2D5A3D;
        }
        
        /* Specific styling for the Facebook SVG since it is a solid path */
        .contact-icon-btn svg {
            display: block;
        }

        /* Dining Section */
        .dining-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 28px;
        }

        .dining-card {
            background: #FFFFFF;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .dining-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
        }

        .dining-image {
            width: 100%;
            height: 200px;
            background: #E5E5E5;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 48px;
        }

        .dining-info {
            padding: 20px;
        }

        .dining-type {
            font-family: 'DM Sans', sans-serif;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #2D5A3D;
            margin-bottom: 8px;
        }

        .dining-name {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 19px;
            font-weight: 600;
            color: #1A241E;
            margin-bottom: 8px;
        }

        .dining-cuisine {
            font-family: 'DM Sans', sans-serif;
            font-size: 13px;
            color: #999;
            margin-bottom: 12px;
        }

        .dining-rating {
            display: flex;
            align-items: center;
            gap: 6px;
            font-family: 'DM Sans', sans-serif;
            font-size: 14px;
            color: #C6A867;
        }

        /* Accommodation Section */
        .accommodation-types {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            margin-bottom: 64px;
        }

        .accommodation-type {
            background: #FFFFFF;
            border-radius: 24px;
            padding: 40px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .accommodation-type:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
        }

        .accommodation-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #2D5A3D 0%, #4A8B5C 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
            margin-bottom: 24px;
            color: #FFFFFF;
        }

        .accommodation-type h3 {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 28px;
            font-weight: 600;
            color: #1A241E;
            margin-bottom: 16px;
        }

        .accommodation-type p {
            font-family: 'DM Sans', sans-serif;
            font-size: 16px;
            color: #666;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .accommodation-features {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .feature-tag {
            padding: 8px 16px;
            background: #FAFAF8;
            border-radius: 100px;
            font-family: 'DM Sans', sans-serif;
            font-size: 13px;
            color: #666;
        }

        .accommodation-list {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }

        .accommodation-card {
            background: #FFFFFF;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .accommodation-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
        }

        .accommodation-image {
            width: 100%;
            height: 240px;
            background: #E5E5E5;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 56px;
        }

        .accommodation-info {
            padding: 24px;
        }

        .accommodation-name {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 22px;
            font-weight: 600;
            color: #1A241E;
            margin-bottom: 8px;
        }

        .accommodation-location {
            font-family: 'DM Sans', sans-serif;
            font-size: 14px;
            color: #999;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .accommodation-price {
            font-family: 'DM Sans', sans-serif;
            font-size: 15px;
            color: #666;
            margin-bottom: 16px;
        }

        .accommodation-price strong {
            font-size: 24px;
            color: #2D5A3D;
            font-weight: 700;
        }

        .accommodation-amenities {
            display: flex;
            gap: 16px;
            padding-top: 16px;
            border-top: 1px solid #F0F0F0;
        }

        .amenity-icon {
            font-size: 18px;
            color: #2D5A3D;
        }
        
        .gallery-trigger-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 16px;
            padding: 10px 20px;
            background: #F5F3EE;
            border: 1px solid #E5E5E5;
            border-radius: 8px;
            font-family: 'DM Sans', sans-serif;
            font-size: 13px;
            font-weight: 600;
            color: #2D5A3D;
            cursor: pointer;
            transition: all 0.2s ease;
        }
        
        .gallery-trigger-btn:hover {
            background: #2D5A3D;
            color: #fff;
            border-color: #2D5A3D;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero {
                padding: 100px 24px 60px;
                min-height: auto; /* Natural flow for small devices */
            }
        
            .hero-title {
                font-size: 48px;
            }
        
            .intro-stats {
                grid-template-columns: 1fr; /* Stack vertically for legibility */
                margin: 30px 0 40px;
                gap: 20px;
            }
        
            .intro-stat-number {
                font-size: 36px;
            }
            .attractions-grid,
            .dining-grid,
            .accommodation-types,
            .accommodation-list
        }