:root {
  --primary-color: #8b6f47;
  --primary-dark: #6b5637;
  --secondary-color: #a0826d;
  --accent-color: #d4a574;
  --text-dark: #2c2416;
  --text-light: #5c4d3a;
  --bg-light: #f8f6f3;
  --bg-white: #ffffff;
  --border-color: #e5ddd4;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
}

.main-header {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.nav-link {
  color: var(--text-light);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-color);
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
  font-weight: 600;
  transition: all 0.3s ease;
}

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

.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 500px;
  overflow: hidden;
}

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

.hero-content {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
  padding: 3rem 0;
}

.hero-content h1 {
  color: var(--text-dark);
  font-weight: 700;
}

.feature-box {
  padding: 2rem 1rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
}

.feature-box h3 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.product-card {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  transition: all 0.3s ease;
  height: 100%;
}

.product-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.product-card img {
  border-radius: 8px 8px 0 0;
  height: 250px;
  object-fit: cover;
}

.card-title {
  color: var(--primary-color);
  font-weight: 600;
}

.category-card {
  padding: 2rem 1rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.category-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(139, 111, 71, 0.2);
}

.category-card h4 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.benefit-list {
  list-style: none;
  padding-left: 0;
}

.benefit-list li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.75rem;
}

.benefit-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.solution-card {
  padding: 2rem;
  background: white;
  border-left: 4px solid var(--accent-color);
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.solution-card h4 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.quality-content {
  padding: 2rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.quality-content h5 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.testimonial-card {
  padding: 2rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonial-card .author {
  font-style: normal;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0;
}

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

.faq-item h5 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
}

.cta-section h2 {
  color: white;
}

.cta-section .lead {
  color: rgba(255, 255, 255, 0.95);
}

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

.cta-section .btn-primary:hover {
  background-color: var(--bg-light);
  border-color: var(--bg-light);
  color: var(--primary-dark);
}

.main-footer {
  background-color: var(--text-dark);
  color: white;
}

.main-footer h5 {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-color);
}

.legal-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.legal-links li:not(:last-child):after {
  content: "|";
  margin-left: 1rem;
  color: rgba(255, 255, 255, 0.5);
}

.legal-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: var(--accent-color);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text-dark);
  color: white;
  padding: 1rem 0;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: none;
}

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

.cookie-banner p {
  margin: 0;
  font-size: 0.9rem;
}

.cookie-banner a {
  color: var(--accent-color);
  text-decoration: underline;
}

.cookie-banner .btn-secondary {
  background-color: transparent;
  border: 1px solid white;
  color: white;
}

.cookie-banner .btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.page-header {
  background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
  border-bottom: 1px solid var(--border-color);
}

.page-header h1 {
  color: var(--primary-color);
}

.principle-card {
  padding: 2rem 1rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.principle-card h4 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.offer-card {
  padding: 2rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.offer-card h4 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.contact-info {
  padding: 2rem;
  background: var(--bg-light);
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
}

.contact-info h5 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(139, 111, 71, 0.25);
}

.thank-you-content {
  padding: 3rem 2rem;
}

.policy-content {
  padding: 2rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.policy-content h2 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.policy-content h3 {
  color: var(--primary-dark);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.policy-content h5 {
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.policy-content a {
  color: var(--primary-color);
  text-decoration: underline;
}

.policy-content a:hover {
  color: var(--primary-dark);
}

.policy-content ul {
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .hero-image {
    height: 300px;
  }

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

  .hero-content {
    padding: 2rem 0;
  }

  .legal-links {
    flex-direction: column;
    gap: 0.5rem;
  }

  .legal-links li:after {
    display: none;
  }

  .cookie-banner .btn {
    margin-top: 0.5rem;
    width: 100%;
  }
}

@media (max-width: 576px) {
  .display-4 {
    font-size: 2rem;
  }

  .lead {
    font-size: 1rem;
  }
}
