 body {
            font-family: 'Times New Roman', Times, serif;
            margin: 0;
            padding: 0;
            background-color: #f4f4f4;
        }

       
        .container {
            max-width: 1200px;
            margin: 20px auto;
            padding: 20px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .amenities, .attractions {
            margin-top: 20px;
        }

        .amenities h3, .attractions h3 {
            border-bottom: 2px solid #4CAF50;
            padding-bottom: 10px;
        }

        .amenities-list, .attractions-list {
            list-style-type: none;
            padding: 0;
        }

        .amenities-list li, .attractions-list li {
            margin: 10px 0;
            padding: 5px;
            background: #eaeaea;
            border-radius: 5px;
        }

        .cta {
            text-align: center;
            margin-top: 30px;
            padding: 15px;
            background-color: #4CAF50;
            color: white;
            border-radius: 5px;
        }

        .cta a {
            color: white;
            text-decoration: none;
            font-weight: bold;
        }

        .cta a:hover {
            text-decoration: underline;
        }