:root {
    --navy-blue: #002366;
    --light-blue: #0044CC;
    --platinum: #E5E4E2;
    --white: #ffffff;
    --text-dark: #333333;
    
    --font-head: 'Montserrat', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: #f9f9f9;
    color: var(--text-dark);
    font-family: var(--font-body);
    line-height: 1.6;
}

.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section-padding { padding: 80px 0; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* Top Bar */
.top-header { background: var(--navy-blue); color: var(--platinum); font-size: 0.8rem; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.top-flex { display: flex; justify-content: flex-end; gap: 20px; }

/* Header */
.venture-header { background: var(--white); padding: 20px 0; box-shadow: 0 2px 15px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 1000; }
.header-row { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-head); font-size: 1.8rem; color: var(--navy-blue); font-weight: 400; letter-spacing: 1px; }
.bold { font-weight: 700; color: var(--light-blue); }

.corp-nav ul { display: flex; gap: 30px; list-style: none; align-items: center; }
.corp-nav a { font-weight: 500; font-size: 0.95rem; color: #555; }
.corp-nav a:hover, .corp-nav a.active { color: var(--navy-blue); font-weight: 700; }

.btn-navy { background: var(--navy-blue); color: var(--white) !important; padding: 10px 25px; border-radius: 4px; font-weight: 500; }
.btn-navy:hover { background: var(--light-blue); }

/* Mobile Menu */
.mobile-toggle { display: none; cursor: pointer; font-weight: 700; color: var(--navy-blue); border: 2px solid var(--navy-blue); padding: 5px 10px; }
.mobile-menu { position: fixed; top: 0; right: -100%; width: 100%; height: 100%; background: var(--white); z-index: 2000; display: flex; flex-direction: column; justify-content: center; align-items: center; transition: 0.4s; }
.mobile-menu.open { right: 0; }
.close-menu { position: absolute; top: 20px; right: 20px; background: none; border: none; font-size: 2rem; cursor: pointer; color: var(--navy-blue); }
.mobile-menu a { font-family: var(--font-head); font-size: 1.5rem; color: var(--navy-blue); margin: 15px 0; font-weight: 700; }

/* Hero */
.hero-invest { height: 75vh; background-size: cover; background-position: center; position: relative; }
.hero-shade { width: 100%; height: 100%; background: linear-gradient(90deg, rgba(0, 35, 102, 0.8) 0%, rgba(0, 35, 102, 0.2) 100%); display: flex; align-items: center; }
.hero-content { margin-left: 10%; color: var(--white); max-width: 600px; }
.hero-content h1 { font-family: var(--font-head); font-size: 3.5rem; line-height: 1.1; margin-bottom: 20px; }
.hero-content p { font-size: 1.2rem; margin-bottom: 30px; opacity: 0.9; }
.cta-group { display: flex; gap: 15px; }
.btn-primary { background: var(--light-blue); color: var(--white); padding: 12px 30px; border-radius: 4px; font-weight: 700; }
.btn-text { border: 2px solid var(--white); color: var(--white); padding: 10px 25px; border-radius: 4px; font-weight: 700; }
.btn-text:hover { background: var(--white); color: var(--navy-blue); }

/* Stats */
.stats-bar { background: var(--platinum); padding: 30px 0; border-bottom: 1px solid #ddd; }
.stats-flex { display: flex; justify-content: space-around; text-align: center; }
.stat-item .value { display: block; font-family: var(--font-head); font-size: 2.5rem; color: var(--navy-blue); font-weight: 700; line-height: 1; }
.stat-item .label { font-size: 0.9rem; color: #666; font-weight: 500; }

/* Opportunities */
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-family: var(--font-head); font-size: 2.5rem; color: var(--navy-blue); margin-bottom: 10px; }
.blue-line { width: 60px; height: 4px; background: var(--light-blue); margin: 0 auto; }
.blue-line.left { margin: 20px 0; }

.opportunity-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.opp-card { background: var(--white); border-radius: 8px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: 0.3s; position: relative; }
.opp-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.1); }
.tag { position: absolute; top: 15px; left: 15px; background: var(--navy-blue); color: var(--white); padding: 5px 10px; font-size: 0.8rem; font-weight: 700; border-radius: 4px; }
.opp-card img { width: 100%; height: 250px; object-fit: cover; }
.card-body { padding: 25px; }
.card-body h3 { font-family: var(--font-head); font-size: 1.3rem; margin-bottom: 10px; color: var(--text-dark); }
.meta { display: flex; justify-content: space-between; margin: 15px 0; font-size: 0.9rem; font-weight: 500; color: #555; border-top: 1px solid #eee; padding-top: 15px; }
.link-detail { color: var(--light-blue); font-weight: 700; font-size: 0.9rem; text-transform: uppercase; }

/* About & Contact */
.about-flex { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.text-block h1 { font-family: var(--font-head); font-size: 3rem; color: var(--navy-blue); line-height: 1.1; }
.services-list { list-style: none; margin-top: 30px; }
.services-list li { margin-bottom: 10px; font-weight: 500; font-size: 1.1rem; }
.img-block img { width: 100%; border-radius: 8px; box-shadow: 20px 20px 0 var(--platinum); }

.contact-box { display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px; background: var(--white); padding: 50px; border-radius: 8px; box-shadow: 0 5px 30px rgba(0,0,0,0.05); }
.info-panel { background: var(--navy-blue); color: var(--white); padding: 40px; border-radius: 8px; }
.info-panel h2 { font-family: var(--font-head); margin-bottom: 20px; color: var(--platinum); }
.details { margin-top: 30px; line-height: 2; }

.clean-form .form-group { margin-bottom: 20px; }
.clean-form label { display: block; font-weight: 700; font-size: 0.9rem; margin-bottom: 5px; color: var(--navy-blue); }
.clean-form input, .clean-form select, .clean-form textarea { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 4px; font-family: var(--font-body); }
.clean-form input:focus { border-color: var(--navy-blue); outline: none; }
.btn-submit { width: 100%; background: var(--light-blue); color: var(--white); border: none; padding: 15px; font-weight: 700; border-radius: 4px; cursor: pointer; transition: 0.3s; }
.btn-submit:hover { background: var(--navy-blue); }

/* Stories & Legal */
.story-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.story-card { background: var(--white); padding: 30px; border-radius: 8px; border: 1px solid #eee; }
.story-card.highlight { border-top: 5px solid var(--navy-blue); background: #fdfdfd; }
.quote { font-style: italic; color: #555; margin-bottom: 20px; }
.author strong { display: block; color: var(--navy-blue); font-family: var(--font-head); }
.author span { font-size: 0.8rem; color: #888; }

.legal-doc { max-width: 800px; margin: 0 auto; background: var(--white); padding: 60px; border-radius: 8px; }
.legal-doc h1 { font-family: var(--font-head); color: var(--navy-blue); }
.legal-doc h3 { color: var(--light-blue); margin-top: 30px; }

/* Footer */
.venture-footer { background: #1a1a1a; color: #ccc; padding: 60px 0 20px; margin-top: 80px; }
.footer-content { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #333; padding-bottom: 30px; margin-bottom: 20px; }
.f-col h4 { color: var(--white); font-family: var(--font-head); margin-bottom: 5px; }
.f-links a { color: #aaa; margin-left: 20px; }
.f-links a:hover { color: var(--white); }
.copyright { text-align: center; font-size: 0.8rem; }

/* Cookie */
.cookie-strip { position: fixed; bottom: 0; left: 0; width: 100%; background: var(--navy-blue); color: var(--white); padding: 15px; display: flex; justify-content: center; align-items: center; gap: 20px; z-index: 9999; transform: translateY(100%); transition: 0.5s; }
.cookie-strip.show { transform: translateY(0); }
.cookie-strip button { background: var(--white); color: var(--navy-blue); border: none; padding: 8px 20px; font-weight: 700; border-radius: 4px; cursor: pointer; }

@media (max-width: 900px) {
    .corp-nav { display: none; }
    .mobile-toggle { display: block; }
    .hero-content h1 { font-size: 2.5rem; }
    .opportunity-grid, .about-flex, .contact-box, .story-grid, .stats-flex { grid-template-columns: 1fr; }
    .stats-flex { gap: 30px; }
    .footer-content { flex-direction: column; text-align: center; gap: 20px; }
}