* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #ffffff;
  color: #1f2937;
  line-height: 1.6;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 10%;
  border-bottom: 1px solid #e5e7eb;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #b68b2d;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #1f2937;
  font-weight: 500;
}

.hero {
  padding: 100px 10%;
  text-align: center;
}

.eyebrow {
  color: #b68b2d;
  font-weight: bold;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero-text {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  color: #4b5563;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn {
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

.primary {
  background-color: #b68b2d;
  color: white;
}

.secondary {
  border: 2px solid #b68b2d;
  color: #b68b2d;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 60px 10%;
}

.card {
  background-color: #f9fafb;
  padding: 30px;
  border-radius: 12px;
}

.card h2 {
  margin-bottom: 15px;
  color: #b68b2d;
}

footer {
  text-align: center;
  padding: 40px;
  color: #6b7280;
}/* NAVBAR */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 60px;
    background: #f8f4ea;
    border-bottom: 2px solid #c8a24d;
}

.logo {
    width: 330px;
    height: auto;
    display: block;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-container img {
    mix-blend-mode: multiply;
}

nav {
    display: flex;
    gap: 28px;
}

nav a {
    text-decoration: none;
    color: #0f2e1f;
    font-weight: 600;
    font-size: 16px;
    transition: 0.3s ease;
}

nav a:hover {
    color: #b68b2d;
}