:root {
  --primary: #0b3d2e;
  --accent: #d4a34f;
  --light: #f8f9f7;
  --dark: #1c1c1c;
}

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

body {
  font-family: "Segoe UI", sans-serif;
  background: var(--light);
  color: var(--dark);
  line-height: 1.6;
}

header {
  background: var(--primary);
  color: white;
  padding: 1.2rem 2rem;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav a {
  color: white;
  text-decoration: none;
  margin-left: 1.2rem;
  font-weight: 500;
}

nav a:hover {
  color: var(--accent);
}

.hero {
  padding: 4rem 2rem;
  text-align: center;
  background: linear-gradient(to right, #0b3d2e, #145c46);
  color: white;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  max-width: 700px;
  margin: auto;
}

.section {
  padding: 4rem 2rem;
  max-width: 1100px;
  margin: auto;
}

.section h2 {
  margin-bottom: 1rem;
  color: var(--primary);
}

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

.card {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.card img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 1rem;
}

footer {
  background: #111;
  color: #bbb;
  padding: 2rem;
  text-align: center;
  margin-top: 4rem;
}

footer p {
  font-size: 0.9rem;
}
.logo {
  width: 90px;
  height: auto;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links a {
  margin-left: 1.5rem;
  font-weight: 500;
}

.section-light {
  background: #ffffff;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.two-column img {
  width: 100%;
  border-radius: 8px;
}

.simple-card {
  text-align: center;
}

.contact-section {
  background: linear-gradient(to right, #0b3d2e, #145c46);
  color: white;
}

.contact-box {
  max-width: 600px;
  margin: auto;
  text-align: center;
  font-size: 1.05rem;
}

@media (max-width: 768px) {
  .two-column {
    grid-template-columns: 1fr;
  }

  .nav-links a {
    margin-left: 1rem;
  }
}

