:root {
  --color-primary: #F5F3F0;
  --color-secondary: #D4C4B0;
  --color-text: #2C2C2C;
  --color-accent: #2D5C47;
  --color-highlight: #B8956F;
  --color-border: #E8E3DC;
  --font-family-heading: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-family-body: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --spacing-unit: 1rem;
}

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

html, body {
  font-family: var(--font-family-body);
  color: var(--color-text);
  background-color: var(--color-primary);
  line-height: 1.6;
}

body {
  overflow-x: hidden;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-highlight);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-heading);
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-text);
}

h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 1.25rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: var(--color-text);
  line-height: 1.7;
}

nav {
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-accent) !important;
}

.navbar-nav .nav-link {
  color: var(--color-text) !important;
  margin: 0 0.5rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--color-accent) !important;
}

.hero {
  position: relative;
  height: 100vh;
  background: linear-gradient(135deg, rgba(45, 92, 71, 0.3) 0%, rgba(184, 149, 111, 0.15) 100%), url('images/hero-main.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-text);
}

.hero-content h1 {
  font-size: 3.5rem;
  color: var(--color-text);
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.5);
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.3rem;
  color: var(--color-text);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.btn-explore {
  background-color: var(--color-accent);
  color: white;
  border: 2px solid var(--color-accent);
  padding: 0.75rem 2rem;
  font-size: 1rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  display: inline-block;
  font-weight: 600;
  text-decoration: none;
}

.btn-explore:hover {
  background-color: transparent;
  color: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(45, 92, 71, 0.2);
}

section {
  padding: 4rem 0;
}

.section-light {
  background-color: var(--color-primary);
}

.section-dark {
  background-color: white;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  color: var(--color-accent);
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-highlight));
  border-radius: 2px;
}

.image-section {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.image-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-block {
  background: white;
  padding: 2.5rem;
  border-radius: 8px;
  border: 1px solid var(--color-border);
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.content-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.content-block h3 {
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.content-block p {
  margin-bottom: 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

@media (max-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

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

  .hero-content p {
    font-size: 1rem;
  }

  .hero {
    height: auto;
    min-height: 60vh;
    padding: 2rem;
  }
}

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

footer h5 {
  color: white;
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

footer p, footer a {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
}

footer a:hover {
  color: white;
}

.footer-section {
  margin-bottom: 2rem;
}

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

.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--color-accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(45, 92, 71, 0.1);
}

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

.checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.checkbox-wrapper input[type="checkbox"] {
  margin-top: 0.25rem;
  cursor: pointer;
}

.checkbox-wrapper label {
  cursor: pointer;
  font-size: 0.95rem;
}

.checkbox-wrapper a {
  color: var(--color-accent);
}

.btn-submit {
  background-color: var(--color-accent);
  color: white;
  border: none;
  padding: 0.85rem 2rem;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-submit:hover {
  background-color: var(--color-highlight);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(45, 92, 71, 0.2);
}

.thank-you-box {
  text-align: center;
  padding: 3rem;
  background: white;
  border-radius: 8px;
  border: 2px solid var(--color-accent);
  margin-top: 2rem;
}

.thank-you-box h2 {
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.product-example {
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid var(--color-accent);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.product-example:hover {
  transform: translateX(8px);
}

.product-example h4 {
  color: var(--color-accent);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.product-example p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.policy-section {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid var(--color-border);
  margin-bottom: 2rem;
}

.policy-section h3 {
  color: var(--color-accent);
  margin-bottom: 1rem;
  margin-top: 1.5rem;
}

.policy-section h3:first-child {
  margin-top: 0;
}

.policy-section ul, .policy-section ol {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.policy-section li {
  margin-bottom: 0.5rem;
}

.disclaimer-box {
  background: linear-gradient(135deg, rgba(45, 92, 71, 0.05) 0%, rgba(184, 149, 111, 0.05) 100%);
  border-left: 4px solid var(--color-accent);
  padding: 2rem;
  border-radius: 6px;
  margin-bottom: 2rem;
}

.disclaimer-box p {
  font-weight: 500;
  margin-bottom: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.text-center {
  text-align: center;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.fade-in {
  animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.d-flex {
  display: flex;
}

.align-items-center {
  align-items: center;
}

.justify-content-between {
  justify-content: space-between;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 1rem;
}

.gap-4 {
  gap: 1.5rem;
}
