:root {
  --emerald: #10b981;
  --emerald-dark: #059669;
  --emerald-light: #d1fae5;
  --text-dark: #1f2937;
  --text-muted: #6b7280;
  --background: #ffffff;
  --background-light: #f9fafb;
  --border: #e5e7eb;
}

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

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

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

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--emerald);
}

.hero-section {
  position: relative;
  height: 500px;
  overflow: hidden;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.8) 0%, rgba(5, 150, 105, 0.8) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.info-card {
  background: var(--background);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

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

.info-card .card-body {
  padding: 1.5rem;
}

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

.info-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.feature-list {
  margin-top: 1rem;
}

.feature-item {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.feature-item:last-child {
  border-bottom: none;
}

.feature-item strong {
  display: block;
  color: var(--emerald);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.feature-item p {
  color: var(--text-muted);
  margin: 0;
}

.balance-card {
  background: var(--background);
  padding: 2rem;
  border-radius: 12px;
  border: 2px solid var(--border);
  transition: border-color 0.3s ease;
}

.balance-card:hover {
  border-color: var(--emerald);
}

.balance-card h3 {
  color: var(--emerald);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.disclaimer-section {
  background: linear-gradient(135deg, var(--emerald-light) 0%, var(--background-light) 100%);
}

.disclaimer-box {
  background: var(--background);
  padding: 2.5rem;
  border-radius: 12px;
  border-left: 4px solid var(--emerald);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.btn-primary:hover {
  background-color: var(--emerald-dark);
  border-color: var(--emerald-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(16, 185, 129, 0.3);
}

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

.btn-outline-primary:hover {
  background-color: var(--emerald);
  border-color: var(--emerald);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(16, 185, 129, 0.3);
}

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

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

.footer p {
  color: var(--background-light);
  font-size: 0.9rem;
}

.footer a {
  color: var(--background-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

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

.page-header {
  background: linear-gradient(135deg, var(--emerald-light) 0%, var(--background-light) 100%);
  padding: 4rem 0;
  margin-bottom: 0;
}

.page-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

.approach-card {
  background: var(--background);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.approach-card h3 {
  color: var(--emerald);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.contact-info-box {
  background: var(--background-light);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--emerald);
}

.contact-info-box h5 {
  color: var(--emerald);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-form-box {
  background: var(--background-light);
  padding: 2rem;
  border-radius: 12px;
}

.form-control {
  border: 2px solid var(--border);
  border-radius: 8px;
  padding: 0.75rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--emerald);
  box-shadow: 0 0 0 0.2rem rgba(16, 185, 129, 0.15);
}

.thank-you-box {
  background: var(--background-light);
  padding: 4rem 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(31, 41, 55, 0.95);
  color: white;
  padding: 1rem 0;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-banner p {
  margin: 0;
  color: white;
}

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

.cookie-banner.hidden {
  display: none;
}

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

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

  .section-padding {
    padding: 3rem 0;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .btn-lg {
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .hero-section {
    height: 300px;
  }

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