Changed around line 1
+ :root {
+ --primary: #6c5ce7;
+ --secondary: #a29bfe;
+ --accent: #fd79a8;
+ --dark: #2d3436;
+ --light: #f5f6fa;
+ --gradient: linear-gradient(135deg, var(--primary), var(--accent));
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Segoe UI', system-ui, sans-serif;
+ line-height: 1.6;
+ color: var(--dark);
+ background-color: var(--light);
+ }
+
+ header.hero {
+ background: var(--gradient);
+ color: white;
+ padding: 2rem 1rem;
+ position: relative;
+ overflow: hidden;
+ }
+
+ header.hero::before {
+ content: '';
+ position: absolute;
+ top: -50%;
+ left: -50%;
+ width: 200%;
+ height: 200%;
+ background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
+ animation: pulse 15s infinite alternate;
+ }
+
+ @keyframes pulse {
+ 0% { transform: rotate(0deg); }
+ 100% { transform: rotate(360deg); }
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 0 1rem;
+ }
+
+ .logo {
+ font-size: 1.8rem;
+ font-weight: 700;
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 1.5rem;
+ }
+
+ .nav-links a {
+ color: white;
+ text-decoration: none;
+ font-weight: 500;
+ transition: transform 0.3s;
+ }
+
+ .nav-links a:hover {
+ transform: translateY(-2px);
+ }
+
+ .cta-button {
+ background: white;
+ color: var(--primary);
+ padding: 0.5rem 1rem;
+ border-radius: 50px;
+ font-weight: 600;
+ }
+
+ .hero-content {
+ max-width: 1200px;
+ margin: 3rem auto;
+ padding: 0 1rem;
+ text-align: center;
+ }
+
+ .hero-content h1 {
+ font-size: 3rem;
+ margin-bottom: 1rem;
+ animation: fadeInUp 1s ease;
+ }
+
+ .hero-content p {
+ font-size: 1.2rem;
+ max-width: 600px;
+ margin: 0 auto 2rem;
+ opacity: 0.9;
+ }
+
+ .primary-button {
+ background: white;
+ color: var(--primary);
+ padding: 0.8rem 2rem;
+ border-radius: 50px;
+ font-weight: 600;
+ text-decoration: none;
+ display: inline-block;
+ transition: all 0.3s;
+ }
+
+ .primary-button:hover {
+ transform: scale(1.05);
+ box-shadow: 0 5px 15px rgba(0,0,0,0.1);
+ }
+
+ section {
+ padding: 4rem 1rem;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ h2 {
+ text-align: center;
+ margin-bottom: 3rem;
+ font-size: 2.2rem;
+ color: var(--primary);
+ }
+
+ .service-grid, .process-steps {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ }
+
+ .service-card, .process-step {
+ background: white;
+ padding: 2rem;
+ border-radius: 10px;
+ box-shadow: 0 5px 15px rgba(0,0,0,0.05);
+ transition: transform 0.3s;
+ text-align: center;
+ }
+
+ .service-card:hover, .process-step:hover {
+ transform: translateY(-10px);
+ }
+
+ .service-icon {
+ font-size: 2.5rem;
+ margin-bottom: 1rem;
+ }
+
+ .step-number {
+ background: var(--gradient);
+ color: white;
+ width: 50px;
+ height: 50px;
+ border-radius: 50%;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ margin: 0 auto 1rem;
+ font-weight: 700;
+ }
+
+ .about {
+ text-align: center;
+ background: rgba(108, 92, 231, 0.05);
+ border-radius: 20px;
+ margin: 2rem auto;
+ padding: 3rem;
+ }
+
+ .about-text {
+ max-width: 700px;
+ margin: 0 auto;
+ font-size: 1.1rem;
+ line-height: 1.8;
+ }
+
+ .contact-form {
+ max-width: 500px;
+ margin: 0 auto;
+ background: white;
+ padding: 2rem;
+ border-radius: 10px;
+ 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 #ddd;
+ border-radius: 5px;
+ font-family: inherit;
+ }
+
+ .form-group textarea {
+ min-height: 150px;
+ }
+
+ .submit-button {
+ background: var(--gradient);
+ color: white;
+ border: none;
+ padding: 0.8rem 2rem;
+ border-radius: 50px;
+ font-weight: 600;
+ cursor: pointer;
+ width: 100%;
+ transition: all 0.3s;
+ }
+
+ .submit-button:hover {
+ transform: translateY(-2px);
+ box-shadow: 0 5px 15px rgba(0,0,0,0.1);
+ }
+
+ footer {
+ background: var(--dark);
+ color: white;
+ padding: 3rem 1rem;
+ text-align: center;
+ }
+
+ .footer-content {
+ max-width: 1200px;
+ margin: 0 auto;
+ display: flex;
+ flex-direction: column;
+ gap: 2rem;
+ }
+
+ .footer-logo {
+ font-size: 1.8rem;
+ font-weight: 700;
+ }
+
+ .social-links {
+ display: flex;
+ justify-content: center;
+ gap: 1.5rem;
+ }
+
+ .social-links a {
+ color: white;
+ text-decoration: none;
+ }
+
+ @media (max-width: 768px) {
+ .hero-content h1 {
+ font-size: 2.2rem;
+ }
+
+ .nav-links {
+ gap: 1rem;
+ }
+
+ .service-grid, .process-steps {
+ grid-template-columns: 1fr;
+ }
+ }
+
+ @keyframes fadeInUp {
+ from {
+ opacity: 0;
+ transform: translateY(20px);
+ }
+ to {
+ opacity: 1;
+ transform: translateY(0);
+ }
+ }