:root {
    --primary: #f39c12; /* Construction Orange */
    --dark: #2c3e50;
    --light: #f4f4f4;
}

body { font-family: 'Arial', sans-serif; margin: 0; color: #333; line-height: 1.6; }

/* Navigation */
nav { display: flex; justify-content: space-between; align-items: center; padding: 1rem 5%; background: var(--dark); color: white; }
.logo { font-weight: bold; font-size: 1.5rem; }
.logo span { color: var(--primary); }
nav ul { list-style: none; display: flex; gap: 20px; }
nav a { color: white; text-decoration: none; font-weight: bold; }

/* Hero Section */
.hero { 
    height: 60vh; 
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    display: flex; align-items: center; justify-content: center; color: white; text-align: center;
}
.main-btn { background: var(--primary); padding: 12px 25px; color: white; text-decoration: none; border-radius: 5px; font-weight: bold; }

/* Content */
.content-section { padding: 50px 10%; text-align: center; }
.stats { display: flex; justify-content: space-around; margin-top: 30px; border-top: 2px solid var(--primary); padding-top: 20px; }