:root {
  --primary-color: #2b7a9b;
  --primary-dark: #1f5a78;
  --secondary-color: #f2a541;
  --secondary-dark: #d88b2a;
  --text-dark: #1a1a1a;
  --text-light: #6b6b6b;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #e0e0e0;
  --success-color: #28a745;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.12);
}

* {
  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);
}

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

.navbar {
  box-shadow: var(--shadow);
}

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

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

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

.hero {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(43, 122, 155, 0.03) 0%, rgba(242, 165, 65, 0.03) 100%);
}

.hero-about {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(43, 122, 155, 0.05) 0%, rgba(242, 165, 65, 0.05) 100%);
}

.section {
  padding: 60px 0;
}

.section-intro {
  max-width: 800px;
  font-size: 1.1rem;
  color: var(--text-light);
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 12px 32px;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
}

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

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 12px 32px;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
}

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

.card {
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.custom-list li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
}

.custom-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 1.2rem;
}

.info-box {
  background: var(--bg-white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  height: 100%;
  transition: all 0.3s ease;
}

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

.activity-card {
  background: linear-gradient(135deg, rgba(43, 122, 155, 0.05) 0%, rgba(242, 165, 65, 0.05) 100%);
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
}

.activity-card:hover {
  transform: translateY(-5px);
  background: linear-gradient(135deg, rgba(43, 122, 155, 0.08) 0%, rgba(242, 165, 65, 0.08) 100%);
}

.activity-card h5 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 15px;
}

.product-card {
  background: var(--bg-light);
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  height: 100%;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.product-card:hover {
  border-color: var(--secondary-color);
  transform: translateY(-5px);
}

.product-card h5 {
  color: var(--secondary-dark);
  font-weight: 600;
  margin-bottom: 15px;
}

.testimonials {
  background: linear-gradient(135deg, rgba(43, 122, 155, 0.03) 0%, rgba(242, 165, 65, 0.03) 100%);
}

.testimonial-card {
  background: var(--bg-white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  height: 100%;
}

.testimonial-card .author {
  font-weight: 600;
  color: var(--primary-color);
  font-size: 0.9rem;
}

.accordion .card {
  border: 1px solid var(--border-color);
  margin-bottom: 10px;
}

.accordion .card-header {
  background: var(--bg-white);
  border-bottom: none;
  padding: 0;
}

.accordion .btn-link {
  color: var(--text-dark);
  font-weight: 600;
  text-decoration: none;
  padding: 20px;
  width: 100%;
}

.accordion .btn-link:hover {
  color: var(--primary-color);
  text-decoration: none;
}

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

.cta-section h2 {
  color: white;
}

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

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

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

.footer {
  padding: 50px 0 20px;
}

.footer h5 {
  color: white;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
  margin-bottom: 8px;
}

.footer a:hover {
  color: white;
  text-decoration: underline;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26, 26, 26, 0.95);
  color: white;
  padding: 20px 0;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  display: none;
}

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

.cookie-banner a {
  color: white;
  text-decoration: underline;
}

.contact-form-wrapper {
  background: var(--bg-light);
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.contact-info {
  background: linear-gradient(135deg, rgba(43, 122, 155, 0.05) 0%, rgba(242, 165, 65, 0.05) 100%);
  padding: 25px;
  border-radius: 12px;
}

.thank-you-section {
  padding: 100px 0;
}

.thank-you-content {
  background: var(--bg-light);
  padding: 60px 40px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.step-box {
  background: var(--bg-white);
  padding: 20px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  height: 100%;
}

.step-box h6 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 10px;
}

.principle-item {
  padding: 20px;
  background: var(--bg-light);
  border-radius: 8px;
  border-left: 4px solid var(--secondary-color);
}

.principle-item h4 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 10px;
}

.value-card {
  background: var(--bg-white);
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  height: 100%;
  transition: all 0.3s ease;
}

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

.value-card h5 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 15px;
}

.policy-content {
  line-height: 1.8;
}

.policy-content h3 {
  color: var(--primary-color);
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
}

.policy-content h4 {
  color: var(--text-dark);
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 10px;
}

.policy-content ul {
  margin-bottom: 20px;
}

.policy-content li {
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .hero,
  .hero-about {
    padding: 50px 0;
  }

  .section {
    padding: 40px 0;
  }

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

  .contact-form-wrapper {
    padding: 30px 20px;
  }

  .thank-you-content {
    padding: 40px 20px;
  }

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

  .cookie-banner .btn {
    font-size: 0.85rem;
    padding: 8px 16px;
  }
}

@media (max-width: 576px) {
  .btn-lg {
    padding: 10px 24px;
    font-size: 1rem;
  }

  .display-4 {
    font-size: 2rem;
  }

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