Changed around line 1
+ :root {
+ --primary-color: #2d46b9;
+ --text-color: #333;
+ --bg-color: #fff;
+ --accent-color: #f0f4ff;
+ --transition: all 0.3s ease;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ html {
+ scroll-behavior: smooth;
+ }
+
+ body {
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
+ line-height: 1.6;
+ color: var(--text-color);
+ }
+
+ .container {
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 0 2rem;
+ }
+
+ /* Header & Navigation */
+ header {
+ position: fixed;
+ width: 100%;
+ background: rgba(255, 255, 255, 0.95);
+ backdrop-filter: blur(10px);
+ z-index: 1000;
+ box-shadow: 0 2px 20px rgba(0,0,0,0.1);
+ }
+
+ nav ul {
+ display: flex;
+ justify-content: center;
+ list-style: none;
+ padding: 1.5rem 0;
+ }
+
+ nav a {
+ color: var(--text-color);
+ text-decoration: none;
+ padding: 0.5rem 1.5rem;
+ margin: 0 0.5rem;
+ border-radius: 25px;
+ transition: var(--transition);
+ }
+
+ nav a:hover, nav a.active {
+ background: var(--accent-color);
+ color: var(--primary-color);
+ }
+
+ /* Hero Section */
+ .hero {
+ min-height: 100vh;
+ display: flex;
+ align-items: center;
+ background: linear-gradient(135deg, var(--accent-color) 0%, #fff 100%);
+ }
+
+ .hero h1 {
+ font-size: 3.5rem;
+ margin-bottom: 1rem;
+ }
+
+ .highlight {
+ color: var(--primary-color);
+ }
+
+ .tagline {
+ font-size: 1.5rem;
+ margin-bottom: 2rem;
+ }
+
+ /* Buttons */
+ .primary-btn {
+ background: var(--primary-color);
+ color: white;
+ border: none;
+ padding: 1rem 2rem;
+ border-radius: 25px;
+ cursor: pointer;
+ transition: var(--transition);
+ font-size: 1rem;
+ }
+
+ .primary-btn:hover {
+ transform: translateY(-2px);
+ box-shadow: 0 5px 15px rgba(45,70,185,0.3);
+ }
+
+ /* About Section */
+ #about {
+ padding: 6rem 0;
+ }
+
+ .about-grid {
+ display: grid;
+ grid-template-columns: 1fr 1fr;
+ gap: 4rem;
+ align-items: center;
+ }
+
+ .image-placeholder {
+ width: 100%;
+ padding-bottom: 100%;
+ background: var(--accent-color);
+ border-radius: 10px;
+ transition: var(--transition);
+ }
+
+ .image-placeholder:hover {
+ transform: rotate(5deg);
+ }
+
+ /* Contact Form */
+ #contact {
+ padding: 6rem 0;
+ background: var(--accent-color);
+ }
+
+ .form-group {
+ margin-bottom: 1.5rem;
+ }
+
+ label {
+ display: block;
+ margin-bottom: 0.5rem;
+ }
+
+ input, textarea {
+ width: 100%;
+ padding: 0.8rem;
+ border: 2px solid transparent;
+ border-radius: 8px;
+ transition: var(--transition);
+ }
+
+ input:focus, textarea:focus {
+ outline: none;
+ border-color: var(--primary-color);
+ }
+
+ textarea {
+ height: 150px;
+ resize: vertical;
+ }
+
+ /* Footer */
+ footer {
+ padding: 2rem 0;
+ text-align: center;
+ background: var(--text-color);
+ color: white;
+ }
+
+ /* Mobile Responsiveness */
+ @media (max-width: 768px) {
+ .hero h1 {
+ font-size: 2.5rem;
+ }
+
+ .about-grid {
+ grid-template-columns: 1fr;
+ }
+
+ nav ul {
+ flex-direction: column;
+ align-items: center;
+ }
+
+ nav a {
+ display: block;
+ margin: 0.5rem 0;
+ }
+ }