:root {
    /* Updated Branding Palette */
    --bg: #F8FAFB;           /* Clean, trustworthy light background */
    --card-bg: #ffffff;      /* Pure white cards */
    --primary: #012E4A;      /* Deep Trust Navy */
    --accent: #00C2A0;       /* Innovation Teal */
    --text-main: #1A2B33;    /* Professional dark grey/blue text */
    --text-dim: #5E717D;     /* Subdued text for taglines */
    --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--bg);
    color: var(--text-main);
    line-height: 1.6;
}

.container { width: 90%; max-width: 1100px; margin: auto; }

/* Navigation & Logo */
nav { 
    padding: 1rem 0; 
    background: rgba(255, 255, 255, 0.95); 
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    position: sticky; 
    top: 0; 
    z-index: 100; 
}
.nav-container { display: flex; justify-content: space-between; align-items: center; }

/* Logo Styling */
.logo-box { display: flex; align-items: center; gap: 10px; }
.logo-img { height: 45px; width: auto; } /* Use this for your logo.png */
.logo-text { font-weight: 800; font-size: 1.1rem; color: var(--primary); letter-spacing: -0.5px; }

.nav-links { list-style: none; display: flex; align-items: center; }
.nav-links li { margin-left: 2rem; }
.nav-links a { text-decoration: none; color: var(--text-dim); font-size: 0.95rem; font-weight: 500; transition: 0.3s; }
.nav-links a:hover { color: var(--accent); }

/* Hero Section */
.hero { padding: 120px 0; text-align: center; background: radial-gradient(circle at top right, #e0f7f3, var(--bg)); }
.hero h1 { font-size: 3.8rem; line-height: 1.1; margin-bottom: 1.5rem; color: var(--primary); font-weight: 900; }
.highlight { color: var(--accent); }
.tagline { font-size: 1.3rem; color: var(--text-dim); max-width: 750px; margin: 0 auto 2.5rem; }

.cta-btn { 
    background: var(--primary); 
    color: var(--white); 
    padding: 1.1rem 2.8rem; 
    border-radius: 8px; 
    text-decoration: none; 
    font-weight: 700; 
    transition: 0.3s; 
    box-shadow: 0 4px 15px rgba(1, 46, 74, 0.2);
}
.cta-btn:hover { background: var(--accent); transform: translateY(-2px); }

/* Pitch Section */
.pitch { background: var(--white); padding: 80px 0; border-radius: 24px; margin: -50px auto 40px; box-shadow: 0 20px 40px rgba(0,0,0,0.05); }
.pitch-content { text-align: center; max-width: 850px; margin: auto; }
.metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 50px; }
.metric-card { border-right: 1px solid #eee; }
.metric-card:last-child { border: none; }
.metric-card strong { display: block; font-size: 2.8rem; color: var(--primary); margin-bottom: 5px; }
.metric-card span { font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--accent); }

/* Grid Layout */
.what-we-do { padding: 100px 0; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.feature-card { 
    background: var(--white); 
    padding: 40px; 
    border-radius: 16px; 
    border: 1px solid rgba(0,0,0,0.03); 
    transition: 0.4s ease; 
}
.feature-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.08); border-color: var(--accent); }
.feature-card h3 { color: var(--primary); margin-bottom: 15px; }

/* Ethics Section */
.ethics { padding: 100px 0; background: #f0f4f7; }
.ethics-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 20px; }
.ethic-point { display: flex; align-items: flex-start; background: var(--white); padding: 25px; border-radius: 12px; box-shadow: 0 4px 6px rgba(0,0,0,0.02); }
.num { color: var(--accent); font-weight: 900; margin-right: 15px; font-size: 1.2rem; }

/* Footer */
footer { padding: 80px 0 40px; text-align: center; background: var(--primary); color: var(--white); }
.footer-email { color: var(--accent); font-size: 2.2rem; text-decoration: none; font-weight: 800; display: block; margin: 25px 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 40px; font-size: 0.9rem; opacity: 0.7; }
.footer-links { margin-bottom: 30px; }
.footer-links a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.95rem; transition: 0.3s; }
.footer-links a:hover { color: var(--accent); }

/* Privacy Policy Page */
.policy-hero { padding: 80px 0 50px; text-align: center; background: radial-gradient(circle at top right, #e0f7f3, var(--bg)); }
.policy-hero h1 { font-size: 2.8rem; line-height: 1.2; margin-bottom: 1.2rem; color: var(--primary); font-weight: 900; }
.policy-effective { font-size: 0.9rem; color: var(--text-dim); margin-top: 1rem; }

.policy-content { padding: 60px 0 80px; }
.policy-container { max-width: 900px; }
.policy-section { margin-bottom: 40px; background: var(--white); padding: 35px 40px; border-radius: 16px; border: 1px solid rgba(0,0,0,0.03); box-shadow: 0 4px 6px rgba(0,0,0,0.02); }
.policy-section h2 { font-size: 1.5rem; color: var(--primary); margin-bottom: 15px; padding-bottom: 10px; border-bottom: 2px solid var(--accent); }
.policy-section h3 { font-size: 1.15rem; color: var(--primary); margin: 20px 0 10px; }
.policy-section p { color: var(--text-main); margin-bottom: 12px; line-height: 1.7; }
.policy-section ul { list-style: none; padding: 0; margin-bottom: 12px; }
.policy-section ul li { position: relative; padding-left: 20px; margin-bottom: 10px; line-height: 1.7; color: var(--text-main); }
.policy-section ul li::before { content: ""; position: absolute; left: 0; top: 10px; width: 8px; height: 8px; background: var(--accent); border-radius: 50%; }
.policy-section a { color: var(--accent); text-decoration: none; font-weight: 500; transition: 0.3s; }
.policy-section a:hover { color: var(--primary); }

@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .nav-links { display: none; }
    .metrics { grid-template-columns: 1fr; gap: 40px; }
    .metric-card { border: none; border-bottom: 1px solid #eee; padding-bottom: 20px; }
    .policy-hero h1 { font-size: 2rem; }
    .policy-section { padding: 25px 20px; }
}
