:root{--build-id:"4e03c8c5-82e9-4f53-8598-74a4e32965d8";}
/* 장기렌트 웹사이트 공통 스타일 */

/* 기본 설정 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "IBM Plex Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #fbf9f1;
  color: #2a2e37;
  line-height: 1.6;
}

/* 레이아웃 */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 헤더 */
header {
  background-color: #ffffff;
  border-bottom: 1px solid #e5e5e5;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: #2e6a8a;
  text-decoration: none;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav a {
  color: #2a2e37;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: #2e6a8a;
}

/* 메인 콘텐츠 */
main {
  min-height: 60vh;
  padding: 60px 0;
}

/* 섹션 */
section {
  margin-bottom: 60px;
}

h1 {
  font-size: 42px;
  font-weight: 700;
  color: #2a2e37;
  margin-bottom: 20px;
  line-height: 1.3;
}

h2 {
  font-size: 32px;
  font-weight: 700;
  color: #2a2e37;
  margin-bottom: 20px;
  margin-top: 40px;
}

h3 {
  font-size: 24px;
  font-weight: 600;
  color: #2a2e37;
  margin-bottom: 15px;
  margin-top: 30px;
}

p {
  margin-bottom: 15px;
  line-height: 1.7;
}

/* 히어로 섹션 */
.hero {
  text-align: center;
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
  border-radius: 12px;
  margin-bottom: 60px;
}

.hero h1 {
  margin-bottom: 25px;
}

.hero p {
  font-size: 18px;
  color: #555;
  max-width: 700px;
  margin: 0 auto 30px;
}

/* 버튼 */
.btn {
  display: inline-block;
  padding: 14px 32px;
  background-color: #2e6a8a;
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: background-color 0.3s;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.btn:hover {
  background-color: #245570;
}

.btn-secondary {
  background-color: #ffffff;
  color: #2e6a8a;
  border: 2px solid #2e6a8a;
}

.btn-secondary:hover {
  background-color: #f5f5f5;
}

/* 카드 */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  border: 1px solid #e5e5e5;
}

.card h3 {
  margin-top: 0;
  color: #2e6a8a;
}

/* 테이블 */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  background-color: #ffffff;
}

th,
td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #e5e5e5;
}

th {
  background-color: #f8f8f8;
  font-weight: 600;
  color: #2e6a8a;
}

/* 폼 */
form {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 8px;
  border: 1px solid #e5e5e5;
  max-width: 600px;
  margin: 30px auto;
}

.form-group {
  margin-bottom: 25px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #2a2e37;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #d0d0d0;
  border-radius: 4px;
  font-family: inherit;
  font-size: 15px;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

/* FAQ */
.faq-item {
  background-color: #ffffff;
  padding: 25px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #e5e5e5;
}

.faq-item h3 {
  margin-top: 0;
  color: #2e6a8a;
}

/* 리뷰 */
.review {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  border: 1px solid #e5e5e5;
  margin-bottom: 25px;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.review-author {
  font-weight: 600;
  color: #2e6a8a;
}

.review-rating {
  color: #f5a623;
}

/* 비교 테이블 */
.comparison {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin: 40px 0;
}

.comparison-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  border: 1px solid #e5e5e5;
}

.comparison-item h3 {
  margin-top: 0;
  color: #2e6a8a;
}

/* 푸터 */
footer {
  background-color: #ffffff;
  border-top: 1px solid #e5e5e5;
  padding: 40px 0;
  margin-top: 80px;
  text-align: center;
}

footer p {
  color: #666;
  margin-bottom: 15px;
}

footer a {
  color: #2e6a8a;
  text-decoration: none;
  margin: 0 10px;
}

footer a:hover {
  text-decoration: underline;
}

/* 반응형 */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    gap: 15px;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 26px;
  }

  .hero {
    padding: 50px 20px;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .comparison {
    grid-template-columns: 1fr;
  }

  table {
    font-size: 14px;
  }

  th,
  td {
    padding: 10px;
  }
}