        body {
            font-family: Arial, sans-serif;
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
            line-height: 1.6;
        }
        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;
        }
        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;
            }
        }

