Changed around line 1
+ :root {
+ --primary-color: #2c3e50;
+ --accent-color: #e67e22;
+ --text-color: #333;
+ --light-bg: #f9f9f9;
+ --transition: all 0.3s ease;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Segoe UI', system-ui, sans-serif;
+ line-height: 1.6;
+ color: var(--text-color);
+ }
+
+ .hero {
+ min-height: 100vh;
+ background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('data:image/jpeg;base64,/9j/4AAQSkZJRg==') center/cover;
+ color: white;
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 1.5rem 5%;
+ position: fixed;
+ width: 100%;
+ z-index: 1000;
+ background: rgba(0,0,0,0.8);
+ backdrop-filter: blur(10px);
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: bold;
+ color: var(--accent-color);
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 2rem;
+ }
+
+ .nav-links a {
+ color: white;
+ text-decoration: none;
+ transition: var(--transition);
+ }
+
+ .cta-button {
+ background: var(--accent-color);
+ padding: 0.5rem 1rem;
+ border-radius: 25px;
+ }
+
+ .hero-content {
+ height: 100vh;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ text-align: center;
+ padding: 0 1rem;
+ }
+
+ .hero-content h1 {
+ font-size: 3.5rem;
+ margin-bottom: 1rem;
+ }
+
+ .primary-button {
+ display: inline-block;
+ padding: 1rem 2rem;
+ background: var(--accent-color);
+ color: white;
+ text-decoration: none;
+ border-radius: 30px;
+ margin-top: 2rem;
+ transition: var(--transition);
+ }
+
+ .features {
+ padding: 5rem 1rem;
+ background: var(--light-bg);
+ }
+
+ .feature-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 2rem;
+ }
+
+ .feature-card {
+ background: white;
+ padding: 2rem;
+ border-radius: 10px;
+ text-align: center;
+ box-shadow: 0 5px 15px rgba(0,0,0,0.1);
+ transition: var(--transition);
+ }
+
+ .feature-card:hover {
+ transform: translateY(-10px);
+ }
+
+ .feature-icon {
+ font-size: 2.5rem;
+ margin-bottom: 1rem;
+ }
+
+ .gallery {
+ padding: 5rem 1rem;
+ }
+
+ .gallery-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 1rem;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .gallery-item {
+ height: 300px;
+ background: #ddd;
+ position: relative;
+ overflow: hidden;
+ border-radius: 10px;
+ }
+
+ .overlay {
+ position: absolute;
+ bottom: 0;
+ left: 0;
+ right: 0;
+ background: rgba(0,0,0,0.7);
+ color: white;
+ padding: 1rem;
+ transform: translateY(100%);
+ transition: var(--transition);
+ }
+
+ .gallery-item:hover .overlay {
+ transform: translateY(0);
+ }
+
+ .contact {
+ padding: 5rem 1rem;
+ background: var(--light-bg);
+ }
+
+ .contact-container {
+ max-width: 600px;
+ margin: 0 auto;
+ }
+
+ .contact-form {
+ display: flex;
+ flex-direction: column;
+ gap: 1rem;
+ }
+
+ input, textarea {
+ padding: 1rem;
+ border: 1px solid #ddd;
+ border-radius: 5px;
+ font-family: inherit;
+ }
+
+ textarea {
+ min-height: 150px;
+ }
+
+ button[type="submit"] {
+ background: var(--accent-color);
+ color: white;
+ border: none;
+ padding: 1rem;
+ border-radius: 5px;
+ cursor: pointer;
+ transition: var(--transition);
+ }
+
+ footer {
+ background: var(--primary-color);
+ color: white;
+ padding: 2rem;
+ text-align: center;
+ }
+
+ .footer-links {
+ display: flex;
+ justify-content: center;
+ gap: 2rem;
+ margin-bottom: 1rem;
+ }
+
+ .footer-links a {
+ color: white;
+ text-decoration: none;
+ }
+
+ @media (max-width: 768px) {
+ .nav-links {
+ display: none;
+ }
+
+ .hero-content h1 {
+ font-size: 2.5rem;
+ }
+
+ .feature-grid {
+ grid-template-columns: 1fr;
+ }
+
+ .gallery-grid {
+ grid-template-columns: 1fr;
+ }
+ }