```css
/* Global Styles */
:root {
  --primary-brand-midnight: #0A1A2F;
  --steel-blue: #4A7CC0;
  --ivory: #F7F4EE;
  --core-neutrals-slate: #2F3B4C;
  --text-light: #6D7A8A;
  --soft-grey: #E6E6E6;
  --accent-gold: #C9A86A;
  --umber: #7A5E3A;

  --font-heading: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
}

body {
  font-family: var(--font-body);
  color: var(--primary-brand-midnight);
  background-color: var(--ivory);
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

.inv-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.inv-section {
  padding: 80px 0;
  position: relative;
}

.zg-micro {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-gold);
  margin-bottom: 10px;
}

.inv-heading-xl {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--primary-brand-midnight);
}

.inv-heading-l {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--primary-brand-midnight);
}

.inv-heading-m {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
  color: var(--primary-brand-midnight);
}

.inv-heading-s {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.2;
  color: var(--primary-brand-midnight);
}

.inv-body-l {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 25px;
}

.inv-body {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

.inv-body-s {
  font-size: 0.9375rem;
  color: var(--text-light);
  margin-bottom: 15px;
}

.inv-link {
  display: inline-block;
  color: var(--steel-blue);
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 30px;
  transition: color 0.3s ease;
}

.inv-link:hover {
  color: var(--accent-gold);
}

.inv-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.inv-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.inv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.inv-card-small {
  padding: 25px;
}

.inv-card-photo {
  width: 100%;
  height: 275px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 20px;
}

/* Hero Section */
.inv-hero {
  background-image: var(--hero-image, url('https://design.zimgerm.de/wp-content/uploads/2026/07/sector-agriculture.jpg-4.jpg'));
  background-size: cover;
  background-position: center;
  min-height: 60vh;
  display: flex;
  align-items: center;
  color: var(--ivory);
  position: relative;
  z-index: 1;
}

.inv-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(10, 26, 47, 0.8), rgba(10, 26, 47, 0.6));
  z-index: 2;
}

.inv-hero-inner {
  position: relative;
  z-index: 3;
  max-width: 700px;
  text-align: left;
}

.inv-hero h1 {
  color: var(--ivory);
  margin-bottom: 25px;
}

.inv-hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
}

/* Support Section */
.inv-support-wrap {
  background-color: var(--soft-grey);
}

.inv-card-small h3 {
  color: var(--primary-brand-midnight);
  font-size: 1.3rem;
  margin-bottom: 10px;
}

/* Investor Expectations Section */
.inv-intel {
  position: relative;
  padding: 80px 0;
}

.zg-side-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.zg-side-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inv-intel .inv-container {
  position: relative;
  z-index: 1;
  max-width: 65%;
  padding-right: 0;
}

.inv-intel-header {
  margin-bottom: 40px;
}

.inv-intel-intro {
  max-width: 600px;
  margin-left: 0;
}

.inv-risk-icon {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.inv-risk-icon svg {
  fill: var(--accent-gold);
}

.inv-intel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.inv-intel-block {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.inv-intel-block h3 {
  font-size: 1.4rem;
  color: var(--primary-brand-midnight);
}

/* Risks & Mitigations Section */
.inv-risk-wrap {
  background-color: var(--core-neutrals-slate);
  color: var(--ivory);
}

.inv-risk-wrap .inv-container {
  max-width: 70%;
  margin-left: 0;
  padding-left: 20px;
}

.inv-risk-wrap .zg-side-image {
  left: 0;
  right: auto;
}

.inv-risk-wrap .inv-heading-l {
  color: var(--ivory);
}

.inv-risk-wrap .inv-body {
  color: rgba(255, 255, 255, 0.8);
}

.inv-risk-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.inv-risk-list li {
  margin-bottom: 20px;
  padding-left: 30px;
  position: relative;
}

.inv-risk-list li::before {
  content: '•';
  color: var(--accent-gold);
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: -5px;
}

.inv-risk-list strong {
  color: var(--ivory);
  display: block;
  margin-bottom: 5px;
}

.inv-risk-list span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
}

/* CTA Section */
.inv-cta-wrap {
  background-color: var(--accent-gold);
  color: var(--primary-brand-midnight);
  text-align: center;
  padding: 80px 0;
}

.inv-cta-heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
}

.inv-cta-body {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 30px auto;
  color: var(--primary-brand-midnight);
}

.inv-cta-btn {
  display: inline-block;
  background-color: var(--primary-brand-midnight);
  color: var(--ivory);
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.inv-cta-btn:hover {
  background-color: var(--umber);
  transform: translateY(-3px);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .inv-hero-inner {
    text-align: center;
  }

  .inv-hero h1 {
    font-size: 2.8rem;
  }

  .inv-heading-l {
    font-size: 2rem;
  }

  .inv-heading-m {
    font-size: 1.5rem;
  }

  .inv-intel .inv-container {
    max-width: 100%;
  }

  .zg-side-image {
    display: none;
  }

  .inv-risk-wrap .inv-container {
    max-width: 100%;
    margin-left: auto;
    padding-left: 20px;
  }

  .inv-risk-wrap .zg-side-image {
    display: none;
  }
}

@media (max-width: 768px) {
  .inv-section {
    padding: 60px 0;
  }

  .inv-hero {
    min-height: 40vh;
  }

  .inv-hero h1 {
    font-size: 2.2rem;
  }

  .inv-heading-xl {
    font-size: 2.5rem;
  }

  .inv-heading-l {
    font-size: 1.75rem;
  }

  .inv-heading-m {
    font-size: 1.3rem;
  }

  .inv-body-l {
    font-size: 1.1rem;
  }

  .inv-body {
    font-size: 1rem;
  }

  .inv-cards-grid {
    grid-template-columns: 1fr;
  }

  .inv-cta-heading {
    font-size: 2rem;
  }

  .inv-cta-body {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .inv-hero h1 {
    font-size: 1.8rem;
  }

  .inv-hero p {
    font-size: 1rem;
  }

  .inv-heading-xl {
    font-size: 2rem;
  }

  .inv-heading-l {
    font-size: 1.5rem;
  }

  .inv-heading-m {
    font-size: 1.2rem;
  }

  .inv-card {
    padding: 20px;
  }

  .inv-cta-btn {
    padding: 12px 25px;
    font-size: 0.9rem;
  }
}



/* Override global risk container alignment for Agriculture */
.inv-risk-wrap .inv-container {
    max-width: 900px;       /* centered premium width */
    margin: 0 auto;         /* center horizontally */
    padding-left: 0;        /* remove left push */
    padding-right: 0;
}


/* Remove bullets for Agriculture */
.inv-risk-wrap .inv-risk-list li::before {
    content: none !important;
}


.inv-support-wrap {
    background-image: url('https://design.zimgerm.de/wp-content/uploads/2026/08/sup1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 0;
}


.inv-hero {
    background-image: var(--hero-image);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    
    display: flex;
    align-items: center;
    justify-content: flex-start; /* text on left side */
    
    min-height: 80vh; /* ensures enough height for text */
    padding: 0; /* remove fixed padding */
    position: relative;
}


.inv-pre-submit {
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 40px 0;
}


.inv-agri-intel {
  padding-top: 0;
  margin-top: -24px;
}
