@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Open+Sans:wght@400;600&display=swap');

:root {
    --primary: #1a508b;
    --secondary: #27ae60;
    --dark: #2c3e50;
    --light: #f4f7f6;
    --white: #ffffff;
    --accent: #e67e22;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Open Sans', sans-serif; line-height: 1.8; color: var(--dark); background: #fff; }

/* Layout */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.bg-light { background: var(--light); }

/* Navigation */
header { background: var(--white); box-shadow: 0 2px 10px rgba(0,0,0,0.1); sticky; top: 0; z-index: 1000; }
nav { display: flex; justify-content: space-between; align-items: center; height: 80px; }
.logo { font-family: 'Montserrat'; font-size: 1.5rem; color: var(--primary); text-decoration: none; font-weight: 700; }
nav ul { display: flex; list-style: none; gap: 30px; }
nav a { text-decoration: none; color: var(--dark); font-weight: 600; font-size: 0.9rem; text-transform: uppercase; transition: 0.3s; }
nav a:hover { color: var(--secondary); }

/* Hero Section */
.hero { background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1471506480208-91b3a4cc78be?auto=format&fit=crop&q=80') center/cover; height: 60vh; display: flex; align-items: center; justify-content: center; color: white; text-align: center; }
.hero h1 { font-family: 'Montserrat'; font-size: 3.5rem; margin-bottom: 20px; }

/* Typography & Elements */
h2 { font-family: 'Montserrat'; font-size: 2.5rem; color: var(--primary); margin-bottom: 40px; text-align: center; }
h3 { margin-bottom: 15px; color: var(--primary); }
.lead { font-size: 1.2rem; color: #666; text-align: center; max-width: 800px; margin: 0 auto 50px; }

/* Grids & Cards */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.card { background: white; padding: 40px; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: 0.3s; border-bottom: 4px solid transparent; }
.card:hover { transform: translateY(-10px); border-color: var(--secondary); }

/* Finance Table & Bars */
.finance-box { background: white; padding: 30px; border-radius: 8px; margin-bottom: 20px; border: 1px solid #eee; }
.bar-container { background: #eee; height: 12px; border-radius: 6px; margin: 10px 0 25px; }
.bar-fill { background: var(--secondary); height: 100%; border-radius: 6px; }

/* Footer */
footer { background: var(--dark); color: white; padding: 60px 0 20px; }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid #444; font-size: 0.8rem; color: #aaa; }

/* Buttons */
.btn { padding: 15px 35px; background: var(--secondary); color: white; text-decoration: none; border-radius: 50px; font-weight: 700; display: inline-block; transition: 0.3s; border: none; cursor: pointer; }
.btn:hover { background: var(--primary); }