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

body {
  font-family: 'Georgia', 'Garamond', serif;
  background-color: #faf8f3;
  color: #2c2c2c;
  line-height: 1.7;
  font-size: 16px;
}

header {
  background-color: #f5f1e8;
  border-bottom: 2px solid #d4cfc4;
  padding: 2rem 0;
  margin-bottom: 3rem;
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #1a3a3a;
  letter-spacing: -0.5px;
}

header p {
  font-size: 1.1rem;
  color: #5a5a5a;
  font-style: italic;
  font-weight: 300;
}

.header-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

main {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

nav {
  margin: 2rem 0;
  padding: 1.5rem 0;
  border-bottom: 1px solid #e0d9ce;
}

nav a {
  display: inline-block;
  margin-right: 2rem;
  text-decoration: none;
  color: #1a3a3a;
  font-weight: 500;
  font-size: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid transparent;
  transition: border-bottom 0.3s ease;
}

nav a:hover {
  border-bottom: 2px solid #8b7355;
}

nav a.active {
  border-bottom: 2px solid #8b7355;
}

.hero {
  text-align: center;
  margin: 4rem 0;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, #f5f1e8 0%, #fffbf5 100%);
  border-radius: 4px;
  border: 1px solid #e0d9ce;
}

.hero h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #1a3a3a;
  font-weight: 600;
}

.hero p {
  font-size: 1.2rem;
  color: #5a5a5a;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

.section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 3rem 0;
}

.section-card {
  background: white;
  border: 1px solid #e0d9ce;
  border-radius: 4px;
  padding: 2.5rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
}

.section-card:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  border-color: #8b7355;
  transform: translateY(-2px);
}

.section-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #1a3a3a;
}

.section-card p {
  color: #5a5a5a;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.section-label {
  display: inline-block;
  background-color: #e8e0d5;
  color: #5a5a5a;
  padding: 0.4rem 0.8rem;
  border-radius: 3px;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.article-list {
  margin: 2rem 0;
}

.article-item {
  display: block;
  background: white;
  border-left: 4px solid #8b7355;
  padding: 2rem;
  margin: 1.5rem 0;
  border-radius: 2px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
}

.article-item:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
  transform: translateX(4px);
}

.article-item h2 {
  font-size: 1.5rem;
  color: #1a3a3a;
  margin-bottom: 0.5rem;
}

.article-meta {
  color: #8a8a8a;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  font-style: italic;
}

.article-excerpt {
  color: #5a5a5a;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.article-content {
  max-width: 850px;
  margin: 0 auto;
  padding: 0 2rem;
}

.article-header {
  margin: 3rem 0;
  padding-bottom: 2rem;
  border-bottom: 2px solid #e0d9ce;
}

.article-header h1 {
  font-size: 2.4rem;
  color: #1a3a3a;
  margin-bottom: 1rem;
  font-weight: 600;
}

.article-header .article-meta {
  font-size: 1rem;
}

.article-body {
  font-size: 1.05rem;
  line-height: 1.85;
}

.article-body h2 {
  font-size: 1.6rem;
  color: #1a3a3a;
  margin: 2.5rem 0 1rem 0;
  font-weight: 600;
}

.article-body h3 {
  font-size: 1.3rem;
  color: #2c2c2c;
  margin: 2rem 0 0.8rem 0;
  font-weight: 600;
}

.article-body p {
  margin-bottom: 1.3rem;
  text-align: justify;
}

.article-body ul,
.article-body ol {
  margin: 1.5rem 0 1.5rem 2rem;
}

.article-body li {
  margin-bottom: 0.7rem;
}

.article-body blockquote {
  border-left: 4px solid #8b7355;
  padding-left: 1.5rem;
  margin: 2rem 0;
  color: #5a5a5a;
  font-style: italic;
}

footer {
  margin-top: 4rem;
  padding: 2rem 0;
  border-top: 2px solid #d4cfc4;
  background-color: #f5f1e8;
  text-align: center;
  color: #5a5a5a;
  font-size: 0.95rem;
}

.cta-button {
  display: inline-block;
  background-color: #8b7355;
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 3px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
  margin-top: 1rem;
}

.cta-button:hover {
  background-color: #6b5344;
}

@media (max-width: 1024px) {
  .section-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .hero h2 {
    font-size: 1.8rem;
  }

  .article-header h1 {
    font-size: 1.8rem;
  }

  nav a {
    display: block;
    margin: 0.5rem 0;
  }

  header h1 {
    font-size: 1.8rem;
  }
}
