Changed around line 1
+ :root {
+ --primary-color: #2196f3;
+ --secondary-color: #1976d2;
+ --text-color: #333;
+ --background-color: #fff;
+ --accent-color: #64b5f6;
+ }
+
+ * {
+ 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);
+ }
+
+ /* Header & Navigation */
+ header {
+ background: var(--background-color);
+ box-shadow: 0 2px 10px rgba(0,0,0,0.1);
+ position: fixed;
+ width: 100%;
+ top: 0;
+ z-index: 1000;
+ }
+
+ nav {
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 1rem;
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ }
+
+ .logo {
+ display: flex;
+ align-items: center;
+ gap: 0.5rem;
+ }
+
+ .wave-icon {
+ width: 40px;
+ height: 40px;
+ background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
+ border-radius: 50%;
+ position: relative;
+ overflow: hidden;
+ }
+
+ .wave-icon::after {
+ content: '';
+ position: absolute;
+ width: 100%;
+ height: 100%;
+ background: radial-gradient(circle at center, transparent 30%, rgba(255,255,255,0.3) 70%);
+ animation: wave 2s infinite linear;
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 2rem;
+ list-style: none;
+ }
+
+ .nav-links a {
+ text-decoration: none;
+ color: var(--text-color);
+ font-weight: 500;
+ transition: color 0.3s ease;
+ }
+
+ .nav-links a:hover {
+ color: var(--primary-color);
+ }
+
+ /* Hero Section */
+ .hero {
+ height: 100vh;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ position: relative;
+ overflow: hidden;
+ padding-top: 80px;
+ }
+
+ .hero-content {
+ text-align: center;
+ z-index: 1;
+ }
+
+ .hero h2 {
+ font-size: 3.5rem;
+ margin-bottom: 1rem;
+ background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ }
+
+ .wave-animation {
+ position: absolute;
+ bottom: 0;
+ left: 0;
+ width: 100%;
+ height: 100px;
+ background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
+ opacity: 0.1;
+ transform: skewY(-3deg);
+ }
+
+ /* Features Section */
+ .features {
+ padding: 5rem 2rem;
+ background: #f8f9fa;
+ }
+
+ .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: var(--background-color);
+ padding: 2rem;
+ border-radius: 10px;
+ box-shadow: 0 4px 20px rgba(0,0,0,0.1);
+ transition: transform 0.3s ease;
+ }
+
+ .feature-card:hover {
+ transform: translateY(-5px);
+ }
+
+ /* Responsive Design */
+ @media (max-width: 768px) {
+ .nav-links {
+ display: none;
+ }
+
+ .menu-toggle {
+ display: block;
+ }
+
+ .hero h2 {
+ font-size: 2.5rem;
+ }
+ }
+
+ /* Animations */
+ @keyframes wave {
+ 0% { transform: translateY(0); }
+ 50% { transform: translateY(-10px); }
+ 100% { transform: translateY(0); }
+ }