Changed around line 1
+ body {
+ font-family: 'Arial', sans-serif;
+ margin: 0;
+ padding: 0;
+ background: linear-gradient(135deg, #1e3c72, #2a5298);
+ color: white;
+ }
+
+ header {
+ text-align: center;
+ padding: 2rem;
+ background: rgba(0, 0, 0, 0.7);
+ }
+
+ h1 {
+ font-size: 3rem;
+ margin: 0;
+ }
+
+ p {
+ font-size: 1.2rem;
+ }
+
+ #hero {
+ background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAxMDAgMTAwIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIj48ZyBmaWxsPSJub25lIiBzdHJva2U9IiNmZmYiIHN0cm9rZS13aWR0aD0iMSI+PGNpcmNsZSBjeD0iNTAiIGN5PSI1MCIgcj0iNDUiLz48L2c+PC9zdmc+') no-repeat center center;
+ background-size: cover;
+ padding: 5rem 1rem;
+ text-align: center;
+ }
+
+ .hero-content {
+ max-width: 600px;
+ margin: 0 auto;
+ }
+
+ .cta-button {
+ background: #ff6f61;
+ color: white;
+ padding: 1rem 2rem;
+ text-decoration: none;
+ border-radius: 5px;
+ font-size: 1.2rem;
+ transition: background 0.3s ease;
+ }
+
+ .cta-button:hover {
+ background: #ff3b2f;
+ }
+
+ #features {
+ display: flex;
+ justify-content: space-around;
+ padding: 2rem;
+ background: rgba(255, 255, 255, 0.1);
+ }
+
+ .feature-card {
+ background: rgba(0, 0, 0, 0.5);
+ padding: 1.5rem;
+ border-radius: 10px;
+ text-align: center;
+ width: 30%;
+ }
+
+ #book-now {
+ padding: 2rem;
+ text-align: center;
+ }
+
+ form {
+ max-width: 400px;
+ margin: 0 auto;
+ display: flex;
+ flex-direction: column;
+ }
+
+ label {
+ margin-top: 1rem;
+ }
+
+ input, button {
+ padding: 0.5rem;
+ margin-top: 0.5rem;
+ border: none;
+ border-radius: 5px;
+ }
+
+ button {
+ background: #ff6f61;
+ color: white;
+ cursor: pointer;
+ transition: background 0.3s ease;
+ }
+
+ button:hover {
+ background: #ff3b2f;
+ }
+
+ footer {
+ text-align: center;
+ padding: 1rem;
+ background: rgba(0, 0, 0, 0.7);
+ }
+
+ @media (max-width: 768px) {
+ #features {
+ flex-direction: column;
+ }
+
+ .feature-card {
+ width: 100%;
+ margin-bottom: 1rem;
+ }
+ }