:root {
  --primary-color: #1e5ba8;
  --primary-dark: #164477;
  --primary-light: #2871cc;
  --secondary-color: #34495e;
  --accent-color: #3498db;
  --text-dark: #2c3e50;
  --text-light: #7f8c8d;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #dee2e6;
  --gradient-1: linear-gradient(135deg, #1e5ba8 0%, #2871cc 100%);
  --gradient-2: linear-gradient(135deg, #2871cc 0%, #3498db 100%);
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

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

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

.navbar {
  background-color: var(--bg-white);
  box-shadow: var(--shadow);
  padding: 1rem 0;
}

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

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

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

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

.hero {
  position: relative;
  margin-bottom: 3rem;
}

.hero-image {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: 0 0 20px 20px;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(30, 91, 168, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--bg-white);
}

.hero-overlay h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--bg-white);
}

.hero-overlay p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 600px;
}

.content-section {
  margin-bottom: 4rem;
}

.content-section h2 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.with-image {
  margin-bottom: 4rem;
}

.with-image img {
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.image-grid img {
  border-radius: 15px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.image-grid img:hover {
  transform: translateY(-5px);
}

.cta-section {
  margin: 5rem 0;
}

.cta-box {
  background: var(--gradient-1);
  color: var(--bg-white);
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.cta-box h2 {
  color: var(--bg-white);
  margin-bottom: 1rem;
}

.cta-box p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.product-card {
  background: var(--bg-white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.product-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.product-content {
  padding: 1.5rem;
}

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

.product-ingredients {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.product-note {
  font-size: 0.85rem;
  color: var(--secondary-color);
  font-style: italic;
  background: var(--bg-light);
  padding: 0.75rem;
  border-radius: 8px;
  margin-bottom: 0;
}

.info-section {
  margin-top: 4rem;
}

.info-box {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 15px;
  border-left: 5px solid var(--primary-color);
}

.info-box h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.about-section {
  margin-bottom: 3rem;
}

.about-section h2 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.contact-info {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 15px;
  height: 100%;
}

.contact-form-wrapper {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.thank-you-section {
  padding: 5rem 0;
}

.thank-you-section h1 {
  color: var(--primary-color);
}

.policy-section {
  margin-bottom: 3rem;
}

.policy-section h2 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

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

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

.btn-primary {
  background: var(--gradient-1);
  border: none;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--bg-white);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: var(--primary-dark);
}

.btn-outline-primary {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.3s ease;
}

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

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

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

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-content p {
  margin-bottom: 0;
  flex: 1;
}

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

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

.cookie-buttons .btn {
  white-space: nowrap;
}

.cookie-buttons .btn-secondary {
  background: transparent;
  border: 2px solid var(--bg-white);
  color: var(--bg-white);
}

.cookie-buttons .btn-secondary:hover {
  background: var(--bg-white);
  color: var(--secondary-color);
}

footer {
  background: var(--gradient-1);
  color: var(--bg-white);
  padding: 3rem 0 1rem;
  margin-top: 5rem;
}

footer h5 {
  color: var(--bg-white);
  margin-bottom: 1rem;
  font-weight: 600;
}

footer p {
  font-size: 0.9rem;
}

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

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

.footer-links a {
  color: var(--bg-white);
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
}

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

.footer-bottom p {
  margin-bottom: 0;
  font-size: 0.9rem;
  opacity: 0.8;
}

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

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

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

  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  h3 {
    font-size: 1.25rem;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}
