Changed around line 1
+ :root {
+ --primary-color: #3498db;
+ --secondary-color: #2ecc71;
+ --dark-color: #2c3e50;
+ --light-color: #ecf0f1;
+ --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Segoe UI', system-ui, sans-serif;
+ line-height: 1.6;
+ color: var(--dark-color);
+ }
+
+ .main-header {
+ background: var(--gradient);
+ padding: 1rem;
+ box-shadow: 0 2px 10px rgba(0,0,0,0.1);
+ position: fixed;
+ width: 100%;
+ top: 0;
+ z-index: 1000;
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: bold;
+ color: white;
+ text-shadow: 0 2px 4px rgba(0,0,0,0.1);
+ }
+
+ .nav-links a {
+ color: white;
+ text-decoration: none;
+ margin-left: 2rem;
+ transition: opacity 0.3s;
+ }
+
+ .nav-links a:hover {
+ opacity: 0.8;
+ }
+
+ .btn-account {
+ background: white;
+ color: var(--primary-color) !important;
+ padding: 0.5rem 1rem;
+ border-radius: 25px;
+ box-shadow: 0 2px 4px rgba(0,0,0,0.1);
+ }
+
+ .hero {
+ padding: 8rem 2rem 4rem;
+ background: var(--gradient);
+ color: white;
+ text-align: center;
+ min-height: 100vh;
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ justify-content: center;
+ }
+
+ .hero h1 {
+ font-size: 3rem;
+ margin-bottom: 1rem;
+ text-shadow: 0 2px 4px rgba(0,0,0,0.1);
+ }
+
+ .booking-card {
+ background: white;
+ padding: 2rem;
+ border-radius: 10px;
+ box-shadow: 0 4px 20px rgba(0,0,0,0.1);
+ width: 100%;
+ max-width: 500px;
+ margin: 2rem auto;
+ }
+
+ .form-group {
+ margin-bottom: 1.5rem;
+ }
+
+ .form-group label {
+ display: block;
+ margin-bottom: 0.5rem;
+ color: var(--dark-color);
+ }
+
+ .form-group input {
+ width: 100%;
+ padding: 0.8rem;
+ border: 2px solid var(--light-color);
+ border-radius: 5px;
+ transition: border-color 0.3s;
+ }
+
+ .form-group input:focus {
+ border-color: var(--primary-color);
+ outline: none;
+ }
+
+ .btn-primary {
+ background: var(--gradient);
+ color: white;
+ border: none;
+ padding: 1rem 2rem;
+ border-radius: 25px;
+ cursor: pointer;
+ width: 100%;
+ font-size: 1.1rem;
+ transition: transform 0.3s;
+ }
+
+ .btn-primary:hover {
+ transform: translateY(-2px);
+ }
+
+ .features {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ padding: 4rem 2rem;
+ background: white;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .feature {
+ text-align: center;
+ padding: 2rem;
+ border-radius: 10px;
+ background: white;
+ box-shadow: 0 4px 15px rgba(0,0,0,0.1);
+ transition: transform 0.3s;
+ }
+
+ .feature:hover {
+ transform: translateY(-5px);
+ }
+
+ .ratings {
+ padding: 4rem 2rem;
+ background: var(--light-color);
+ }
+
+ .ratings h2 {
+ text-align: center;
+ margin-bottom: 2rem;
+ }
+
+ .ratings-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 2rem;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ footer {
+ background: var(--dark-color);
+ color: white;
+ padding: 4rem 2rem;
+ }
+
+ .footer-content {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ gap: 2rem;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .footer-section a {
+ display: block;
+ color: var(--light-color);
+ text-decoration: none;
+ margin: 0.5rem 0;
+ transition: color 0.3s;
+ }
+
+ .footer-section a:hover {
+ color: var(--primary-color);
+ }
+
+ @media (max-width: 768px) {
+ .nav-links {
+ display: none;
+ }
+
+ .hero h1 {
+ font-size: 2rem;
+ }
+
+ .booking-card {
+ margin: 2rem 1rem;
+ }
+ }