/* =====================================================
   GLOBAL RESET & BASE
===================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: #F7F5EF;
  color: #1E1E1E;
  line-height: 1.6;
}

/* =====================================================
   LAYOUT SPACING SYSTEM (IMPORTANT FIX)
===================================================== */

section {
  padding: 80px 24px;
}

@media (max-width: 768px) {
  section {
    padding: 60px 20px;
  }
}

/* =====================================================
   HEADER
===================================================== */

header {
  background: #0F3D2E;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  color: white;
  font-size: 20px;
  font-weight: bold;
}

nav {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

nav a {
  color: white;
  text-decoration: none;
  font-size: 14px;
}

nav .btn {
  background: #D4AF37;
  padding: 8px 14px;
  border-radius: 6px;
  color: #0F3D2E;
  font-weight: 600;
}

/* =====================================================
   HERO
===================================================== */

.hero {
  min-height: 100vh;
  background: linear-gradient(rgba(15,61,46,0.8), rgba(15,61,46,0.8)),
    url('../images/livestock-africa.jpg') center/cover;
  display: flex;
  align-items: center;
  color: white;
}

.hero-text {
  max-width: 650px;
}

.tag {
  color: #D4AF37;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 13px;
}

.hero h1 {
  font-size: 42px;
  margin: 18px 0;
}

.hero p {
  font-size: 17px;
  max-width: 550px;
}

.cta {
  margin-top: 25px;
}

.cta button {
  background: #D4AF37;
  border: none;
  padding: 14px 26px;
  margin-right: 10px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}

.cta .outline {
  background: transparent;
  border: 2px solid #D4AF37;
  color: white;
}

/* =====================================================
   STORY & TRUST
===================================================== */

.story,
.trust {
  display: flex;
  gap: 50px;
  align-items: center;
}

.story-text,
.trust div {
  flex: 1;
}

.story img,
.trust img {
  width: 100%;
  border-radius: 16px;
}

/* =====================================================
   INVESTMENTS
===================================================== */

.investments h2 {
  margin-bottom: 50px;
  font-size: 30px;
}

.investment-card {
  display: flex;
  gap: 40px;
  margin-bottom: 70px;
  align-items: center;
}

.investment-card img {
  width: 45%;
  border-radius: 16px;
}

.investment-card ul {
  margin-top: 15px;
  padding-left: 18px;
}

.reverse {
  flex-direction: row-reverse;
}

/* =====================================================
   MARKET
===================================================== */

.market {
  background: #0F3D2E;
  color: white;
}

.market h2 {
  margin-bottom: 40px;
}

.market-grid {
  display: flex;
  gap: 30px;
}

.market-grid div {
  background: rgba(255,255,255,0.08);
  padding: 25px;
  border-radius: 12px;
  flex: 1;
}

/* =====================================================
   SERVICES PREVIEW (FIXED — NO OVERRIDES)
===================================================== */

.services-preview {
  background: #ffffff;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.preview-card {
  padding: 30px;
  border-radius: 14px;
  background: #F7F5EF;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.preview-card h3 {
  margin-bottom: 12px;
}

.preview-card a {
  display: inline-block;
  margin-top: 15px;
  color: #0F3D2E;
  font-weight: 600;
  text-decoration: none;
}

/* =====================================================
   CONTENT PAGES
===================================================== */

.content {
  max-width: 1100px;
  margin: auto;
}

.content h1 {
  font-size: 34px;
  margin-bottom: 20px;
}

.content h2 {
  margin-top: 35px;
  margin-bottom: 10px;
}

/* =====================================================
   CEO SECTION
===================================================== */

.ceo-card {
  display: flex;
  gap: 24px;
  margin-top: 40px;
  align-items: center;
  background: white;
  padding: 24px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.ceo-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
}

.ceo-title {
  display: block;
  color: #0F3D2E;
  font-weight: 600;
  margin-bottom: 8px;
}

.read-more {
  display: inline-block;
  margin-top: 12px;
  color: #D4AF37;
  font-weight: 600;
  text-decoration: none;
}

/* =====================================================
   CEO PAGE
===================================================== */

.ceo-page .ceo-header {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-bottom: 32px;
}

.ceo-page .ceo-header img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
}

/* =====================================================
   FOOTER
===================================================== */

footer {
  background: #0F3D2E;
  color: white;
  text-align: center;
  padding: 24px;
  font-size: 14px;
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 768px) {

  header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .story,
  .trust,
  .investment-card,
  .investment-card.reverse,
  .ceo-card,
  .ceo-page .ceo-header {
    flex-direction: column;
    text-align: center;
  }

  .investment-card img {
    width: 100%;
  }

  .market-grid {
    flex-direction: column;
  }

  .cta button {
    width: 100%;
    margin-bottom: 12px;
  }
}

@media (max-width: 480px) {

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 15px;
  }
}

.clarification {
  background: #F7F5EF;
  border-left: 6px solid #0F3D2E;
  padding: 40px 28px;
  margin-top: 60px;
  border-radius: 12px;
  max-width: 1000px;
}

.clarification h3 {
  color: #0F3D2E;
  margin-bottom: 14px;
  font-size: 22px;
}

.clarification p {
  margin-bottom: 14px;
  font-size: 15px;
  color: #333;
}

@media (max-width: 768px) {
  .clarification {
    padding: 30px 20px;
  }
}

