/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

/* Colors */
:root {
  --terra-cotta: #E2725B;
  --black: #1A1A1A;
  --soft-white: #F9F7F6;
  --clay-light: #D9C4B7;
  --clay-dark: #A17C6B;
}

body {
  background-color: var(--soft-white);
  line-height: 1.6;
}

header {
  background-color: var(--terra-cotta);
  padding: 15px 20px;
  color: white;
  text-align: center;
}

header h1 {
  margin-bottom: 10px;
}

nav ul.nav-list {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 10px;
}

nav ul.nav-list li a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 4px;
}

nav ul.nav-list li a:hover,
nav ul.nav-list li a.active {
  background-color: var(--black);
}

main {
  max-width: 1100px;
  margin: 20px auto;
  padding: 0 20px;
}

.hero {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 30px;
}

.hero img {
  width: 50%;
  border-radius: 10px;
}

.hero-text {
  width: 50%;
}

.hero-text h2 {
  color: var(--terra-cotta);
  margin-bottom: 10px;
}

.hero-text p {
  margin-bottom: 20px;
  font-size: 1.1em;
}

.btn {
  background-color: var(--terra-cotta);
  color: white;
  padding: 10px 18px;
  border: none;
  border-radius: 6px;
  margin-right: 12px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
}

.btn:hover {
  background-color: var(--clay-dark);
}

.mission {
  background-color: var(--clay-light);
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 30px;
}

.highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.highlights div {
  background-color: var(--soft-white);
  border: 1px solid var(--clay-dark);
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 0 8px rgba(0,0,0,0.05);
}

.highlights h4 {
  color: var(--terra-cotta);
  margin-bottom: 10px;
}

footer {
  background-color: var(--black);
  color: white;
  text-align: center;
  padding: 15px 20px;
  margin-top: 40px;
  font-size: 0.9em;
}

footer a {
  color: var(--terra-cotta);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
  }
  .hero img,
  .hero-text {
    width: 100%;
  }
}
