Changed around line 1
+ :root {
+ --primary: #8B4513;
+ --secondary: #DEB887;
+ --background: #FFF8DC;
+ --text: #2C1810;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Segoe UI', system-ui, sans-serif;
+ line-height: 1.6;
+ color: var(--text);
+ background: var(--background);
+ }
+
+ .container {
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 0 20px;
+ }
+
+ /* Header */
+ header {
+ background: var(--primary);
+ padding: 1rem 0;
+ position: fixed;
+ width: 100%;
+ z-index: 1000;
+ }
+
+ nav ul {
+ display: flex;
+ justify-content: center;
+ list-style: none;
+ gap: 2rem;
+ }
+
+ nav a {
+ color: white;
+ text-decoration: none;
+ font-weight: 500;
+ transition: color 0.3s ease;
+ }
+
+ nav a:hover {
+ color: var(--secondary);
+ }
+
+ /* Hero Section */
+ #hero {
+ height: 100vh;
+ display: flex;
+ align-items: center;
+ background: linear-gradient(45deg, var(--primary), var(--secondary));
+ color: white;
+ text-align: center;
+ }
+
+ #hero h1 {
+ font-size: 4rem;
+ margin-bottom: 1rem;
+ animation: fadeIn 1s ease-out;
+ }
+
+ /* Content Sections */
+ section {
+ padding: 5rem 0;
+ }
+
+ .content-grid {
+ display: grid;
+ grid-template-columns: 1fr 1fr;
+ gap: 2rem;
+ align-items: center;
+ }
+
+ /* Cards */
+ .fact-cards {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ margin-top: 2rem;
+ }
+
+ .card {
+ background: white;
+ padding: 2rem;
+ border-radius: 15px;
+ box-shadow: 0 4px 6px rgba(0,0,0,0.1);
+ text-align: center;
+ transition: transform 0.3s ease;
+ }
+
+ .card:hover {
+ transform: translateY(-5px);
+ }
+
+ /* Animations */
+ @keyframes fadeIn {
+ from { opacity: 0; transform: translateY(20px); }
+ to { opacity: 1; transform: translateY(0); }
+ }
+
+ .circle-animation {
+ width: 200px;
+ height: 200px;
+ background: linear-gradient(var(--primary), var(--secondary));
+ border-radius: 50%;
+ margin: auto;
+ animation: pulse 2s infinite;
+ }
+
+ @keyframes pulse {
+ 0% { transform: scale(1); }
+ 50% { transform: scale(1.05); }
+ 100% { transform: scale(1); }
+ }
+
+ /* Mobile Responsive */
+ @media (max-width: 768px) {
+ #hero h1 {
+ font-size: 2.5rem;
+ }
+
+ .content-grid {
+ grid-template-columns: 1fr;
+ }
+
+ nav ul {
+ flex-direction: column;
+ text-align: center;
+ gap: 1rem;
+ }
+ }