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

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  background: #ffffff;
  color: #1a1a1a;
  line-height: 1.7;
}

/* ===== HEADER ===== */
.header {
  background: #111111;
  color: #ffffff;
  text-align: center;
  padding: 3rem 1.5rem;
  border-bottom: 4px solid #111111;
}

.header__icon {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.header__title {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 0.3rem;
}

.header__subtitle {
  font-size: 1rem;
  font-weight: 400;
  color: #aaaaaa;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ===== NAV ===== */
.nav {
  background: #f8f8f8;
  border-bottom: 1px solid #e0e0e0;
  text-align: center;
  padding: 0.8rem 1rem;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav__link {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  margin: 0 0.3rem;
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  border-radius: 4px;
  transition: all 0.25s;
}

.nav__link:hover {
  background: #111111;
  color: #ffffff;
}

/* ===== SECTIONS ===== */
.section {
  max-width: 960px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.section__title {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.4rem;
  color: #111111;
}

.section__divider {
  width: 60px;
  height: 3px;
  background: #111111;
  margin: 0 auto 2.5rem;
  border: none;
}

/* ===== FARM CARDS ===== */
.farm-card {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  background: #fafafa;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 1.8rem;
  margin-bottom: 2rem;
  transition: box-shadow 0.3s;
}

.farm-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.farm-card:nth-child(even) {
  flex-direction: row-reverse;
}

.farm-card__img {
  flex: 0 0 320px;
  height: 220px;
  object-fit: cover;
  border-radius: 6px;
  border: 2px solid #e0e0e0;
}

.farm-card__body {
  flex: 1;
}

.farm-card__name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 0.5rem;
}

.farm-card__desc {
  font-size: 0.95rem;
  color: #444444;
  line-height: 1.75;
}

.farm-card__tag {
  display: inline-block;
  margin-top: 0.8rem;
  padding: 0.25rem 0.8rem;
  background: #111111;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===== CARE GUIDE ===== */
.care-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.care-card {
  background: #fafafa;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 1.8rem;
  transition: transform 0.25s, box-shadow 0.25s;
}

.care-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.07);
}

.care-card__icon {
  font-size: 2.2rem;
  margin-bottom: 0.7rem;
}

.care-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 0.5rem;
}

.care-card__text {
  font-size: 0.9rem;
  color: #555555;
  line-height: 1.7;
}

/* ===== TIPS LIST ===== */
.tips-list {
  list-style: none;
  margin-top: 2.5rem;
  padding: 1.5rem 2rem;
  background: #111111;
  color: #ffffff;
  border-radius: 8px;
}

.tips-list__title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.tips-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.9rem;
  line-height: 1.6;
}

.tips-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #ffffff;
}

/* ===== FOOTER ===== */
.footer {
  background: #111111;
  color: #aaaaaa;
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.85rem;
  margin-top: 2rem;
}

.footer a {
  color: #ffffff;
  text-decoration: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 700px) {
  .farm-card,
  .farm-card:nth-child(even) {
    flex-direction: column;
  }

  .farm-card__img {
    flex: none;
    width: 100%;
    height: 200px;
  }

  .header__title {
    font-size: 1.6rem;
  }

  .section {
    padding: 2rem 1rem;
  }

  .nav__link {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
  }
}
