Changed around line 1
+ :root {
+ --primary-color: #007bff;
+ --secondary-color: #6c757d;
+ --background-color: #f8f9fa;
+ --text-color: #212529;
+ --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: var(--font-family);
+ color: var(--text-color);
+ background-color: var(--background-color);
+ line-height: 1.6;
+ }
+
+ .container {
+ width: 90%;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .header {
+ background-color: var(--primary-color);
+ color: white;
+ padding: 1rem 0;
+ }
+
+ .logo {
+ font-size: 2rem;
+ font-weight: bold;
+ }
+
+ .nav ul {
+ list-style: none;
+ display: flex;
+ gap: 1rem;
+ }
+
+ .nav a {
+ color: white;
+ text-decoration: none;
+ font-weight: bold;
+ }
+
+ .hero {
+ background: url('/images/hero.jpg') no-repeat center center/cover;
+ color: white;
+ padding: 5rem 0;
+ text-align: center;
+ }
+
+ .hero h2 {
+ font-size: 3rem;
+ margin-bottom: 1rem;
+ }
+
+ .hero p {
+ font-size: 1.2rem;
+ margin-bottom: 2rem;
+ }
+
+ .btn {
+ background-color: var(--primary-color);
+ color: white;
+ padding: 0.75rem 1.5rem;
+ text-decoration: none;
+ border-radius: 5px;
+ transition: background-color 0.3s;
+ }
+
+ .btn:hover {
+ background-color: darken(var(--primary-color), 10%);
+ }
+
+ .services, .fleet, .contact {
+ padding: 4rem 0;
+ }
+
+ .services h2, .fleet h2, .contact h2 {
+ text-align: center;
+ margin-bottom: 2rem;
+ }
+
+ .service-grid, .fleet-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ }
+
+ .service, .car {
+ background: white;
+ padding: 1.5rem;
+ border-radius: 10px;
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
+ text-align: center;
+ }
+
+ .service h3, .car h3 {
+ margin-bottom: 1rem;
+ }
+
+ .car img {
+ width: 100%;
+ border-radius: 10px;
+ margin-bottom: 1rem;
+ }
+
+ .contact form {
+ display: flex;
+ flex-direction: column;
+ gap: 1rem;
+ }
+
+ .contact input, .contact textarea {
+ padding: 0.75rem;
+ border: 1px solid var(--secondary-color);
+ border-radius: 5px;
+ }
+
+ .footer {
+ background-color: var(--primary-color);
+ color: white;
+ text-align: center;
+ padding: 1rem 0;
+ }
+
+ @media (max-width: 768px) {
+ .nav ul {
+ flex-direction: column;
+ align-items: center;
+ }
+
+ .hero h2 {
+ font-size: 2rem;
+ }
+
+ .hero p {
+ font-size: 1rem;
+ }
+ }