body {
  font-family: 'Noto Sans KR', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f7f9fa;
}
header {
  background-color: #006400;
  color: white;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* 메뉴 네비게이션 스타일 (공통) */
nav {
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(90deg, #007b55 0%, #009688 100%);
  padding: 0;
  height: 44px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  border-radius: 0 0 16px 16px;
  margin-bottom: 32px;
}
nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.80em;
  padding: 0 18px;
  height: 44px;
  display: flex;
  align-items: center;
  transition: background 0.2s, color 0.2s;
  border-bottom: 2px solid transparent;
  letter-spacing: 0.2px;
}
nav a:hover, 
nav a:focus {
  background: #e0f2f1;
  color: #004d40;
}
nav a.active {
  color: #ffe082;
  border-bottom: 2px solid #ffe082;
  background: rgba(255,255,255,0.08);
}
@media (max-width: 700px) {
  nav {
    flex-wrap: wrap;
    height: auto;
    padding: 8px 0;
    border-radius: 0 0 10px 10px;
  }
  nav a {
    padding: 8px 10px;
    font-size: 0.95em;
    height: auto;
  }
}

.section {
  padding: 40px 20px;
  max-width: 1100px;
  margin: auto;
}
.section h2 {
  color: #006400;
  border-bottom: 2px solid #ccc;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  padding: 18px 16px;
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 110px;
  transition: box-shadow 0.2s;
}

/*.card p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}*/
.card p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-clamp: 3; /* 표준 속성(지원 브라우저 한정) */
}

.card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 6px 24px rgba(0,123,85,0.13);
}

.card h3 {
  margin: 0 0 6px 0;
  color: #007b55;
  font-size: 1.1em;
}
footer {
  background-color: #004d00;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}
.booking-form {
  max-width: 500px;
  margin: 40px auto;
  background: #f9f9f9;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 8px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.booking-form button {
  padding: 10px 16px;
  background-color: #006400;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.hero {
  background: url('https://source.unsplash.com/1600x600/?smartfarm,greenhouse') center/cover no-repeat;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 0;
}
.hero h1 {
      font-size: 3em;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    }

.gradient-text {
  font-size: 3em;
  font-weight: bold;
  background: linear-gradient(to right, #00c6ff, #007f4e); /* 연녹색 → 짙은 녹색 */
   background-clip: text;    
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color:transparent;
  text-shadow: none;
  z-index: 2;
}
.proposal-wrap {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding: 40px 20px;
  flex-wrap: wrap;
}

.proposal-text {
  flex: 1 1 200px;
}

.proposal-form {
  flex: 1 1 400px;
  max-width: 500px;
}

.proposal-form input,
.proposal-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.proposal-form button {
  padding: 10px 16px;
  background-color: #006400;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* 2단 레이아웃 */
.main-flex {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  margin: 40px auto;
  align-items: flex-start;
}
.service-col {
  flex: 1 1 350px;
  min-width: 320px;
}
.pdf-col {
  flex: 1 1 500px;
  min-width: 350px;
}
.section-title {
  color: #007b55;
  font-size: 1.5em;
  margin-bottom: 24px;
  text-align: left;
}
.cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  padding: 18px 16px;
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 110px;
  transition: box-shadow 0.2s;
}
.card img {
  border-radius: 8px;
  width: 70px;
  height: 70px;
  object-fit: cover;
}
.card h3 {
  margin: 0 0 6px 0;
  color: #007b55;
  font-size: 0.90em;
}
.card p {
  margin: 0;
  color: #444;
  font-size: 0.80em;
}
.card:hover {
  box-shadow: 0 6px 24px rgba(0,123,85,0.13);
}
.pdf-box {
  background: #fffbe7;
  border: 2px solid #ffe082;
  border-radius: 12px;
  padding: 24px 18px;
  text-align: center;
}
.pdf-box h2 {
  color: #007b55;
  margin-top: 0;
}
.pdf-box a {
  color: #007b55;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 16px;
}
.pdf-box a:hover {
  text-decoration: underline;
}
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-template-rows: auto auto;
  grid-template-areas:
    "thumb info"
    "feature feature";
  gap: 32px;
  max-width: 900px;
  margin: 40px auto;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 32px 20px;
  align-items: flex-start;
}
.product-thumb { grid-area: thumb; }
.product-info { grid-area: info; }
.product-feature { grid-area: feature; margin-top: 12px; }
.product-thumb img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.07);
}
@media (max-width: 700px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "thumb"
      "info"
      "feature";
    padding: 16px 4vw;
    gap: 18px;
  }
}
/* 반응형 */
@media (max-width: 900px) {
  .main-flex {
    flex-direction: column;
    gap: 32px;
  }
  .service-col, .pdf-col {
    min-width: 0;
  }
  .cards {
    gap: 16px;
  }
}
.product-detail-layout {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}
.product-top {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 32px;
}
.product-thumb {
  flex: 0 0 240px;
  background: #f8faf9;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-thumb img {
  width: 180px;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
}
.product-info {
  flex: 1 1 0;
}
.product-feature {
  background: #f8faf9;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  padding: 24px;
}
@media (max-width: 700px) {
  .product-top {
    flex-direction: column;
    gap: 18px;
  }
  .product-thumb {
    width: 100%;
    justify-content: flex-start;
  }
  .product-thumb img {
    width: 100%;
    height: auto;
    max-width: 100%;
  }
}
.inquiry-btn {
  display: inline-block;
  background: #007b55;
  color: #fff !important;
  padding: 10px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 2em;
  margin-top: 18px;
  transition: background 0.2s;
}
.inquiry-btn:hover {
  background: #009688;
}

.arimo-uniquifier {
  font-family: "Arimo", sans-serif;
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
}

.outfit-uniquifier {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
}

.syne-uniquifier {
  font-family: "Syne", sans-serif;
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
}