Changed around line 1
+ :root {
+ --primary-color: #76b900;
+ --secondary-color: #1a1a1a;
+ --text-color: #333;
+ --light-bg: #f5f5f5;
+ --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-color);
+ }
+
+ /* Header & Navigation */
+ .main-header {
+ position: fixed;
+ width: 100%;
+ background: rgba(26, 26, 26, 0.95);
+ backdrop-filter: blur(10px);
+ z-index: 1000;
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 1rem 5%;
+ max-width: 1400px;
+ margin: 0 auto;
+ }
+
+ .logo {
+ color: var(--primary-color);
+ font-size: 1.5rem;
+ font-weight: bold;
+ letter-spacing: 1px;
+ }
+
+ .nav-links {
+ display: flex;
+ list-style: none;
+ gap: 2rem;
+ }
+
+ .nav-links a {
+ color: white;
+ text-decoration: none;
+ transition: var(--transition);
+ }
+
+ .nav-links a:hover {
+ color: var(--primary-color);
+ }
+
+ /* Hero Section */
+ .hero {
+ height: 100vh;
+ background: linear-gradient(135deg, var(--secondary-color) 0%, #2a2a2a 100%);
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ text-align: center;
+ color: white;
+ position: relative;
+ overflow: hidden;
+ }
+
+ .hero::before {
+ content: '';
+ position: absolute;
+ width: 200%;
+ height: 200%;
+ background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
+ opacity: 0.1;
+ animation: pulse 15s infinite;
+ }
+
+ @keyframes pulse {
+ 0% { transform: scale(1); }
+ 50% { transform: scale(1.5); }
+ 100% { transform: scale(1); }
+ }
+
+ .hero-content {
+ position: relative;
+ z-index: 1;
+ }
+
+ .hero h1 {
+ font-size: 3.5rem;
+ margin-bottom: 1rem;
+ text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
+ }
+
+ /* Statement Sections */
+ .statement-section {
+ padding: 5rem 5%;
+ max-width: 1400px;
+ margin: 0 auto;
+ }
+
+ .content-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 2rem;
+ margin-top: 2rem;
+ }
+
+ .statement-card {
+ background: white;
+ padding: 2rem;
+ border-radius: 10px;
+ box-shadow: 0 10px 30px rgba(0,0,0,0.1);
+ transition: var(--transition);
+ }
+
+ .statement-card:hover {
+ transform: translateY(-5px);
+ box-shadow: 0 15px 40px rgba(0,0,0,0.15);
+ }
+
+ /* Innovation Section */
+ .accent {
+ background-color: var(--secondary-color);
+ color: white;
+ }
+
+ .innovation-showcase {
+ display: flex;
+ justify-content: center;
+ gap: 4rem;
+ margin-top: 3rem;
+ }
+
+ .stat-box {
+ text-align: center;
+ }
+
+ .stat-box .number {
+ font-size: 3rem;
+ font-weight: bold;
+ color: var(--primary-color);
+ }
+
+ /* Future Section */
+ .future-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ margin-top: 2rem;
+ }
+
+ .future-card {
+ background: var(--light-bg);
+ padding: 2rem;
+ border-radius: 10px;
+ transition: var(--transition);
+ }
+
+ .future-card:hover {
+ background: var(--primary-color);
+ color: white;
+ }
+
+ /* Contact Section */
+ .contact-section {
+ background: var(--light-bg);
+ padding: 5rem 5%;
+ }
+
+ .contact-form {
+ max-width: 600px;
+ margin: 2rem auto;
+ display: flex;
+ flex-direction: column;
+ gap: 1rem;
+ }
+
+ .contact-form input,
+ .contact-form textarea {
+ padding: 1rem;
+ border: 2px solid transparent;
+ border-radius: 5px;
+ transition: var(--transition);
+ }
+
+ .contact-form input:focus,
+ .contact-form textarea:focus {
+ border-color: var(--primary-color);
+ outline: none;
+ }
+
+ .contact-form button {
+ background: var(--primary-color);
+ color: white;
+ padding: 1rem;
+ border: none;
+ border-radius: 5px;
+ cursor: pointer;
+ transition: var(--transition);
+ }
+
+ .contact-form button:hover {
+ background: var(--secondary-color);
+ }
+
+ /* Footer */
+ footer {
+ background: var(--secondary-color);
+ color: white;
+ padding: 3rem 5%;
+ }
+
+ .footer-content {
+ max-width: 1400px;
+ margin: 0 auto;
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ gap: 2rem;
+ }
+
+ .footer-section h4 {
+ color: var(--primary-color);
+ margin-bottom: 1rem;
+ }
+
+ .footer-section ul {
+ list-style: none;
+ }
+
+ .footer-section a {
+ color: white;
+ text-decoration: none;
+ transition: var(--transition);
+ }
+
+ .footer-section a:hover {
+ color: var(--primary-color);
+ }
+
+ /* Mobile Responsiveness */
+ @media (max-width: 768px) {
+ .menu-toggle {
+ display: flex;
+ flex-direction: column;
+ gap: 5px;
+ cursor: pointer;
+ }
+
+ .menu-toggle span {
+ width: 25px;
+ height: 3px;
+ background: white;
+ transition: var(--transition);
+ }
+
+ .nav-links {
+ display: none;
+ position: absolute;
+ top: 100%;
+ left: 0;
+ right: 0;
+ background: var(--secondary-color);
+ flex-direction: column;
+ padding: 1rem;
+ text-align: center;
+ }
+
+ .nav-links.active {
+ display: flex;
+ }
+
+ .hero h1 {
+ font-size: 2.5rem;
+ }
+
+ .innovation-showcase {
+ flex-direction: column;
+ gap: 2rem;
+ }
+ }