/* Classic Blog-Inspired Design - Using Dr.Plants Brand Colors */
* {
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: #F5F5F2; /* ui.background */
  color: #333333; /* text.primary */
  margin: 0;
  padding: 0;
  line-height: 1.7;
  font-size: 16px;
}

.container {
  max-width: 680px;
  margin: 0 auto;
  padding: 40px 24px;
  background-color: #FFFFFF; /* ui.surface */
  min-height: 100vh;
}

/* Header */
header {
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid #E3E6E2; /* ui.border */
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}

.logo-container img {
  width: 48px;
  height: 48px;
  display: block;
}

.logo-container a {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

.logo-container h1 {
  margin: 0;
  font-size: 28px;
  font-weight: 600;
  color: #3B7A65; /* brand.primary */
  letter-spacing: -0.02em;
}

.logo-container a:hover h1 {
  color: #6FA490; /* brand.secondary */
  transition: color 0.2s ease;
}

/* Typography */
h1 {
  font-size: 32px;
  font-weight: 700;
  color: #333333; /* text.primary */
  margin-top: 0;
  margin-bottom: 24px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 24px;
  font-weight: 600;
  color: #333333; /* text.primary */
  margin-top: 40px;
  margin-bottom: 16px;
  line-height: 1.4;
}

h3 {
  font-size: 20px;
  font-weight: 600;
  color: #333333; /* text.primary */
  margin-top: 32px;
  margin-bottom: 12px;
  line-height: 1.4;
}

p {
  line-height: 1.75;
  margin-bottom: 20px;
  color: #333333; /* text.primary */
}

/* Links */
a {
  color: #3B7A65; /* brand.primary */
  text-decoration: none;
  transition: color 0.2s ease;
  border-bottom: 1px solid transparent;
}

a:hover {
  color: #6FA490; /* brand.secondary */
  border-bottom-color: #3B7A65; /* brand.primary */
}

/* Lists */
ul, ol {
  margin-bottom: 20px;
  padding-left: 24px;
  color: #333333; /* text.primary */
}

li {
  margin-bottom: 8px;
  line-height: 1.7;
}

ul li::marker {
  color: #3B7A65; /* brand.primary */
}

/* Navigation Links */
.nav-links {
  list-style: none;
  padding: 0;
  margin: 32px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
}

.nav-links li {
  margin: 0;
}

.nav-links a {
  font-weight: 500;
  font-size: 15px;
  color: #3B7A65; /* brand.primary */
}

.nav-links a:hover {
  color: #6FA490; /* brand.secondary */
}

/* Language Switcher */
.lang {
  margin-bottom: 32px;
  font-size: 14px;
  color: #6B6F6C; /* text.secondary */
  padding-bottom: 16px;
  border-bottom: 1px solid #E3E6E2; /* ui.border */
}

.lang a {
  color: #6B6F6C; /* text.secondary */
  margin: 0 4px;
  font-weight: 500;
  border-bottom: none;
}

.lang a:hover {
  color: #3B7A65; /* brand.primary */
  border-bottom: none;
}

.lang a:first-child {
  margin-left: 0;
}

/* Footer */
.footer {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid #E3E6E2; /* ui.border */
  font-size: 14px;
  color: #6B6F6C; /* text.secondary */
  text-align: center;
}

/* Strong/Emphasis */
strong {
  font-weight: 600;
  color: #333333; /* text.primary */
}

/* Responsive */
@media (max-width: 640px) {
  .container {
    padding: 32px 20px;
  }

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 22px;
  }

  .logo-container h1 {
    font-size: 24px;
  }

  .logo-container img {
    width: 40px;
    height: 40px;
  }
}

/* Home page specific */
.home-intro {
  font-size: 18px;
  color: #6B6F6C; /* text.secondary */
  margin-bottom: 32px;
  line-height: 1.8;
}

/* Support page specific */
.support-section {
  margin-bottom: 32px;
}

.support-section h3 {
  margin-top: 24px;
}
