Changed around line 1
+ :root {
+ --primary: #8e2de2;
+ --secondary: #4a00e0;
+ --accent: #ff5e62;
+ --light: #f9f9f9;
+ --dark: #222;
+ --gray: #777;
+ --light-gray: #eee;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ html {
+ scroll-behavior: smooth;
+ }
+
+ body {
+ font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
+ line-height: 1.6;
+ color: var(--dark);
+ background-color: var(--light);
+ overflow-x: hidden;
+ }
+
+ header.hero {
+ background: linear-gradient(135deg, var(--primary), var(--secondary));
+ color: white;
+ padding: 2rem 1rem;
+ min-height: 100vh;
+ display: flex;
+ flex-direction: column;
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 1rem 0;
+ }
+
+ .logo {
+ font-size: 2rem;
+ font-weight: 700;
+ letter-spacing: 2px;
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 1.5rem;
+ }
+
+ .nav-links a {
+ color: white;
+ text-decoration: none;
+ font-weight: 500;
+ transition: opacity 0.3s;
+ }
+
+ .nav-links a:hover {
+ opacity: 0.8;
+ }
+
+ .cta-button {
+ background: white;
+ color: var(--primary);
+ padding: 0.5rem 1.5rem;
+ border-radius: 2rem;
+ font-weight: 600;
+ }
+
+ .hero-content {
+ flex: 1;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ text-align: center;
+ max-width: 800px;
+ margin: 0 auto;
+ }
+
+ .hero-content h1 {
+ font-size: 4rem;
+ margin-bottom: 1rem;
+ letter-spacing: 5px;
+ }
+
+ .hero-content p {
+ font-size: 1.2rem;
+ margin-bottom: 2rem;
+ max-width: 600px;
+ }
+
+ .primary-button {
+ background: var(--accent);
+ color: white;
+ padding: 0.8rem 2rem;
+ border-radius: 2rem;
+ text-decoration: none;
+ font-weight: 600;
+ transition: transform 0.3s, box-shadow 0.3s;
+ }
+
+ .primary-button:hover {
+ transform: translateY(-3px);
+ box-shadow: 0 10px 20px rgba(0,0,0,0.1);
+ }
+
+ section {
+ padding: 5rem 1rem;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ h2 {
+ font-size: 2.5rem;
+ margin-bottom: 2rem;
+ text-align: center;
+ position: relative;
+ }
+
+ h2::after {
+ content: '';
+ display: block;
+ width: 80px;
+ height: 4px;
+ background: linear-gradient(to right, var(--primary), var(--accent));
+ margin: 1rem auto;
+ border-radius: 2px;
+ }
+
+ .about p {
+ text-align: center;
+ max-width: 700px;
+ margin: 0 auto 3rem;
+ font-size: 1.1rem;
+ color: var(--gray);
+ }
+
+ .stats-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ gap: 2rem;
+ margin-top: 3rem;
+ }
+
+ .stat-card {
+ text-align: center;
+ padding: 2rem;
+ background: white;
+ border-radius: 1rem;
+ box-shadow: 0 5px 15px rgba(0,0,0,0.05);
+ transition: transform 0.3s;
+ }
+
+ .stat-card:hover {
+ transform: translateY(-10px);
+ }
+
+ .stat-number {
+ font-size: 3rem;
+ font-weight: 700;
+ color: var(--primary);
+ margin-bottom: 0.5rem;
+ }
+
+ .gallery-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 1.5rem;
+ margin-top: 2rem;
+ }
+
+ .gallery-item {
+ aspect-ratio: 1/1;
+ overflow: hidden;
+ border-radius: 1rem;
+ box-shadow: 0 5px 15px rgba(0,0,0,0.1);
+ transition: transform 0.3s;
+ }
+
+ .gallery-item:hover {
+ transform: scale(1.03);
+ }
+
+ .gallery-img {
+ width: 100%;
+ height: 100%;
+ transition: transform 0.5s;
+ }
+
+ .gallery-item:hover .gallery-img {
+ transform: scale(1.1);
+ }
+
+ .process-steps {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 2rem;
+ margin-top: 3rem;
+ }
+
+ .process-step {
+ background: white;
+ padding: 2rem;
+ border-radius: 1rem;
+ box-shadow: 0 5px 15px rgba(0,0,0,0.05);
+ text-align: center;
+ }
+
+ .step-number {
+ width: 50px;
+ height: 50px;
+ background: linear-gradient(to right, var(--primary), var(--accent));
+ color: white;
+ border-radius: 50%;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ font-size: 1.5rem;
+ font-weight: 700;
+ margin: 0 auto 1rem;
+ }
+
+ .contact-form {
+ max-width: 600px;
+ margin: 2rem auto 0;
+ background: white;
+ padding: 2rem;
+ border-radius: 1rem;
+ box-shadow: 0 5px 15px rgba(0,0,0,0.05);
+ }
+
+ .form-group {
+ margin-bottom: 1.5rem;
+ }
+
+ .form-group label {
+ display: block;
+ margin-bottom: 0.5rem;
+ font-weight: 500;
+ }
+
+ .form-group input,
+ .form-group textarea {
+ width: 100%;
+ padding: 0.8rem;
+ border: 1px solid var(--light-gray);
+ border-radius: 0.5rem;
+ font-family: inherit;
+ }
+
+ .form-group textarea {
+ min-height: 150px;
+ resize: vertical;
+ }
+
+ .submit-button {
+ background: linear-gradient(to right, var(--primary), var(--accent));
+ color: white;
+ border: none;
+ padding: 0.8rem 2rem;
+ border-radius: 0.5rem;
+ font-weight: 600;
+ cursor: pointer;
+ transition: transform 0.3s;
+ width: 100%;
+ }
+
+ .submit-button:hover {
+ transform: translateY(-3px);
+ }
+
+ footer {
+ background: var(--dark);
+ color: white;
+ padding: 3rem 1rem;
+ text-align: center;
+ }
+
+ .footer-content {
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .social-links {
+ display: flex;
+ justify-content: center;
+ gap: 2rem;
+ margin-bottom: 2rem;
+ }
+
+ .social-links a {
+ color: white;
+ text-decoration: none;
+ transition: color 0.3s;
+ }
+
+ .social-links a:hover {
+ color: var(--accent);
+ }
+
+ @media (max-width: 768px) {
+ .hero-content h1 {
+ font-size: 3rem;
+ }
+
+ .nav-links {
+ display: none;
+ }
+
+ section {
+ padding: 3rem 1rem;
+ }
+ }
+
+ @media (max-width: 480px) {
+ .hero-content h1 {
+ font-size: 2.5rem;
+ }
+
+ .stats-grid,
+ .process-steps {
+ grid-template-columns: 1fr;
+ }
+ }