/* =========================================
   Apex Consulting | Style Guide
   ========================================= */

:root {
    /* Color Palette - Corporate & Trustworthy */
    --primary: #1e3a8a; /* Deep Navy */
    --primary-light: #2563eb;
    --secondary: #e5e7eb; /* Platinum */
    --accent: #d97706; /* Gold/Bronze */
    
    --text-main: #1f2937;
    --bg-light: #ffffff;
    --bg-alt: #f9fafb;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-body); color: var(--text-main); line-height: 1.6; }
h1, h2, h3 { font-family: var(--font-heading); color: var(--primary); font-weight: 700; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* Navbar */
.navbar { padding: 1.5rem 0; border-bottom: 1px solid var(--secondary); background: var(--bg-light); }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.8rem; font-weight: 800; color: var(--primary); }
.logo span { color: var(--accent); }
.nav-links { display: flex; gap: 2.5rem; list-style: none; font-weight: 500;}

/* Hero */
.hero { display: flex; align-items: center; min-height: 80vh; background: var(--bg-alt); }
.hero-content { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero h1 { font-size: 4rem; margin-bottom: 1.5rem; line-height: 1.1; }
.hero p { font-size: 1.2rem; color: #4b5563; margin-bottom: 2rem; }
.btn-primary { background: var(--primary); color: white; padding: 1rem 2.5rem; border-radius: 4px; font-weight: 600; display: inline-block; }
.hero-img { border-radius: 8px; box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); }

/* Grid Sections */
.section-padding { padding: 6rem 0; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.card { background: white; border: 1px solid var(--secondary); padding: 2rem; border-top: 4px solid var(--primary); border-radius: 4px; }
.card img { width: 100%; height: 200px; object-fit: cover; margin-bottom: 1.5rem; border-radius: 4px; }

/* Footer */
footer { background: var(--primary); color: white; padding: 4rem 0; text-align: center; }
