@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

:root {
  --primary-color: #3d9970;
  --primary-dark: #2d7a58;
  --accent-color: #5fae88;
  --text-dark: #2c3e50;
  --text-light: #6c757d;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #e0e0e0;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
}

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

body {
  font-family: "Inter", sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  font-size: 16px;
}

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

h1 {
  font-size: 2.5rem;
  line-height: 1.2;
}

h2 {
  font-size: 2rem;
  line-height: 1.3;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

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

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

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

.header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  padding: 0.5rem 0;
}

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

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

.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);
}

.navbar-toggler {
  border: none;
  padding: 0.5rem;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(61, 153, 112, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.btn-cta {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: var(--bg-white);
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-cta:hover {
  color: var(--bg-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.hero-section .lead {
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

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

.content-section.bg-light {
  background: var(--bg-light);
}

.content-section h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.rounded {
  border-radius: 12px;
}

.faq-item {
  background: var(--bg-white);
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-item h4 {
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

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

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

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(61, 153, 112, 0.15);
}

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

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

.footer {
  background: var(--text-dark);
  color: var(--bg-white);
  padding: 2rem 0;
  margin-top: 80px;
}

.footer p {
  color: var(--bg-white);
  margin: 0;
}

.footer a {
  color: var(--bg-white);
  margin-left: 1.5rem;
  transition: color 0.3s ease;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--text-dark);
  color: var(--bg-white);
  padding: 1.5rem 0;
  z-index: 2000;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
  display: none;
}

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

.cookie-banner p {
  color: var(--bg-white);
  margin: 0;
}

.cookie-banner a {
  color: var(--accent-color);
}

.cookie-banner .btn {
  border-radius: 6px;
  padding: 0.5rem 1.25rem;
  font-weight: 600;
  margin-left: 0.5rem;
}

.cookie-banner .btn-accept {
  background: var(--primary-color);
  color: var(--bg-white);
  border: none;
}

.cookie-banner .btn-reject {
  background: #6c757d;
  color: var(--bg-white);
  border: none;
}

.cookie-banner .btn-settings {
  background: transparent;
  color: var(--bg-white);
  border: 1px solid var(--bg-white);
}

.thank-you-section {
  padding: 150px 0 100px;
  min-height: 60vh;
}

.policy-section {
  padding: 120px 0 80px;
}

.policy-section h3 {
  margin-top: 2rem;
  color: var(--primary-color);
}

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

  h2 {
    font-size: 1.75rem;
  }

  .hero-section {
    padding: 100px 0 60px;
  }

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

  .footer a {
    display: block;
    margin: 0.5rem 0;
  }

  .footer .text-right {
    text-align: left;
  }

  .cookie-banner .btn {
    margin-top: 0.5rem;
    display: block;
    width: 100%;
  }
}

html {
  scroll-behavior: smooth;
}
