body {
    background-color: #f4f4f4;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding: 20px;
    border-radius: 10px;
    max-width: 600px;
    margin: 20px auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-size: cover;
    background-image: url(../images/green1.jpg);
    background-position: bottom;
}
.container {
    max-width: 800px;
    margin: 50px auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h1 {
    font-size: 36px;
    margin-bottom: 30px;
    font-family: 'Courier New', Courier, monospace;
    text-align: center;
    color: #333;
}

p {
    margin-bottom: 20px;
    color: #555;
    font-size: 16px;
    line-height: 1.4;
    text-align: left;
}

ol {
    padding-left: 20px;
    margin-bottom: 20px;
}

ol li {
    margin-bottom: 10px;
    color: #0f0f0f;
}

strong {
    font-weight: bold;
    color: #333;
}

/* Highlights */
.highlight {
    background-color: #ffffcc;
    padding: 5px;
    border-radius: 3px;
}

.important {
    font-weight: bold;
    color: #e74c3c; /* Red */
}

.emphasize {
    font-style: italic;
    color: #3498db; /* Blue */
}

@media screen and (max-width: 768px) {
    h1 {
        font-size: 40px;
        margin-top: 100px;
        margin-left: 50px;
    }

    p {
        margin-left: 20px;
        font-size: 16px;
    }

    a.book-now {
        margin-left: 20px;
    }
}       
