Changed around line 1
+ :root {
+ --primary-color: #0066cc;
+ --secondary-color: #ff9900;
+ --background-color: #ffffff;
+ --text-color: #333333;
+ --shadow-color: rgba(0, 0, 0, 0.1);
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Segoe UI', sans-serif;
+ line-height: 1.6;
+ color: var(--text-color);
+ }
+
+ .main-header {
+ position: fixed;
+ width: 100%;
+ background: rgba(255, 255, 255, 0.95);
+ padding: 1rem 2rem;
+ box-shadow: 0 2px 10px var(--shadow-color);
+ z-index: 1000;
+ backdrop-filter: blur(10px);
+ }
+
+ .nav-menu {
+ display: flex;
+ gap: 2rem;
+ align-items: center;
+ }
+
+ .nav-menu a {
+ text-decoration: none;
+ color: var(--text-color);
+ font-weight: 500;
+ transition: color 0.3s ease;
+ }
+
+ .nav-menu a:hover {
+ color: var(--primary-color);
+ }
+
+ .phone-button {
+ background: var(--primary-color);
+ color: white !important;
+ padding: 0.5rem 1rem;
+ border-radius: 25px;
+ transition: transform 0.3s ease;
+ }
+
+ .phone-button:hover {
+ transform: translateY(-2px);
+ }
+
+ .hero {
+ height: 100vh;
+ background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('hero-bg.jpg');
+ background-size: cover;
+ background-position: center;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ text-align: center;
+ color: white;
+ }
+
+ .service-card {
+ background: white;
+ padding: 2rem;
+ border-radius: 10px;
+ box-shadow: 0 5px 15px var(--shadow-color);
+ transition: transform 0.3s ease;
+ }
+
+ .service-card:hover {
+ transform: translateY(-10px);
+ }
+
+ .contact-form {
+ max-width: 600px;
+ margin: 0 auto;
+ padding: 2rem;
+ }
+
+ .form-group {
+ margin-bottom: 1.5rem;
+ }
+
+ input, textarea {
+ width: 100%;
+ padding: 1rem;
+ border: 2px solid transparent;
+ border-radius: 5px;
+ background: #f5f5f5;
+ transition: border-color 0.3s ease;
+ }
+
+ input:focus, textarea:focus {
+ border-color: var(--primary-color);
+ outline: none;
+ }
+
+ .submit-button {
+ background: var(--primary-color);
+ color: white;
+ padding: 1rem 2rem;
+ border: none;
+ border-radius: 25px;
+ cursor: pointer;
+ transition: transform 0.3s ease;
+ }
+
+ .submit-button:hover {
+ transform: translateY(-2px);
+ }
+
+ @media (max-width: 768px) {
+ .nav-menu {
+ display: none;
+ }
+
+ .service-grid {
+ grid-template-columns: 1fr;
+ }
+ }