:root { --primary-color: #2563eb; --secondary-color: #1e40af; --text-color: #1f2937; --background-color: #ffffff; --accent-color: #dbeafe; } * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif; line-height: 1.6; color: var(--text-color); } .navbar { display: flex; justify-content: space-between; align-items: center; padding: 1rem 5%; position: fixed; width: 100%; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); z-index: 1000; } .logo { font-size: 1.5rem; font-weight: bold; color: var(--primary-color); } .nav-links { display: flex; gap: 2rem; list-style: none; } @media (max-width: 768px) { .nav-links { position: fixed; top: 70px; left: 0; right: 0; flex-direction: column; background: rgba(255, 255, 255, 0.98); padding: 2rem; gap: 1.5rem; text-align: center; transform: translateY(-100%); transition: transform 0.3s ease; } .nav-links.active { transform: translateY(0); } } .nav-links a { text-decoration: none; color: var(--text-color); transition: color 0.3s ease; } .nav-links a:hover { color: var(--primary-color); } .hamburger { display: none; flex-direction: column; gap: 4px; cursor: pointer; } .hamburger span { width: 25px; height: 3px; background: var(--text-color); transition: 0.3s ease; } .hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--accent-color), var(--background-color)); padding: 2rem; } .hero-content { text-align: center; max-width: 800px; } .hero h1 { font-size: 3.5rem; margin-bottom: 1rem; animation: fadeInUp 1s ease; } .hero p { font-size: 1.25rem; margin-bottom: 2rem; animation: fadeInUp 1s ease 0.2s; opacity: 0; animation-fill-mode: forwards; } .cta-button { padding: 1rem 2rem; font-size: 1.1rem; background: var(--primary-color); color: white; border: none; border-radius: 5px; cursor: pointer; transition: background 0.3s ease; animation: fadeInUp 1s ease 0.4s; opacity: 0; animation-fill-mode: forwards; } .cta-button:hover { background: var(--secondary-color); } .features { padding: 5rem 2rem; background: var(--background-color); } .features h2 { text-align: center; margin-bottom: 3rem; } .feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; max-width: 1200px; margin: 0 auto; } .feature-card { padding: 2rem; text-align: center; background: white; border-radius: 10px; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); transition: transform 0.3s ease; } .feature-card:hover { transform: translateY(-5px); } .testimonials { padding: 5rem 2rem; background: linear-gradient(135deg, var(--accent-color) 0%, var(--background-color) 100%); } .testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; max-width: 1200px; margin: 0 auto; } .testimonial-card { background: white; padding: 2rem; border-radius: 10px; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); text-align: center; transition: transform 0.3s ease; } .testimonial-card:hover { transform: translateY(-5px); } .testimonial-avatar { font-size: 3rem; margin-bottom: 1rem; } .testimonial-text { font-style: italic; margin-bottom: 1rem; color: var(--text-color); } .testimonial-author { font-weight: bold; color: var(--primary-color); } .feature-icon { font-size: 2.5rem; margin-bottom: 1rem; } .contact { padding: 5rem 2rem; background: var(--accent-color); } .contact h2 { text-align: center; margin-bottom: 3rem; } #contact-form { display: flex; flex-direction: column; gap: 1rem; max-width: 600px; margin: 0 auto; } #contact-form input, #contact-form textarea { padding: 1rem; border: 1px solid #ddd; border-radius: 5px; font-size: 1rem; } #contact-form textarea { height: 150px; resize: vertical; } #contact-form button { padding: 1rem; background: var(--primary-color); color: white; border: none; border-radius: 5px; cursor: pointer; transition: background 0.3s ease; } #contact-form button:hover { background: var(--secondary-color); } footer { text-align: center; padding: 2rem; background: var(--text-color); color: white; } @keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } } @media (max-width: 768px) { .nav-links { display: none; } .hamburger { display: flex; } .hero h1 { font-size: 2.5rem; } .feature-grid { grid-template-columns: 1fr; } }