   body { 
	.booking-section {
    background-color: #fafafa;
    text-align: center;
    padding: 80px 20px;
    margin-top: 60px;
}

.booking-section h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #222;
}

.booking-section p {
    font-size: 1.1em;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #555;
}
.booking-button {
    display: inline-block;
    padding: 16px 40px;
    font-size: 1.1em;
    font-weight: bold;
    color: #fff;
    background-color: #222;
    border-radius: 40px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.booking-button:hover {
    background-color: #000;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}




