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

:root {
  --primary-color: #28a745;
  --primary-dark: #218838;
  --primary-light: #d4edda;
  --text-dark: #212529;
  --text-muted: #6c757d;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --border-color: #dee2e6;
  --success-gradient: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

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

.navbar {
  transition: all 0.3s ease;
}

.navbar-brand {
  font-size: 1.5rem;
  letter-spacing: -0.5px;
}

.nav-link {
  font-weight: 500;
  transition: color 0.3s ease;
}

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

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

.hero-text h1 {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.hero-text .lead {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.8;
}

.content-section {
  padding: 80px 0;
}

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

.content-box {
  padding: 30px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

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

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

.bg-success-light {
  background-color: var(--primary-light) !important;
}

.advice-card,
.approach-card,
.principle-card {
  padding: 30px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advice-card:hover,
.approach-card:hover,
.principle-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

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

.approach-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.timeline {
  position: relative;
  padding-left: 0;
}

.timeline-item {
  display: flex;
  margin-bottom: 40px;
  align-items: flex-start;
}

.timeline-number {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-right: 20px;
}

.timeline-content {
  flex: 1;
}

.timeline-content h5 {
  margin-bottom: 10px;
  font-weight: 600;
}

.faq-item {
  padding: 25px;
  background: var(--white);
  border-left: 4px solid var(--primary-color);
  margin-bottom: 20px;
  border-radius: 5px;
}

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

.testimonial-card {
  padding: 30px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  position: relative;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.8;
}

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

.cta-section {
  padding: 80px 0;
  background: var(--success-gradient);
  color: var(--white);
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
}

.footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 50px 0 20px;
  margin-top: 0;
}

.footer h5,
.footer h6 {
  color: var(--white);
}

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

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

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

.footer-links a:hover {
  color: var(--white);
}

.page-header {
  padding: 100px 0 60px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-info-item {
  margin-bottom: 30px;
}

.contact-info-item h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.contact-form-wrapper {
  background: var(--white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.form-control {
  padding: 12px 15px;
  border: 2px solid var(--border-color);
  border-radius: 5px;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.1);
}

.thank-you-section {
  padding: 120px 0;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.thank-you-icon {
  width: 100px;
  height: 100px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto;
  animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

.thank-you-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

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

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

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

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

.policy-content p {
  margin-bottom: 15px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--text-dark);
  color: var(--white);
  padding: 20px 0;
  z-index: 1000;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
  display: none;
}

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

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

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

.btn {
  padding: 12px 30px;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-success {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-success:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.btn-outline-success {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

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

.shadow-sm {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
}

.shadow {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1) !important;
}

.rounded {
  border-radius: 10px !important;
}

img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 50px 0;
    text-align: center;
  }

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

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

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

  .thank-you-actions {
    flex-direction: column;
    align-items: center;
  }

  .thank-you-actions .btn {
    margin: 5px 0 !important;
  }
}
