Changed around line 1
+ :root {
+ --primary: #4a306d;
+ --secondary: #e7b9ff;
+ --accent: #ff9e7d;
+ --light: #f8f5ff;
+ --dark: #1e1a23;
+ --text: #333;
+ --text-light: #666;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Segoe UI', system-ui, sans-serif;
+ line-height: 1.6;
+ color: var(--text);
+ 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: 1.8rem;
+ font-weight: 700;
+ letter-spacing: 1px;
+ }
+
+ .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-color: var(--accent);
+ padding: 0.5rem 1rem;
+ border-radius: 2rem;
+ }
+
+ .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: 3.5rem;
+ margin-bottom: 1rem;
+ line-height: 1.2;
+ }
+
+ .hero-content p {
+ font-size: 1.2rem;
+ margin-bottom: 2rem;
+ max-width: 600px;
+ }
+
+ .primary-button {
+ background-color: 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;
+ }
+
+ h2 {
+ font-size: 2.5rem;
+ margin-bottom: 3rem;
+ text-align: center;
+ color: var(--primary);
+ }
+
+ .about-content {
+ max-width: 800px;
+ margin: 0 auto;
+ text-align: center;
+ }
+
+ .about-content p {
+ margin-bottom: 1.5rem;
+ font-size: 1.1rem;
+ }
+
+ .gallery-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 1rem;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .gallery-item {
+ overflow: hidden;
+ border-radius: 0.5rem;
+ box-shadow: 0 5px 15px rgba(0,0,0,0.1);
+ transition: transform 0.3s;
+ }
+
+ .gallery-item:hover {
+ transform: scale(1.03);
+ }
+
+ .gallery-item img {
+ width: 100%;
+ height: 250px;
+ object-fit: cover;
+ display: block;
+ }
+
+ .service-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 2rem;
+ max-width: 1000px;
+ margin: 0 auto;
+ }
+
+ .service-card {
+ background: white;
+ padding: 2rem;
+ border-radius: 0.5rem;
+ text-align: center;
+ box-shadow: 0 5px 15px rgba(0,0,0,0.05);
+ transition: transform 0.3s;
+ }
+
+ .service-card:hover {
+ transform: translateY(-10px);
+ }
+
+ .service-icon {
+ font-size: 3rem;
+ margin-bottom: 1rem;
+ }
+
+ .service-card h3 {
+ margin-bottom: 1rem;
+ color: var(--primary);
+ }
+
+ .contact-form {
+ max-width: 600px;
+ margin: 0 auto;
+ display: grid;
+ gap: 1rem;
+ }
+
+ .contact-form input,
+ .contact-form textarea {
+ width: 100%;
+ padding: 1rem;
+ border: 1px solid #ddd;
+ border-radius: 0.5rem;
+ font-family: inherit;
+ }
+
+ .contact-form textarea {
+ min-height: 150px;
+ resize: vertical;
+ }
+
+ .contact-form button {
+ background-color: var(--primary);
+ color: white;
+ border: none;
+ padding: 1rem;
+ border-radius: 0.5rem;
+ font-weight: 600;
+ cursor: pointer;
+ transition: background-color 0.3s;
+ }
+
+ .contact-form button:hover {
+ background-color: var(--dark);
+ }
+
+ footer {
+ background-color: var(--dark);
+ color: white;
+ padding: 3rem 1rem;
+ }
+
+ .footer-content {
+ max-width: 1200px;
+ margin: 0 auto;
+ display: grid;
+ grid-template-columns: 1fr 1fr;
+ gap: 2rem;
+ }
+
+ .footer-logo {
+ font-size: 1.5rem;
+ font-weight: 700;
+ }
+
+ .social-links {
+ display: flex;
+ gap: 1rem;
+ justify-content: flex-end;
+ }
+
+ .social-links a {
+ color: white;
+ text-decoration: none;
+ }
+
+ footer p {
+ grid-column: 1 / -1;
+ text-align: center;
+ margin-top: 2rem;
+ color: rgba(255,255,255,0.7);
+ }
+
+ @media (max-width: 768px) {
+ .nav-links {
+ display: none;
+ }
+
+ .hero-content h1 {
+ font-size: 2.5rem;
+ }
+
+ .footer-content {
+ grid-template-columns: 1fr;
+ text-align: center;
+ }
+
+ .social-links {
+ justify-content: center;
+ }
+ }
+
+ @keyframes fadeIn {
+ from { opacity: 0; transform: translateY(20px); }
+ to { opacity: 1; transform: translateY(0); }
+ }
+
+ section {
+ animation: fadeIn 0.8s ease-out forwards;
+ }
+
+ section:nth-child(1) { animation-delay: 0.1s; }
+ section:nth-child(2) { animation-delay: 0.2s; }
+ section:nth-child(3) { animation-delay: 0.3s; }