*styles.css*
css
body {
  margin: 0;
  max-width: 700px;
  font-family: 'Arial', sans-serif;
  color: #2D2D2D; /* Mine Shaft */
  background-color: #F9F7F0; /* Milk */
}

h1, h2, h3, h4 {
  margin: 0 0 1rem;
}

section {
  padding: 4rem 2rem;
  text-align: center;
}

.hero {
  height: 100vh;
  background: linear-gradient(135deg, #2D2D2D, #A68763); /* Mine Shaft → Barley Corn */
  color: #F9F7F0; /* Milk */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero p {
  max-width: 700px;
  margin-bottom: 2rem;
}

.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.btn-primary {
  background: #F9F7F0; /* Milk */
  color: #2D2D2D; /* Mine Shaft */
}

.btn-primary:hover {
  background: #EAE0D2; /* White Rock */
}

.btn-secondary {
  background: #A68763; /* Barley Corn */
  color: #F9F7F0; /* Milk */
  border: none;
}

.btn-secondary:hover {
  background: #2D2D2D; /* Mine Shaft */
}

.ventures .cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background: #F9F7F0; /* Milk */
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.card a {
  color: #A68763; /* Barley Corn */
  font-weight: bold;
  text-decoration: none;
}

.card a:hover {
  text-decoration: underline;
}

.why .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.contact input, .contact textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 1rem;
  margin-bottom: 1rem;
}

.footer {
  background: #2D2D2D; /* Mine Shaft */
  color: #D7C9AE; /* Akaroa */
  padding: 2rem;
}