:root {
  --vital-green: #0C6845;
  --vital-light: #f0f9f5;
  --text-dark: #1a1a1a;
  --text-gray: #666666;
  --white: #ffffff;
  --border-light: #e8e8e8;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background: linear-gradient(to bottom, var(--white) 0%, var(--vital-light) 100%);
  min-height: 100vh;
}

header {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(12, 104, 69, 0.08);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
}

header .navbar-brand {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--vital-green);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

header .navbar-brand:hover {
  opacity: 0.8;
  color: var(--vital-green);
}

header .nav-link {
  color: var(--text-dark);
  font-weight: 500;
  margin: 0 0.75rem;
  transition: color 0.3s ease;
}

header .nav-link:hover {
  color: var(--vital-green);
}

main {
  margin-top: 76px;
}

.hero {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--white) 0%, var(--vital-light) 100%);
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--vital-green);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.125rem;
  color: var(--text-gray);
  line-height: 1.6;
}

.section {
  padding: 4rem 0;
}

.section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--vital-green);
  margin-bottom: 1.5rem;
}

.section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.content-box {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  margin-bottom: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(12, 104, 69, 0.12);
}

.content-img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1.5rem 0;
}

.content-img-left {
  float: left;
  margin: 0 2rem 1rem 0;
  max-width: 350px;
}

.content-img-right {
  float: right;
  margin: 0 0 1rem 2rem;
  max-width: 350px;
}

.btn-vital {
  background: var(--vital-green);
  color: var(--white);
  border: none;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-vital:hover {
  background: #0a5537;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(12, 104, 69, 0.25);
}

.table-vital {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.table-vital thead {
  background: var(--vital-green);
  color: var(--white);
}

.table-vital th {
  font-weight: 600;
  padding: 1rem;
}

.table-vital td {
  padding: 0.875rem 1rem;
  border-top: 1px solid var(--border-light);
}

.faq-item {
  background: var(--white);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
  font-size: 1.125rem;
  color: var(--vital-green);
  margin-bottom: 0.75rem;
}

.disclaimer-box {
  background: var(--vital-light);
  border-left: 4px solid var(--vital-green);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
}

.disclaimer-box h3 {
  color: var(--vital-green);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}

footer h4 {
  color: var(--vital-green);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

footer a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
  margin-bottom: 0.5rem;
}

footer a:hover {
  color: var(--vital-green);
}

footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  z-index: 9999;
  display: none;
}

.cookie-banner.active {
  display: block;
}

.cookie-banner p {
  margin-bottom: 1rem;
  font-size: 0.9375rem;
}

.form-vital .form-control {
  border: 2px solid var(--border-light);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  transition: border-color 0.3s ease;
}

.form-vital .form-control:focus {
  border-color: var(--vital-green);
  box-shadow: 0 0 0 3px rgba(12, 104, 69, 0.1);
}

.form-vital label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.icon-vital {
  color: var(--vital-green);
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .section h2 {
    font-size: 1.75rem;
  }
  
  .content-img-left,
  .content-img-right {
    float: none;
    margin: 1.5rem auto;
    display: block;
    max-width: 100%;
  }
  
  .cookie-banner {
    padding: 1rem;
  }
}
