Changed around line 1
+ :root {
+ --primary: #4A90E2;
+ --secondary: #2C3E50;
+ --accent: #E74C3C;
+ --text: #333333;
+ --light: #F5F6FA;
+ --transition: all 0.3s ease;
+ }
+
+ * {
+ 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);
+ }
+
+ .navbar {
+ position: fixed;
+ top: 0;
+ width: 100%;
+ background: rgba(255, 255, 255, 0.95);
+ backdrop-filter: blur(10px);
+ padding: 1rem 2rem;
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ z-index: 1000;
+ box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: bold;
+ color: var(--primary);
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 2rem;
+ list-style: none;
+ }
+
+ .nav-links a {
+ text-decoration: none;
+ color: var(--text);
+ transition: var(--transition);
+ }
+
+ .nav-links a:hover {
+ color: var(--primary);
+ }
+
+ .cta-button {
+ background: var(--primary);
+ color: white !important;
+ padding: 0.5rem 1rem;
+ border-radius: 5px;
+ }
+
+ .hamburger {
+ display: none;
+ flex-direction: column;
+ gap: 6px;
+ cursor: pointer;
+ }
+
+ .hamburger span {
+ width: 25px;
+ height: 2px;
+ background: var(--text);
+ transition: var(--transition);
+ }
+
+ .hero {
+ padding: 8rem 2rem 4rem;
+ text-align: center;
+ background: linear-gradient(135deg, var(--light) 0%, #fff 100%);
+ }
+
+ .hero h1 {
+ font-size: 3rem;
+ margin-bottom: 1rem;
+ color: var(--secondary);
+ }
+
+ .hero-buttons {
+ display: flex;
+ gap: 1rem;
+ justify-content: center;
+ margin: 2rem 0;
+ }
+
+ .primary-button, .secondary-button {
+ padding: 1rem 2rem;
+ border-radius: 5px;
+ text-decoration: none;
+ transition: var(--transition);
+ }
+
+ .primary-button {
+ background: var(--primary);
+ color: white;
+ }
+
+ .secondary-button {
+ background: transparent;
+ border: 2px solid var(--primary);
+ color: var(--primary);
+ }
+
+ .feature-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ padding: 4rem 2rem;
+ }
+
+ .feature-card {
+ padding: 2rem;
+ text-align: center;
+ background: white;
+ border-radius: 10px;
+ box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
+ transition: var(--transition);
+ }
+
+ .feature-card:hover {
+ transform: translateY(-5px);
+ }
+
+ .price-card {
+ max-width: 400px;
+ margin: 2rem auto;
+ padding: 2rem;
+ text-align: center;
+ background: white;
+ border-radius: 10px;
+ box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
+ }
+
+ .price {
+ font-size: 3rem;
+ color: var(--primary);
+ margin: 1rem 0;
+ }
+
+ .features-list {
+ list-style: none;
+ margin: 2rem 0;
+ }
+
+ .buy-button {
+ display: inline-block;
+ padding: 1rem 2rem;
+ background: var(--primary);
+ color: white;
+ text-decoration: none;
+ border-radius: 5px;
+ transition: var(--transition);
+ }
+
+ footer {
+ background: var(--secondary);
+ color: white;
+ padding: 4rem 2rem;
+ }
+
+ .footer-content {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ gap: 2rem;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ @media (max-width: 768px) {
+ .hamburger {
+ display: flex;
+ }
+
+ .nav-links {
+ display: none;
+ position: absolute;
+ top: 100%;
+ left: 0;
+ width: 100%;
+ background: white;
+ flex-direction: column;
+ padding: 1rem;
+ text-align: center;
+ }
+
+ .nav-links.active {
+ display: flex;
+ }
+
+ .hero h1 {
+ font-size: 2rem;
+ }
+ }