       /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
            font-weight: 400;
        }

        /* Foundation-style Breakpoints */
        /* Small: 0px - 639px (default) */
        /* Medium: 640px - 1023px */
        /* Large: 1024px - 1199px */
        /* XLarge: 1200px - 1439px */
        /* XXLarge: 1440px+ */

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

        /* Header Styles */
        header {
            background: #fff;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

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

        @media (min-width: 1024px) {
            .header-content {
                padding: 1.5rem 0;
            }
        }

        .logo {
            display: block;
            max-width: 400px;
            transition: opacity 0.3s ease;
        }

        .logo:hover {
            opacity: 0.8;
        }

        /* Logo image ratio: 5:1 (400x80) or similar wide ratio */
        .logo img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Responsive logo sizing */
        @media (max-width: 639px) {
            .logo {
                max-width: 200px;
            }
        }

        @media (min-width: 640px) and (max-width: 1023px) {
            .logo {
                max-width: 300px;
            }
        }

        /* Navigation Styles */
        nav {
            display: none;
        }

        @media (min-width: 1024px) {
            nav {
                display: block;
            }
        }

        nav ul {
            list-style: none;
            display: flex;
            align-items: center;
        }

        nav > ul > li {
            position: relative;
            margin-left: 2rem;
        }

        nav a {
            color: #333;
            text-decoration: none;
            padding: 0.5rem 0;
            display: block;
            transition: color 0.3s ease;
            position: relative;
        }

        nav a:hover {
            color: #8C2220;
        }

        /* Dropdown Styles */
        nav ul ul {
            position: absolute;
            top: 100%;
            left: 0;
            background: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            border-radius: 4px;
            min-width: 200px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            flex-direction: column;
        }

        nav ul ul ul {
            left: 100%;
            top: 0;
        }

        nav li:hover > ul,
        nav li:focus-within > ul {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        nav ul ul li {
            margin: 0;
        }

        nav ul ul a {
            padding: 0.75rem 1rem;
            border-bottom: 1px solid #eee;
        }

        nav ul ul a:hover {
            background: #f5f5f5;
        }

        /* Dropdown Indicators */
        nav li.has-dropdown > a::after {
            content: '\f107';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            font-size: 0.7em;
            margin-left: 0.5rem;
        }

        nav ul ul li.has-dropdown > a::after {
            content: '\f105';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            float: right;
        }

        /* Mobile Menu Button */
        .mobile-menu-toggle {
            display: block;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
        }

        @media (min-width: 1024px) {
            .mobile-menu-toggle {
                display: none;
            }
        }

        .mobile-menu-toggle span {
            display: block;
            width: 25px;
            height: 3px;
            background: #333;
            margin: 5px 0;
            transition: background 0.3s ease;
        }

        /* Mobile Navigation Overlay */
        .mobile-nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0,0,0,0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 999;
        }

        .mobile-nav.active {
            opacity: 1;
            visibility: visible;
        }

        .mobile-nav ul {
            list-style: none;
            text-align: center;
        }

        .mobile-nav a {
            color: #fff;
            text-decoration: none;
            font-size: 1.5rem;
            padding: 1rem;
            display: block;
            transition: all 0.3s ease;
        }

        .mobile-nav a:hover {
            color: #d4a574;
            transform: translateX(10px);
        }

        .mobile-nav .submenu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .mobile-nav .submenu.active {
            max-height: 500px;
        }

        .mobile-nav .has-submenu > a::after {
            content: ' +';
            font-weight: bold;
        }

        .mobile-nav .has-submenu.active > a::after {
            content: ' −';
        }

        .mobile-nav .submenu a {
            font-size: 1.2rem;
            padding-left: 2rem;
            color: #ccc;
        }

        /* Page Header - Smaller than hero */
        .page-header {
            background: linear-gradient(180deg, #1a1a1a 0%, #2a2a2a 100%);
            color: #fff;
            padding: 6rem 0 3rem;
            margin-top: 80px;
            text-align: center;
        }

        @media (min-width: 1024px) {
            .page-header {
                margin-top: 120px;
            }
        }

        .page-header h1 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
        }

        @media (min-width: 640px) {
            .page-header h1 {
                font-size: 3rem;
            }
        }

        .breadcrumbs {
            font-size: 0.9rem;
            margin-top: 1rem;
        }

        .breadcrumbs a {
            color: #d4a574;
            text-decoration: none;
        }

        .breadcrumbs a:hover {
            text-decoration: underline;
        }

        .breadcrumbs span {
            margin: 0 0.5rem;
        }

        /* Two Column Layout */
        .content-area {
            padding: 4rem 0;
            background: #f8f8f8;
        }

        .two-column-layout {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
        }

        @media (min-width: 1024px) {
            .two-column-layout {
                grid-template-columns: 2fr 1fr;
            }
        }

        /* Main Content Column */
        .main-content {
            background: #fff;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .main-content h2 {
            font-family: 'Playfair Display', serif;
            color: #8C2220;
            font-size: 2rem;
            margin-bottom: 1.5rem;
        }

        .main-content h3 {
            color: #442222;
            font-size: 1.5rem;
            margin-top: 2rem;
            margin-bottom: 1rem;
        }

        .main-content p {
            margin-bottom: 1rem;
            color: #555;
        }

        .main-content ul {
            margin-left: 2rem;
            margin-bottom: 1rem;
            color: #555;
        }

        .main-content li {
            margin-bottom: 0.5rem;
        }

        /* Sidebar */
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .sidebar-widget {
            background: #fff;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .sidebar-widget h3 {
            font-family: 'Playfair Display', serif;
            color: #8C2220;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .sidebar-widget ul {
            list-style: none;
        }

        .sidebar-widget li {
            margin-bottom: 0.75rem;
            padding-bottom: 0.75rem;
            border-bottom: 1px solid #eee;
        }

        .sidebar-widget li:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }

        .sidebar-widget a {
            color: #333;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .sidebar-widget a:hover {
            color: #8C2220;
        }

        /* CTA Box in Sidebar */
        .cta-box {
            background: linear-gradient(135deg, #8C2220 0%, #a82925 100%);
            color: #fff;
            text-align: center;
        }

        .cta-box h3 {
            color: #fff;
        }

        .cta-box p {
            margin-bottom: 1.5rem;
        }

        .cta-button {
            display: inline-block;
            background: #fff;
            color: #8C2220;
            padding: 0.75rem 2rem;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .cta-button:hover {
            background: #f5f5f5;
            transform: translateY(-2px);
        }

        /* Footer */
        footer {
            background: #1a1a1a;
            color: #fff;
            padding: 3rem 0 1rem;
        }

        footer a {
            color: #FFFFFF;
        }

        footer a:hover {
            color: #F2F2F2;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }

        @media (min-width: 640px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (min-width: 1024px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr 1fr 1fr;
            }
        }

        .footer-section h4 {
            margin-bottom: 1rem;
            color: #d4a574;
        }

        .testimonial {
            font-style: italic;
            line-height: 1.8;
        }

        .testimonial-author {
            margin-top: 1rem;
            font-style: normal;
            font-weight: 600;
        }

        .quick-links ul {
            list-style: none;
        }

        .quick-links a {
            color: #fff;
            text-decoration: none;
            transition: color 0.3s ease;
            display: block;
            padding: 0.25rem 0;
        }

        .quick-links a:hover {
            color: #d4a574;
        }

        .featured-photo img {
            width: 100%;
            height: auto;
            border-radius: 4px;
        }

        .contact-info p {
            margin-bottom: 0.5rem;
        }

        .contact-info i {
            color: #d4a574;
            width: 1.25rem;
            text-align: center;
            margin-right: 0.5rem;
        }

        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #333;
            color: #F2F2F2;
        }

        /* Full Width Section */
        .full-width-section {
            padding: 4rem 0;
            background: #fff;
        }

        .full-width-content {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .full-width-content h2 {
            font-family: 'Playfair Display', serif;
            color: #8C2220;
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }

        .full-width-content p {
            font-size: 1.125rem;
            color: #555;
            margin-bottom: 2rem;
        }

        /* Features Grid */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .feature-item {
            text-align: center;
            padding: 2rem;
            border-radius: 8px;
            transition: transform 0.3s ease;
        }

        .feature-item:hover {
            transform: translateY(-5px);
        }

        .feature-item i {
            font-size: 3rem;
            color: #8C2220;
            margin-bottom: 1rem;
        }

        .feature-item h3 {
            color: #442222;
            margin-bottom: 1rem;
        }

        .feature-item p {
            color: #666;
            font-size: 0.95rem;
        }

        /* Single Column Section */
        .single-column-section {
            padding: 4rem 0;
            background: #f8f8f8;
        }

        .single-column-content {
            max-width: 800px;
            margin: 0 auto;
            background: #fff;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .single-column-content h2 {
            font-family: 'Playfair Display', serif;
            color: #8C2220;
            font-size: 2rem;
            margin-bottom: 1.5rem;
        }

        .single-column-content h3 {
            color: #442222;
            font-size: 1.5rem;
            margin-top: 2rem;
            margin-bottom: 1rem;
        }

        .single-column-content p {
            margin-bottom: 1rem;
            color: #555;
        }

        .single-column-content ul {
            margin-left: 2rem;
            margin-bottom: 1rem;
            color: #555;
        }

        .single-column-content li {
            margin-bottom: 0.5rem;
        }

        /* Contact Form Styles */
        .contact-form-section {
            padding: 4rem 0;
            background: #fff;
        }

        .contact-form-container {
            background: #fff;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .contact-form-container h2 {
            font-family: 'Playfair Display', serif;
            color: #8C2220;
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .contact-form-container p {
            color: #555;
            margin-bottom: 2rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            color: #333;
            font-weight: 500;
            margin-bottom: 0.5rem;
        }

        .form-control {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-family: inherit;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .form-control:focus {
            outline: none;
            border-color: #8C2220;
            box-shadow: 0 0 0 2px rgba(140, 34, 32, 0.1);
        }

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

        .mbot40 {
            margin-bottom: 2.5rem;
        }

        .submit-btn {
            display: inline-block;
            background: #8C2220;
            color: #fff;
            padding: 0.75rem 2rem;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .submit-btn:hover {
            background: #a82925;
            transform: translateY(-2px);
        }

        #showData {
            margin-top: 1rem;
        }

        /* Accessibility Focus Styles */
        a:focus,
        button:focus {
            outline: 2px solid #d4a574;
            outline-offset: 2px;
        }

        /* Skip to Content Link */
        .skip-link {
            position: absolute;
            top: -40px;
            left: 0;
            background: #8C2220;
            color: #fff;
            padding: 0.5rem 1rem;
            text-decoration: none;
            border-radius: 0 0 4px 0;
            z-index: 100;
        }

        .skip-link:focus {
            top: 0;
        }