        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f4f4f4;
            color: #333;
            line-height: 1.6;
        }

        .container {
            width: 80%;
            margin: auto;
            overflow: hidden;
            padding: 20px;
        }

        header {
            background: #e74c3c;
            /* Red */
            color: white;
            padding-top: 30px;
            min-height: 70px;
            border-bottom: 3px solid #c0392b;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        header img {
            width: 75px;
            height: 75px;
            border-radius: 50%;
            margin-right: 20px;
        }

        header h1 {
            text-align: center;
        }

        section {
            padding: 20px;
            background-color: #fff;
            margin-bottom: 20px;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }

        .booking-button {
            background-color: #27ae60;
            /* Green */
            color: white;
            padding: 10px 20px;
            text-decoration: none;
            border-radius: 5px;
            display: inline-block;
            margin-top: 10px;
        }

        footer {
            text-align: center;
            padding: 10px;
            background: #333;
            color: #fff;
        }

        .image-right {
            float: right;
            margin: 0 0 20px 20px;
            /* Top, Right, Bottom, Left */
            max-width: 40%;
            /* Adjust as needed */
            height: auto;
            border-radius: 8px;
            box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
        }

        .booking-section {
            overflow: hidden;
            /*  contain the floated image */
            display: flex;
            /*  make items side by side */
            align-items: center;
            /* Vertically center items */
        }

        #booking {
            flex: 1;
            /*  take up remaining space */
        }

        .features-list {
            list-style: none;
            padding: 0;
            margin-top: 15px;
        }

        .features-list li {
            margin-bottom: 8px;
            font-size: 16px;
        }

        .features-list li:before {
            content: "👨‍💻 ";
            /* Unicode character for a person at a computer */
        }