 * {
     -webkit-box-sizing: border-box;
             box-sizing: border-box;
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     margin: 0;
     padding: 0;
 }

 body {
     display: flex;
     flex-direction: column;
     min-height: 100vh;
     color: #333;
     background-color: #fcfbf9;
 }

 /* Layout & Containers */
 .container {
     max-width: 1700px;
     margin: 0 auto;
     padding: 0 2rem;
 }

 .main-content {
     padding: 4rem 0;
     flex: 1;
 }

 /* Header & Nav */
 header {
     background-color: #ffffff;
     border-bottom: 1px solid #eaeaea;
     padding: 0.5rem 0;
     -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
             box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
 }

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

 .logo {
     font-size: 1.25rem;
     font-weight: bold;
     color: #005f73;
     text-decoration: none;
 }

 nav {
     display: flex;
     flex-wrap: wrap;
     gap: 1rem;
 }

 nav a {
     text-decoration: none;
     color: #555;
     font-weight: 500;
     font-size: 0.9rem;
     -webkit-transition: color 0.2s;
     transition: color 0.2s;
 }

 nav a:hover {
     color: #0a9396;
 }

 /* Hero Section */
 .hero {
     background: linear-gradient(135deg, #005f73 0%, #0a9396 100%);
     color: white;
     padding: 2.5rem 2rem;
     text-align: center;
     border-radius: 8px;
     margin-bottom: 2rem;
     -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
             box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
 }

 .hero h1 {
     font-size: 2rem;
     margin-bottom: 0.5rem;
 }

 .hero p {
     font-size: 1rem;
     max-width: 600px;
     margin: 0 auto;
     opacity: 0.9;
 }

 /* Grid & Cards */
 .grid {
     display: -ms-grid;
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 3fr));
     gap: 2rem;
 }

 .card {
     background: white;
     border: 1px solid #eaeaea;
     border-top: 4px solid #0a9396;
     border-radius: 8px;
     padding: 1.5rem;
     text-align: center;
     -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
             box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
     -webkit-transition: -webkit-transform 0.2s;
     transition: -webkit-transform 0.2s;
     transition: transform 0.2s;
     transition: transform 0.2s, -webkit-transform 0.2s;
 }

 .card:hover {
     -webkit-transform: translateY(-5px);
             transform: translateY(-5px);
 }

 .card-img-placeholder {
     height: 300px;
     background-color: #e9ecef;
     margin-bottom: 1.5rem;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #6c757d;
     font-size: 0.9rem;
 }

 img {
     width: auto;
     height: 100%;
     -o-object-fit: contain;
        object-fit: contain;
 }

 .card-img-placeholder img {
     width: 100%;
     height: auto;
     -o-object-fit: contain;
        object-fit: contain;
 }


 .card h2 {
     color: #005f73;
     margin-bottom: 0.75rem;
     font-size: 1.2rem;
 }

 .card p {
     font-size: 0.9rem;
     line-height: 1.5;
     color: #666;
     margin-bottom: 1.5rem;
 }

 /* Forms & Buttons */
 .btn {
     display: inline-block;
     padding: 0.6rem 1.2rem;
     background-color: #0a9396;
     color: white;
     text-decoration: none;
     border-radius: 4px;
     font-weight: bold;
     border: none;
     cursor: pointer;
     -webkit-transition: background 0.2s;
     transition: background 0.2s;
 }

 .btn:hover {
     background-color: #005f73;
 }

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

 .form-group label {
     display: block;
     margin-bottom: 0.5rem;
     font-weight: bold;
 }

 .form-group input,
 .form-group textarea {
     width: 100%;
     padding: 0.75rem;
     border: 1px solid #ccc;
     border-radius: 4px;
     font-size: 1rem;
 }

 /* FAQ List */
 .faq-list {
     list-style: none;
     padding: 0;
     max-width: 800px;
     margin: 0 auto;
 }

 .faq-list li {
     background: white;
     padding: 1.5rem;
     margin-bottom: 1rem;
     border-radius: 8px;
     border: 1px solid #eaeaea;
     -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
             box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
 }

 .faq-list strong {
     display: block;
     color: #005f73;
     margin-bottom: 0.5rem;
     font-size: 1.1rem;
 }

 /* Footer */
 footer {
     background-color: #333;
     color: #aaa;
     text-align: center;
     padding: 1rem 0;
     margin-top: auto;
     font-size: 0.85rem;
 }

 /* Horizontal List View (for Booking) */
 .list-view {
     display: flex;
     flex-direction: column;
     gap: 1.5rem;
 }

 .list-card {
     display: flex;
     flex-wrap: wrap;
     background: white;
     border: 1px solid #eaeaea;
     border-radius: 8px;
     overflow: hidden;
     -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
             box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
 }

 .list-card-img {
     flex: 0 0 280px;
     background-color: #e9ecef;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #6c757d;
     min-height: 200px;
     border-right: 1px solid #eaeaea;
 }

 .list-card-content {
     flex: 1;
     padding: 2rem;
     display: flex;
     flex-direction: column;
     justify-content: center;
     min-width: 300px;
 }

 .list-card h2 {
     color: #005f73;
     margin-bottom: 0.5rem;
 }

 .list-card p {
     color: #666;
     margin-bottom: 1.5rem;
     line-height: 1.6;
 }

 /* Split Layout (for Dining & Transit) */
 .split-layout {
     display: flex;
     flex-wrap: wrap;
     gap: 2rem;
 }

 .split-col {
     flex: 1;
     min-width: 300px;
     background: white;
     padding: 2.5rem;
     border-radius: 8px;
     border: 1px solid #eaeaea;
     -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
             box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
 }

 .split-col h2 {
     color: #005f73;
     margin-bottom: 1.5rem;
     border-bottom: 2px solid #0a9396;
     padding-bottom: 0.75rem;
 }

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

 .split-col li {
     margin-bottom: 1.5rem;
     padding-bottom: 1.5rem;
     border-bottom: 1px solid #eee;
 }

 .split-col li:last-child {
     border-bottom: none;
     margin-bottom: 0;
     padding-bottom: 0;
 }

 .split-col strong {
     display: block;
     font-size: 1.1rem;
     color: #333;
     margin-bottom: 0.25rem;
 }

 /* --- Footer Image Credits Pop-up --- */
 .credits-dropdown {
     position: relative;
 }

 .credits-summary {
     cursor: pointer;
     color: #ccc;
     outline: none;
     font-weight: 500;
     list-style: none;
 }

 .credits-summary span {
     text-decoration: underline;
 }

 .credits-box {
     position: absolute;
     bottom: 150%;
     right: 0;
     width: 320px;
     background-color: #222;
     border: 1px solid #444;
     border-radius: 8px;
     padding: 1.5rem;
     -webkit-box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.3);
             box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.3);
     text-align: left;
     z-index: 100;
 }

 /* Speech bubble Arrow */
 .credits-arrow {
     position: absolute;
     bottom: -7px;
     right: 40px;
     width: 12px;
     height: 12px;
     background-color: #222;
     border-bottom: 1px solid #444;
     border-right: 1px solid #444;
     -webkit-transform: rotate(45deg);
             transform: rotate(45deg);
 }

 .credits-content {
     max-height: 300px;
     overflow-y: auto;
     padding-right: 5px;
 }

 .credits-content h4 {
     color: #fff;
     margin-bottom: 0.5rem;
     border-bottom: 1px solid #444;
     padding-bottom: 0.25rem;
 }

 .credits-content ul {
     list-style: none;
     padding: 0;
     margin-bottom: 1.5rem;
     color: #aaa;
     font-size: 0.8rem;
 }

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

 /* Mobile tweak for credits box */
 @media (max-width: 768px) {
     .credits-box {
         right: auto;
         left: 0;
     }

     .credits-arrow {
         right: auto;
         left: 40px;
     }
 }