/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.site-header {
  background: #0c4b33;
  padding: 1rem 0;
  color: #fff;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

.nav a {
  margin-left: 1.5rem;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav a:hover {
  color: #ffd700;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #0c4b33, #1e7f56);
  color: #fff;
  padding: 4rem 0;
}

.hero-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.hero-copy {
  flex: 1;
  min-width: 300px;
  padding-right: 2rem;
}

.hero-copy h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-copy p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.cta {
  background: #ffd700;
  color: #0c4b33;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.cta:hover {
  background: #e6c200;
}

.hero-art {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.hero-art img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Main Content */
.content {
  padding: 3rem 0;
}

.content article h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #0c4b33;
}

.content article h3 {
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  color: #1e7f56;
}

.content article h4 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.content article p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.content article ul,
.content article ol {
  margin: 1rem 0 1rem 2rem;
}

.content article li {
  margin-bottom: 0.5rem;
}

/* Footer */
.site-footer {
  background: #0c4b33;
  color: #fff;
  text-align: center;
  padding: 1.5rem 0;
  margin-top: 2rem;
}

.site-footer p {
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
  }
  .hero-copy {
    padding-right: 0;
    margin-bottom: 2rem;
  }
  .nav {
    display: none;
  }
}
