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

:root {
  --deep-teal: #006666;
  --deep-teal-dark: #004d4d;
  --deep-teal-light: #008080;
  --text-primary: #333333;
  --text-secondary: #666666;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #e0e0e0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-primary);
  line-height: 1.6;
  background-color: var(--bg-white);
}

h1, h2, h3 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  color: var(--deep-teal);
}

h2 {
  font-size: 2rem;
  color: var(--deep-teal);
}

h3 {
  font-size: 1.5rem;
  color: var(--text-primary);
}

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

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

a:hover {
  color: var(--deep-teal-dark);
}

.header-nav {
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--deep-teal);
}

.navbar-brand:hover {
  color: var(--deep-teal-dark);
}

.navbar-nav .nav-link {
  color: var(--text-primary);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--deep-teal);
}

.content-wrapper {
  margin-top: 80px;
  min-height: calc(100vh - 80px);
}

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

.hero-content {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.hero-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.section-spacing {
  padding: 3rem 0;
}

.section-divider {
  height: 2px;
  background: linear-gradient(to right, transparent, var(--deep-teal), transparent);
  margin: 3rem 0;
}

.card-custom {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  transition: box-shadow 0.3s ease;
}

.card-custom:hover {
  box-shadow: 0 4px 12px rgba(0, 102, 102, 0.1);
}

.content-image-left {
  float: left;
  margin: 0 2rem 1rem 0;
  max-width: 350px;
  border-radius: 8px;
}

.content-image-right {
  float: right;
  margin: 0 0 1rem 2rem;
  max-width: 350px;
  border-radius: 8px;
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

.btn-custom {
  background-color: var(--deep-teal);
  color: var(--bg-white);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  transition: background-color 0.3s ease;
  display: inline-block;
}

.btn-custom:hover {
  background-color: var(--deep-teal-dark);
  color: var(--bg-white);
}

.product-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.product-card img {
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.faq-item {
  background-color: var(--bg-light);
  border-left: 4px solid var(--deep-teal);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 4px;
}

.faq-item h3 {
  font-size: 1.2rem;
  color: var(--deep-teal);
  margin-bottom: 0.75rem;
}

.footer-custom {
  background-color: var(--text-primary);
  color: var(--bg-light);
  padding: 3rem 0 1rem 0;
  margin-top: 4rem;
}

.footer-custom a {
  color: var(--bg-light);
}

.footer-custom a:hover {
  color: var(--deep-teal-light);
}

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

.footer-section h3 {
  color: var(--deep-teal-light);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

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

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

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

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

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

.cookie-banner p {
  margin: 0 0 1rem 0;
  color: var(--bg-white);
}

.cookie-banner button {
  background-color: var(--deep-teal);
  color: var(--bg-white);
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookie-banner button:hover {
  background-color: var(--deep-teal-light);
}

.contact-form {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: 8px;
}

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

.contact-form label {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  display: block;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--deep-teal);
}

.disclaimer-box {
  background-color: #fff3cd;
  border-left: 4px solid #ffc107;
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
}

.disclaimer-box h3 {
  color: #856404;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.disclaimer-box p {
  color: #856404;
  margin-bottom: 0.5rem;
}

.info-box {
  background-color: #d1ecf1;
  border-left: 4px solid #0c5460;
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
}

.info-box h3 {
  color: #0c5460;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.info-box p {
  color: #0c5460;
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  .hero-content {
    flex-direction: column;
  }
  
  .content-image-left,
  .content-image-right {
    float: none;
    margin: 0 0 1rem 0;
    max-width: 100%;
  }
  
  .product-card {
    margin-bottom: 2rem;
  }
}
