:root {
  --color-primary: #006064;
  --color-primary-dark: #004d50;
  --color-primary-light: #33838a;
  --color-text: #2c3e50;
  --color-text-light: #6c757d;
  --color-bg: #ffffff;
  --color-bg-light: #f8f9fa;
  --color-border: #e1e8ed;
}

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

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

.navbar {
  background-color: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-primary);
  transition: color 0.3s ease;
}

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

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

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

.hero-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: white;
  padding: 6rem 0;
  margin-bottom: 4rem;
}

.hero-section h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-section p {
  font-size: 1.125rem;
  opacity: 0.95;
  max-width: 600px;
}

.hero-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1rem;
}

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

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

.content-section {
  padding: 4rem 0;
}

.content-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  margin-bottom: 1.5rem;
}

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

.info-card:hover {
  box-shadow: 0 6px 20px rgba(0,96,100,0.1);
}

.info-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.info-card p {
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.newsletter-section {
  background-color: var(--color-bg-light);
  padding: 4rem 0;
  margin-top: 4rem;
}

.newsletter-form {
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-form input[type="email"] {
  border: 1px solid var(--color-border);
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border-radius: 4px;
  width: 100%;
  transition: border-color 0.3s ease;
}

.newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: var(--color-primary);
}

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

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  transform: translateY(-1px);
}

.btn-outline-primary {
  color: var(--color-primary);
  border-color: var(--color-primary);
  padding: 0.5rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

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

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

.footer h5 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer p, .footer ul {
  font-size: 0.9rem;
  line-height: 1.8;
}

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

.footer a:hover {
  color: white;
}

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

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

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

.disclaimer-box h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #856404;
  margin-bottom: 0.75rem;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(44,62,80,0.98);
  color: white;
  padding: 1.5rem;
  z-index: 9999;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
}

.cookie-banner p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.cookie-banner .btn {
  margin-right: 0.5rem;
}

.product-card {
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  height: 100%;
}

.product-card:hover {
  box-shadow: 0 8px 24px rgba(0,96,100,0.12);
  transform: translateY(-2px);
}

.product-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.product-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.product-card p {
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

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

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

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

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

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

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

.contact-info-box p {
  font-size: 1rem;
  color: var(--color-text);
  margin-bottom: 0.5rem;
  line-height: 1.8;
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
}

.policy-content h2 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-text);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

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

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

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

.policy-content li {
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .hero-section {
    padding: 4rem 0;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .content-section {
    padding: 3rem 0;
  }
  
  .content-image {
    max-width: 100%;
  }
}
