        :root {
            --primary-blue: #355A79;
            --primary-orange: #C68D4A;
            --light-blue: #4A7BA7;
            --light-orange: #D4A574;
            --cream: #F8F6F2;
            --dark-gray: #2C2C2C;
            --light-gray: #F5F5F5;
            --white: #FFFFFF;
        }

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

        body {
            font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: var(--dark-gray);
            background-color: var(--white);
        }

        /* Foundation-style breakpoints */
        .container {
            width: 100%;
            max-width: 75rem;
            margin: 0 auto;
            padding: 0 1rem;
        }

        /* Small: 0-39.9375em */
        @media screen and (max-width: 39.9375em) {
            .container { padding: 0 0.5rem; }
        }

        /* Medium: 40em-63.9375em */
        @media screen and (min-width: 40em) {
            .container { padding: 0 1rem; }
        }

        /* Large: 64em and up */
        @media screen and (min-width: 64em) {
            .container { padding: 0 2rem; }
        }

        /* Header */
        header {
            background: var(--white);
            color: var(--dark-gray);
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .logo {
            display: block;
            width: 240px;
            height: 240px;
            object-fit: contain;
            margin: 10px 0;
        }

        @media screen and (max-width: 39.9375em) {
            .logo {
                width: 140px;
                height: 140px;
                margin: 8px 0;
            }
        }

        @media screen and (min-width: 40em) and (max-width: 63.9375em) {
            .logo {
                width: 190px;
                height: 190px;
                margin: 9px 0;
            }
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            color: var(--primary-blue);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--primary-orange);
            transform: translateY(-2px);
        }

        .nav-links a:focus {
            color: var(--primary-orange);
            outline: 2px solid var(--primary-orange);
            outline-offset: 2px;
        }

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

        .nav-links a:hover::after {
            width: 100%;
        }

        .mobile-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .mobile-close {
            display: none;
        }

        .mobile-menu span {
            width: 25px;
            height: 3px;
            background: var(--primary-blue);
            margin: 3px 0;
            transition: 0.3s;
        }

        /* Mobile Navigation */
        @media screen and (max-width: 39.9375em) {
            .nav-links {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                width: 100vw;
                height: 100vh;
                background: rgba(53, 90, 121, 0.95);
                backdrop-filter: blur(10px);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 2rem;
                z-index: 999;
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
            }

            .nav-links.active {
                display: flex;
                opacity: 1;
                visibility: visible;
            }

            .mobile-menu {
                display: flex;
                z-index: 1001;
                position: relative;
            }

            .nav-links a {
                padding: 1rem 2rem;
                border: none;
                color: var(--white);
                font-size: 1.5rem;
                font-weight: 600;
                text-transform: uppercase;
                letter-spacing: 1px;
                transition: all 0.3s ease;
                border-radius: 10px;
                text-decoration: none;
            }

            .nav-links a:hover,
            .nav-links a:focus {
                background: rgba(198, 141, 74, 0.2);
                color: var(--primary-orange);
                transform: scale(1.05);
                outline: 2px solid var(--primary-orange);
                outline-offset: 2px;
            }

            .nav-links a::after {
                display: none;
            }

            .mobile-close {
                position: absolute;
                top: 2rem;
                right: 2rem;
                background: none;
                border: none;
                color: var(--white);
                font-size: 2rem;
                cursor: pointer;
                padding: 0.5rem;
                border-radius: 50%;
                transition: all 0.3s ease;
                z-index: 1000;
                display: block;
            }

            .mobile-close:hover,
            .mobile-close:focus {
                background: rgba(198, 141, 74, 0.2);
                color: var(--primary-orange);
                outline: 2px solid var(--primary-orange);
                outline-offset: 2px;
                transform: scale(1.1);
            }

            /* Hamburger menu animation */
            .mobile-menu.active span:nth-child(1) {
                transform: rotate(-45deg) translate(-5px, 6px);
            }

            .mobile-menu.active span:nth-child(2) {
                opacity: 0;
            }

            .mobile-menu.active span:nth-child(3) {
                transform: rotate(45deg) translate(-5px, -6px);
            }
        }

        /* Page Header */
        .page-header {
            background: var(--primary-blue);
            color: var(--white);
            padding-top: calc(260px + 6rem);
            padding-bottom: 6rem;
            text-align: center;
        }

        @media screen and (max-width: 39.9375em) {
            .page-header {
                padding-top: calc(156px + 4rem);
                padding-bottom: 4rem;
            }
        }

        @media screen and (min-width: 40em) and (max-width: 63.9375em) {
            .page-header {
                padding-top: calc(208px + 5rem);
                padding-bottom: 5rem;
            }
        }

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

        @media screen and (max-width: 39.9375em) {
            .page-header h1 {
                font-size: 2.2rem;
            }
        }

        .page-header p {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Breadcrumb */
        .breadcrumb {
            background: var(--white);
            padding: 2rem 0;
        }

        .breadcrumb nav {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
            background: var(--cream);
            padding: 0.75rem 1.5rem;
            border-radius: 25px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .breadcrumb a {
            color: var(--primary-blue);
            text-decoration: none;
        }

        .breadcrumb a:hover,
        .breadcrumb a:focus {
            color: var(--primary-orange);
            outline: 2px solid var(--primary-orange);
            outline-offset: 2px;
        }

        .breadcrumb span {
            color: var(--dark-gray);
        }

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

        .content-layout {
            display: grid;
            gap: 3rem;
        }

        @media screen and (min-width: 64em) {
            .content-layout {
                grid-template-columns: 2fr 1fr;
            }
        }

        /* Left Content Column */
        .content-column {
            background: var(--white);
        }

        .content-column h2 {
            font-size: 2rem;
            color: var(--primary-blue);
            margin-bottom: 1.5rem;
            border-left: 4px solid var(--primary-orange);
            padding-left: 1rem;
        }

        .content-column h3 {
            font-size: 1.5rem;
            color: var(--primary-blue);
            margin: 2rem 0 1rem;
        }

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

        .content-column img {
            width: 100%;
            height: auto;
            border-radius: 15px;
            margin: 2rem 0;
            box-shadow: 0 5px 25px rgba(53, 90, 121, 0.1);
        }

        .content-column blockquote {
            background: var(--cream);
            padding: 2rem;
            border-left: 4px solid var(--primary-orange);
            border-radius: 10px;
            font-style: italic;
            margin: 2rem 0;
            color: var(--primary-blue);
        }

        /* Right Sidebar */
        .sidebar {
            background: var(--light-gray);
            padding: 2rem;
            border-radius: 20px;
            height: fit-content;
            position: sticky;
            top: calc(260px + 2rem);
        }

        @media screen and (max-width: 39.9375em) {
            .sidebar {
                top: calc(156px + 2rem);
            }
        }

        @media screen and (min-width: 40em) and (max-width: 63.9375em) {
            .sidebar {
                top: calc(208px + 2rem);
            }
        }

        .sidebar-section {
            margin-bottom: 2rem;
        }

        .sidebar-section:last-child {
            margin-bottom: 0;
        }

        .sidebar h3 {
            font-size: 1.3rem;
            color: var(--primary-blue);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .sidebar ul {
            list-style: none;
        }

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

        .sidebar ul li a {
            color: var(--dark-gray);
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem;
            border-radius: 5px;
        }

        .sidebar ul li a:hover,
        .sidebar ul li a:focus {
            color: var(--primary-orange);
            background: var(--white);
            transform: translateX(5px);
            outline: 2px solid var(--primary-orange);
            outline-offset: 2px;
        }

        .contact-card {
            background: var(--primary-blue);
            color: var(--white);
            padding: 1.5rem;
            border-radius: 15px;
            text-align: center;
        }

        .contact-card h4 {
            color: var(--primary-orange);
            margin-bottom: 1rem;
        }

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

        .contact-card a {
            color:#FFFFFF;
        }

        .contact-card a:hover {
            color:#F2F2F2;
        }

        /* Single Column Section */
        .single-column-section {
            padding: 4rem 0;
            background: var(--white);
        }

        .single-column-section h2 {
            font-size: 2.5rem;
            color: var(--primary-blue);
            margin-bottom: 2rem;
            text-align: center;
        }

        .single-column-section h3 {
            font-size: 2rem;
            color: var(--primary-blue);
            margin: 3rem 0 1.5rem;
            border-left: 4px solid var(--primary-orange);
            padding-left: 1rem;
        }

        .single-column-section p {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            color: var(--dark-gray);
            max-width: none;
        }

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

        .amenity-item {
            background: var(--cream);
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .amenity-item:hover,
        .amenity-item:focus-within {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(53, 90, 121, 0.1);
            border-color: var(--primary-orange);
        }

        .amenity-item i {
            font-size: 2.5rem;
            color: var(--primary-orange);
            margin-bottom: 1rem;
        }

        .amenity-item h4 {
            font-size: 1.3rem;
            color: var(--primary-blue);
            margin-bottom: 1rem;
        }

        .amenity-item p {
            color: var(--dark-gray);
            margin: 0;
        }

        .schedule-timeline {
            margin: 3rem 0;
        }

        .timeline-item {
            display: grid;
            gap: 1.5rem;
            margin-bottom: 2rem;
            padding: 1.5rem;
            background: var(--light-gray);
            border-radius: 15px;
            border-left: 4px solid var(--primary-orange);
            transition: all 0.3s ease;
        }

        @media screen and (min-width: 40em) {
            .timeline-item {
                grid-template-columns: 120px 1fr;
                align-items: center;
            }
        }

        .timeline-item:hover {
            transform: translateX(5px);
            box-shadow: 0 5px 20px rgba(53, 90, 121, 0.1);
        }

        .timeline-time {
            font-size: 1.1rem;
            font-weight: bold;
            color: var(--primary-blue);
            background: var(--white);
            padding: 0.5rem 1rem;
            border-radius: 25px;
            text-align: center;
            width: fit-content;
        }

        @media screen and (min-width: 40em) {
            .timeline-time {
                width: 100px;
            }
        }

        .timeline-content h5 {
            font-size: 1.2rem;
            color: var(--primary-blue);
            margin-bottom: 0.5rem;
        }

        .timeline-content p {
            color: var(--dark-gray);
            margin: 0;
        }

        /* Contact Section */
        .contact-section {
            padding: 6rem 0;
            background: var(--white);
            color: var(--dark-gray);
        }

        .contact-section h2 {
            font-size: 2.5rem;
            color: var(--primary-blue);
            margin-bottom: 2rem;
            text-align: center;
        }

        .contact-section p {
            font-size: 1.2rem;
            text-align: center;
            margin-bottom: 3rem;
            color: var(--dark-gray);
        }

        .contact-form-wrapper {
            max-width: 600px;
            margin: 0 auto;
            background: var(--light-gray);
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 5px 25px rgba(53, 90, 121, 0.1);
        }

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

        .cform-label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--primary-blue);
            font-weight: 500;
            font-size: 1rem;
        }

        .cform-required {
            color: var(--primary-orange);
            font-weight: bold;
        }

        .cform-input,
        .cform-textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.9);
            font-size: 1rem;
            color: var(--dark-gray);
            transition: all 0.3s ease;
        }

        .cform-input:focus,
        .cform-textarea:focus {
            outline: none;
            border-color: var(--primary-orange);
            box-shadow: 0 0 20px rgba(198, 141, 74, 0.3);
        }

        .cform-textarea {
            resize: vertical;
            min-height: 120px;
            font-family: inherit;
        }

        .cform-spam-note {
            font-size: 0.85rem;
            color: var(--cream);
            margin-top: 0.5rem;
            opacity: 0.8;
        }

        .pbutton {
            background: linear-gradient(135deg, var(--primary-orange) 0%, var(--light-orange) 100%);
            color: var(--white);
            padding: 1rem 2rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
            cursor: pointer;
            width: 100%;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(198, 141, 74, 0.3);
        }

        .pbutton:hover,
        .pbutton:focus {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(198, 141, 74, 0.4);
            outline: 2px solid var(--primary-orange);
            outline-offset: 2px;
        }

        .btn {
            padding: 1rem 2rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
            cursor: pointer;
            text-align: center;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary-orange) 0%, var(--light-orange) 100%);
            color: var(--white);
            box-shadow: 0 4px 20px rgba(198, 141, 74, 0.3);
        }

        .btn-primary:hover,
        .btn-primary:focus {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(198, 141, 74, 0.4);
            outline: 2px solid var(--primary-orange);
            outline-offset: 2px;
        }

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

        .btn-secondary:hover,
        .btn-secondary:focus {
            background: var(--primary-blue);
            color: var(--white);
            transform: translateY(-3px);
            outline: 2px solid var(--primary-blue);
            outline-offset: 2px;
        }

        /* Footer */
        footer {
            background: var(--dark-gray);
            color: var(--white);
            padding: 3rem 0 1rem;
        }

        .footer-content {
            display: grid;
            gap: 4rem;
        }

        @media screen and (min-width: 40em) {
            .footer-content {
                grid-template-columns: 2fr 1fr 1fr;
            }
        }

        .footer-section h3 {
            color: var(--primary-orange);
            margin-bottom: 1rem;
        }

        .footer-section p,
        .footer-section a {
            color: var(--light-gray);
            text-decoration: none;
            margin-bottom: 0.5rem;
            display: block;
        }

        .footer-section a:hover,
        .footer-section a:focus {
            color: var(--primary-orange);
            outline: 2px solid var(--primary-orange);
            outline-offset: 2px;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: var(--primary-blue);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .social-links a:hover,
        .social-links a:focus {
            background: var(--primary-orange);
            transform: translateY(-3px);
            color: var(--white);
            outline: 2px solid var(--primary-orange);
            outline-offset: 2px;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #444;
            color: var(--light-gray);
        }

        /* Utility Classes */
        .text-center { text-align: center; }
        .mt-2 { margin-top: 2rem; }
        .mb-2 { margin-bottom: 2rem; }

        /* Scroll behavior */
        html {
            scroll-behavior: smooth;
        }

        /* Header scroll effect */
        header.scrolled {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
        }

        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease forwards;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }