:root {
  --primary: #114b4b;
  --primary-light: #e4f0ee;
  --accent: #f5b55b;
  --bg: #f9f7f3;
  --text: #222222;
  --muted: #666666;
  --white: #ffffff;
  --max-width: 1100px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #dddddd;
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary);
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1rem;
  font-size: 0.95rem;
}

nav a {
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
}

nav a:hover {
  background: var(--primary-light);
  text-decoration: none;
}

.hero {
  background: radial-gradient(circle at top left, #ffffff, var(--primary-light));
  padding: 3.5rem 1rem 3rem;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 2rem;
  align-items: center;
}

.hero h1 {
  font-size: 2.4rem;
  margin: 0 0 0.75rem;
  color: var(--primary);
}

.hero p.lead {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  color: var(--muted);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.2rem 0.8rem;
  border-radius: 999px;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.3rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: #0c3838;
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary-light);
}

.hero-card {
  background: var(--white);
  border-radius: 1rem;
  padding: 1.5rem 1.4rem;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  font-size: 0.9rem;
}

.hero-card h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.hero-card ul {
  padding-left: 1.2rem;
  margin: 0.5rem 0 0;
}

main {
  padding: 2.5rem 1rem 3rem;
}

section {
  max-width: var(--max-width);
  margin: 0 auto 2.5rem;
}

section h2 {
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
  color: var(--primary);
}

section p.section-intro {
  margin-top: 0;
  margin-bottom: 1.4rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.card {
  background: var(--white);
  border-radius: 0.9rem;
  padding: 1.2rem 1.15rem;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
  font-size: 0.92rem;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
  color: var(--primary);
}

.pill {
  display: inline-block;
  font-size: 0.75rem;
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  background: var(--primary-light);
  color: var(--primary);
  margin-bottom: 0.4rem;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  background: var(--white);
  border-radius: 0.9rem;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
}

.price-table th,
.price-table td {
  padding: 0.85rem 0.9rem;
  border-bottom: 1px solid #eeeeee;
  text-align: left;
  vertical-align: top;
}

.price-table th {
  background: var(--primary-light);
  font-weight: 600;
  color: var(--primary);
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.price-tag {
  font-weight: 700;
  color: var(--primary);
}

.small-muted {
  font-size: 0.8rem;
  color: var(--muted);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  gap: 2rem;
  align-items: flex-start;
}

.tag-list {
  list-style: none;
  padding: 0;
  margin: 0.3rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.tag-list li {
  font-size: 0.78rem;
  background: var(--primary-light);
  color: var(--primary);
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
}

.faq-item {
  margin-bottom: 1.1rem;
}

.faq-item h3 {
  font-size: 1rem;
  margin: 0 0 0.2rem;
  color: var(--primary);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  gap: 2rem;
  align-items: flex-start;
}

form {
  background: var(--white);
  border-radius: 0.9rem;
  padding: 1.3rem 1.2rem;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
  font-size: 0.9rem;
}

label {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.85rem;
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  padding: 0.55rem 0.6rem;
  border-radius: 0.4rem;
  border: 1px solid #cccccc;
  font-family: inherit;
  font-size: 0.9rem;
  margin-bottom: 0.65rem;
}

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

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8rem;
  margin-bottom: 0.9rem;
}

.checkbox-row input {
  width: auto;
  margin-top: 0.15rem;
}

footer {
  background: #111111;
  color: #eeeeee;
  padding: 1.5rem 1rem 1.2rem;
  font-size: 0.8rem;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.footer-inner a {
  color: #e3f3f3;
}

.legal-page {
  max-width: var(--max-width);
  margin: 2.5rem auto 3rem;
  padding: 0 1rem 0.5rem;
}

.legal-page h1 {
  color: var(--primary);
  font-size: 1.8rem;
  margin-bottom: 0.7rem;
}

.legal-page h2 {
  color: var(--primary);
  font-size: 1.2rem;
  margin-top: 1.5rem;
  margin-bottom: 0.4rem;
}

.legal-page p,
.legal-page li {
  font-size: 0.9rem;
  color: var(--text);
}

.notice-box {
  background: var(--primary-light);
  border-left: 4px solid var(--primary);
  padding: 0.8rem 0.9rem;
  border-radius: 0.4rem;
  font-size: 0.85rem;
  margin-bottom: 1.1rem;
}

#cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #111111;
  color: #ffffff;
  padding: 0.9rem 1rem;
  font-size: 0.85rem;
  display: none;
  z-index: 999;
}

#cookie-banner-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
  justify-content: space-between;
}

#cookie-banner button {
  border-radius: 999px;
  border: none;
  padding: 0.4rem 1.1rem;
  cursor: pointer;
  font-size: 0.83rem;
  font-weight: 600;
}

#cookie-accept {
  background: var(--accent);
  color: #111111;
}

#cookie-more {
  background: transparent;
  color: #ffffff;
  border: 1px solid #666666;
}

@media (max-width: 850px) {
  .hero-inner,
  .two-column,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }

  nav ul {
    display: none;
  }

  .hero {
    padding-top: 2.5rem;
  }

  .hero h1 {
    font-size: 2rem;
  }
}