Changed around line 1
+ :root {
+ --primary: #2c3e50;
+ --secondary: #3498db;
+ --accent: #e74c3c;
+ --light: #ecf0f1;
+ --dark: #2c3e50;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Segoe UI', system-ui, sans-serif;
+ line-height: 1.6;
+ color: var(--dark);
+ }
+
+ /* Header & Navigation */
+ header {
+ background: var(--primary);
+ padding: 1rem;
+ position: fixed;
+ width: 100%;
+ z-index: 1000;
+ box-shadow: 0 2px 10px rgba(0,0,0,0.1);
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .logo {
+ color: var(--light);
+ font-size: 1.5rem;
+ font-weight: bold;
+ text-transform: uppercase;
+ }
+
+ .nav-links {
+ display: flex;
+ list-style: none;
+ }
+
+ .nav-links a {
+ color: var(--light);
+ text-decoration: none;
+ padding: 0.5rem 1rem;
+ transition: color 0.3s ease;
+ }
+
+ .nav-links a:hover {
+ color: var(--secondary);
+ }
+
+ /* Hero Section */
+ .hero {
+ height: 100vh;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ text-align: center;
+ padding: 2rem;
+ background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
+ color: var(--light);
+ }
+
+ .hero h1 {
+ font-size: 3rem;
+ margin-bottom: 1rem;
+ animation: fadeIn 1s ease-out;
+ }
+
+ .cta {
+ padding: 1rem 2rem;
+ font-size: 1.2rem;
+ background: var(--accent);
+ color: white;
+ border: none;
+ border-radius: 50px;
+ cursor: pointer;
+ transition: transform 0.3s ease;
+ }
+
+ .cta:hover {
+ transform: scale(1.05);
+ }
+
+ /* Story Grid */
+ .story-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 2rem;
+ padding: 2rem;
+ }
+
+ .story-card {
+ background: white;
+ border-radius: 10px;
+ overflow: hidden;
+ box-shadow: 0 4px 15px rgba(0,0,0,0.1);
+ transition: transform 0.3s ease;
+ }
+
+ .story-card:hover {
+ transform: translateY(-5px);
+ }
+
+ .card-content {
+ padding: 1.5rem;
+ }
+
+ /* Contact Form */
+ .contact-form {
+ max-width: 600px;
+ margin: 0 auto;
+ padding: 2rem;
+ }
+
+ .contact-form input,
+ .contact-form textarea {
+ width: 100%;
+ padding: 0.8rem;
+ margin-bottom: 1rem;
+ border: 1px solid #ddd;
+ border-radius: 5px;
+ }
+
+ /* Animations */
+ @keyframes fadeIn {
+ from { opacity: 0; transform: translateY(20px); }
+ to { opacity: 1; transform: translateY(0); }
+ }
+
+ /* Mobile Responsive */
+ @media (max-width: 768px) {
+ .menu-toggle {
+ display: block;
+ background: none;
+ border: none;
+ cursor: pointer;
+ }
+
+ .menu-toggle span {
+ display: block;
+ width: 25px;
+ height: 3px;
+ background: var(--light);
+ margin: 5px 0;
+ transition: 0.3s;
+ }
+
+ .nav-links {
+ display: none;
+ position: absolute;
+ top: 100%;
+ left: 0;
+ right: 0;
+ background: var(--primary);
+ flex-direction: column;
+ text-align: center;
+ }
+
+ .nav-links.active {
+ display: flex;
+ }
+ }