:root {
  --primary-color: #4caf50;
  --primary-dark: #388e3c;
  --secondary-color: #81c784;
  --text-color: #333333;
  --text-light: #666666;
  --bg-light: #f5f5f5;
  --white: #ffffff;
  --shadow: rgba(0, 0, 0, 0.1);
}

* {
  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-color);
  line-height: 1.6;
}

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

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

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

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

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

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

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

.hero-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f5f5f5 0%, #e8f5e9 100%);
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 20px;
}

.hero-text {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 30px;
  line-height: 1.8;
}

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

.icon-circle {
  width: 80px;
  height: 80px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto;
}

.card {
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-box {
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px var(--shadow);
  transition: all 0.3s;
}

.service-box:hover {
  box-shadow: 0 8px 25px var(--shadow);
  transform: translateY(-5px);
}

.service-box h4 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 15px;
}

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

.feature-list li {
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
}

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

.info-card {
  background: var(--white);
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px var(--shadow);
  height: 100%;
}

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

.benefit-list {
  background: var(--white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 15px var(--shadow);
}

.benefit-item {
  display: flex;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e0e0e0;
}

.benefit-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.benefit-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: bold;
  margin-right: 20px;
  flex-shrink: 0;
}

.benefit-item h5 {
  color: var(--text-color);
  font-weight: 600;
  margin-bottom: 8px;
}

.testimonial-card {
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px var(--shadow);
  height: 100%;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 15px;
  line-height: 1.8;
}

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

.faq-section .card {
  border: none;
  margin-bottom: 10px;
  box-shadow: 0 2px 8px var(--shadow);
}

.faq-section .card-header {
  background-color: var(--white);
  border: none;
  padding: 0;
}

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

.faq-section .btn-link:hover {
  color: var(--primary-color);
}

.faq-section .card-body {
  padding: 20px;
  color: var(--text-light);
}

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

.footer-section {
  background-color: #263238;
  color: var(--white);
}

.footer-section h5 {
  color: var(--white);
  font-weight: 600;
  margin-bottom: 15px;
}

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

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s;
}

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

.page-header {
  background: linear-gradient(135deg, #f5f5f5 0%, #e8f5e9 100%);
}

.approach-item,
.principle-card {
  background: var(--white);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px var(--shadow);
}

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

.info-box {
  background: #fff3e0;
  border-left: 4px solid #ff9800;
  padding: 25px;
  border-radius: 4px;
}

.contact-info-card {
  background: var(--white);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px var(--shadow);
}

.contact-info-card h5 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 10px;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.25);
}

.thank-you-content {
  background: var(--white);
  padding: 60px 40px;
  border-radius: 8px;
  box-shadow: 0 2px 15px var(--shadow);
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto;
  font-weight: bold;
}

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

.policy-section h2 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.policy-section h4 {
  color: var(--text-color);
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

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

.policy-section li {
  margin-bottom: 10px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(38, 50, 56, 0.95);
  color: var(--white);
  padding: 20px 0;
  z-index: 9999;
  box-shadow: 0 -2px 10px var(--shadow);
  display: none;
}

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

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

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

.cookie-banner .btn-light {
  background-color: var(--white);
  color: var(--text-color);
}

.cookie-banner .btn-outline-light {
  color: var(--white);
  border-color: var(--white);
}

.cookie-banner .btn-outline-light:hover {
  background-color: var(--white);
  color: var(--text-color);
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .hero-section {
    padding: 50px 0;
  }

  .cookie-banner .btn {
    margin-top: 10px;
  }
}
