Changed around line 1
+ :root {
+ --primary-color: #1a73e8;
+ --secondary-color: #202124;
+ --background-color: #ffffff;
+ --text-color: #202124;
+ --accent-color: #fbbc04;
+ }
+
+ body {
+ font-family: 'Inter', sans-serif;
+ color: var(--text-color);
+ background-color: var(--background-color);
+ margin: 0;
+ padding: 0;
+ line-height: 1.6;
+ }
+
+ .hero {
+ background: linear-gradient(135deg, var(--primary-color), #6c5ce7);
+ color: white;
+ padding: 4rem 2rem;
+ text-align: center;
+ }
+
+ .logo {
+ font-size: 2rem;
+ font-weight: bold;
+ color: white;
+ }
+
+ .nav-links {
+ display: flex;
+ justify-content: center;
+ gap: 2rem;
+ margin-top: 1rem;
+ }
+
+ .nav-links a {
+ color: white;
+ text-decoration: none;
+ font-weight: 500;
+ }
+
+ .hero-content {
+ max-width: 800px;
+ margin: 0 auto;
+ }
+
+ .primary-button {
+ background-color: var(--accent-color);
+ color: var(--secondary-color);
+ padding: 0.75rem 2rem;
+ border-radius: 2rem;
+ text-decoration: none;
+ font-weight: bold;
+ display: inline-block;
+ margin-top: 1rem;
+ }
+
+ .about, .projects, .contact {
+ padding: 4rem 2rem;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .stats-grid, .project-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ margin-top: 2rem;
+ }
+
+ .stat-card, .project-card {
+ background-color: #f5f5f5;
+ padding: 2rem;
+ border-radius: 1rem;
+ text-align: center;
+ }
+
+ .stat-number {
+ font-size: 2.5rem;
+ font-weight: bold;
+ color: var(--primary-color);
+ }
+
+ .project-image {
+ height: 200px;
+ background-color: #e0e0e0;
+ border-radius: 1rem;
+ margin-bottom: 1rem;
+ }
+
+ .contact-form {
+ display: grid;
+ gap: 1rem;
+ max-width: 600px;
+ margin: 0 auto;
+ }
+
+ .contact-form input, .contact-form textarea {
+ padding: 0.75rem;
+ border: 1px solid #ccc;
+ border-radius: 0.5rem;
+ font-size: 1rem;
+ }
+
+ .footer-content {
+ background-color: var(--secondary-color);
+ color: white;
+ padding: 2rem;
+ text-align: center;
+ }
+
+ .footer-links {
+ display: flex;
+ justify-content: center;
+ gap: 2rem;
+ margin-bottom: 1rem;
+ }
+
+ .footer-links a {
+ color: white;
+ text-decoration: none;
+ }
+
+ @media (max-width: 768px) {
+ .nav-links {
+ flex-direction: column;
+ gap: 1rem;
+ }
+
+ .hero-content h1 {
+ font-size: 2rem;
+ }
+
+ .about, .projects, .contact {
+ padding: 2rem 1rem;
+ }
+ }