/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #fffdfb;
}
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* Header */
header {
  background: #fff;
  border-bottom: 2px solid #c0392b;
  padding: 10px 0;
}
.logo {
  height: 150px;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}
nav a {
  text-decoration: none;
  color: #c0392b;
  font-weight: bold;
}

/* Hero */
.hero {
  /*
  background: url('hero-bg.png') center/cover no-repeat;

   */
  text-align: center;
  color: #fff;
  background-color: #c0392b;
  padding: 120px 20px;
}
.hero h1 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}
.hero p {
  max-width: 700px;
  margin: 0 auto 20px;
  font-size: 1.1rem;
}
.btn {
  background: #fff;
  color: #c0392b;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background 0.3s ease;
}
.btn:hover {
  background: #f1f1f1;
}

/* Values section */
.values {
  padding: 60px 20px;
  background: #f9f9f9;
}
.values .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}
.value {
  flex: 1 1 30%;
  min-width: 250px;
  background: #fff;
  border: 1px solid #eee;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
}
.value h2 {
  color: #c0392b;
  margin-bottom: 10px;
}

/* Bio Style */
.bio p {
  margin-bottom: 1.5em; /* adds extra space between paragraphs */
}

/* Footer */
footer {
  background: #c0392b;
  color: #fff;
  text-align: center;
  padding: 15px;
  margin-top: 40px;
}
