        body {
            font-family: Arial, sans-serif;
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
            line-height: 1.6;
        }
        a {
            color: #0056b3;
            text-decoration: none;
            font-weight: 700;
            text-underline-offset: 3px;
            text-decoration-thickness: 1.5px;
            transition: color 0.2s ease, text-decoration-color 0.2s ease, background-color 0.2s ease;
        }
        a:hover {
            color: #003f80;
            text-decoration: underline;
        }
        a:focus-visible {
            outline: 2px solid #0056b3;
            outline-offset: 2px;
        }
        header {
            text-align: center;
            margin-bottom: 30px;
        }
        .location-header {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            margin-bottom: 10px;
        }
        .flag {
            width: 40px;
            height: 40px;
            border-radius: 50%;
        }
        .selling-points {
            background-color: #f0f8ff;
            padding: 20px;
            border-radius: 8px;
            margin: 20px 0;
        }
        .pricing {
            background-color: #fffacd;
            padding: 20px;
            border-radius: 8px;
            margin: 20px 0;
            position: relative;
        }
        .rules {
            background-color: #ffe4e1;
            padding: 20px;
            border-radius: 8px;
            margin: 20px 0;
        }
        .book-now-btn {
            background-color: #007bff;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
            transition: background-color 0.3s;
        }
        .book-now-btn:hover {
            background-color: #0056b3;
        }
        .best-activity-widget-section {
            margin: 20px 0;
        }
        .activity-widget-heading {
            font-size: 1.1rem;
            font-weight: 600;
            margin: 0 0 0.5em;
            color: #333;
        }
        .featured-tour-card {
            background: #fff;
            border-radius: 12px;
            margin: 16px 0;
            box-shadow: 0 2px 8px rgba(15, 25, 21, 0.1);
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }
        .featured-tour-image {
            display: block;
            position: relative;
            width: 100%;
            aspect-ratio: 16 / 9;
            overflow: hidden;
            line-height: 0;
            flex-shrink: 0;
            background: #e8e4dc;
        }
        .featured-tour-img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
        }
        .featured-tour-content {
            padding: 16px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            min-width: 0;
        }
        @media (min-width: 700px) {
            .featured-tour-card {
                display: grid;
                grid-template-columns: 220px 1fr;
                align-items: start;
            }
            .featured-tour-image {
                width: 100%;
                max-width: none;
                aspect-ratio: 4 / 3;
            }
            .featured-tour-content {
                padding: 16px 18px;
            }
        }
        .featured-tour-card h2 {
            margin: 0;
            font-size: 1.35rem;
            color: #1e2125;
        }
        .featured-tour-meta {
            margin: 0;
            color: #555;
            font-size: 0.95rem;
        }
        .featured-tour-content > p {
            margin: 0;
        }
        .featured-tour-highlights {
            margin: 0;
            padding-left: 18px;
        }
        .featured-tour-highlights li {
            margin: 3px 0;
        }
        .tour-btn {
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            border-radius: 8px;
            padding: 12px 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 16px;
            font-weight: 700;
            line-height: 24px;
            width: 100%;
            box-sizing: border-box;
            margin-top: 4px;
        }
        .tour-btn--accent {
            background: #fff;
            border: 2px solid #e5dfd4;
            color: #1e2125 !important;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
        }
        .tour-btn--accent:hover {
            background: #fff;
            border-color: #e26a2c;
            color: #1e2125 !important;
            text-decoration: none !important;
            box-shadow: 0 2px 8px color-mix(in srgb, #e26a2c 22%, transparent);
        }
        .tour-btn--inline {
            width: auto;
            display: inline-flex;
            margin-top: 8px;
            padding: 10px 18px;
        }
        .tour-btn-external {
            width: 16px;
            height: 16px;
            flex-shrink: 0;
        }
        .visually-hidden {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }
        .popular-activity {
            display: grid;
            grid-template-columns: 96px 1fr;
            gap: 12px 14px;
            align-items: start;
            margin: 22px 0 28px;
        }
        .popular-activity-image {
            display: block;
            position: relative;
            width: 96px;
            aspect-ratio: 4 / 3;
            border-radius: 8px;
            overflow: hidden;
            background: #e8e4dc;
            flex-shrink: 0;
        }
        .popular-activity-img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
        }
        .popular-activity-body {
            min-width: 0;
        }
        .popular-activity h4 {
            margin: 0 0 6px;
            font-size: 1.15rem;
            color: #1e2125;
        }
        .popular-activity-meta {
            margin: 0 0 8px;
            color: #555;
            font-size: 0.95rem;
        }
        @media (min-width: 700px) {
            .popular-activity {
                grid-template-columns: 120px 1fr;
                gap: 12px 16px;
            }
            .popular-activity-image {
                width: 120px;
            }
        }
        footer {
            text-align: center;
            margin-top: 60px;
            padding-top: 60px;
            border-top: 1px solid #ccc;
            position: relative;
            overflow: hidden;
            padding-bottom: 100px;
        }
        .jetski-animation {
            position: fixed;
            top: 60px;
            width: 100px;
            height: auto;
            animation: rideWaves 6s ease-in-out;
            z-index: 1000;
        }
        @keyframes rideWaves {
            0% {
                left: -120px;
                transform: scaleX(1) rotate(0deg);
            }
            60% {
                left: calc(100% - 80px);
                transform: scaleX(1) rotate(0deg);
            }
            70% {
                left: calc(100% - 80px);
                transform: scaleX(-1) rotate(0deg);
            }
            100% {
                left: calc(100% - 80px);
                transform: scaleX(-1) rotate(360deg);
            }
        }

        /* PaxWidget mobile weather card overrides */
        @media (max-width: 600px) {
            .paxwidget-modal .weather-date-card {
                min-height: 100px !important;
                padding: 4px 2px 5px !important;
            }

            .paxwidget-modal .wdc-header {
                margin-bottom: 2px !important;
            }

            .paxwidget-modal .wdc-icon {
                min-height: 24px !important;
                margin-bottom: 2px !important;
            }

            .paxwidget-modal .wdc-icon-img {
                width: 24px !important;
                height: 24px !important;
            }

            .paxwidget-modal .wdc-icon.wdc-skeleton {
                min-height: 24px !important;
            }

            .paxwidget-modal .wdc-name {
                font-size: 7px !important;
            }

            .paxwidget-modal .wdc-hi {
                font-size: 9px !important;
            }

            .paxwidget-modal .wdc-cond {
                font-size: 7px !important;
                min-height: 1.5em !important;
                line-height: 1.2 !important;
            }

            .paxwidget-modal .wdc-footer {
                margin-top: 2px !important;
                padding-top: 2px !important;
            }

            .paxwidget-modal .wdc-date {
                font-size: 13px !important;
            }

            .paxwidget-modal .weather-date-card.selected .wdc-date {
                font-size: 14px !important;
            }

            .paxwidget-modal .calendar-grid {
                gap: 2px !important;
            }
        }

