:root {
  --primary-color: #8bc34a;
  --primary-hover: #7cb342;
  --text-dark: #2c2c2c;
  --text-medium: #5a5a5a;
  --text-light: #757575;
  --bg-cream: #faf8f5;
  --bg-light: #f5f3f0;
  --bg-white: #ffffff;
  --border-color: #e8e6e3;
  --shadow-soft: 0 2px 12px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.1);
  --radius-small: 8px;
  --radius-medium: 12px;
  --header-height: 80px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-cream);
  line-height: 1.6;
  overflow-x: hidden;
}
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--bg-white);
  box-shadow: var(--shadow-soft);
  z-index: 1000;
  height: var(--header-height);
}
.navbar {
  padding: 1rem 0;
}
.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  text-decoration: none;
}
.navbar-brand:hover {
  color: var(--primary-color);
}
.nav-link {
  color: var(--text-medium);
  font-size: 0.95rem;
  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 {
  width: 28px;
  height: 2px;
  background-color: var(--text-dark);
  display: block;
  position: relative;
}
.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: "";
  width: 28px;
  height: 2px;
  background-color: var(--text-dark);
  position: absolute;
  left: 0;
}
.navbar-toggler-icon::before {
  top: -8px;
}
.navbar-toggler-icon::after {
  bottom: -8px;
}
.btn-cta {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
  color: var(--bg-white);
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-small);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-block;
  margin-left: 1rem;
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
  color: var(--bg-white);
  text-decoration: none;
}
.btn-primary-large {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
  color: var(--bg-white);
  padding: 1rem 2.5rem;
  border-radius: var(--radius-small);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-block;
  border: none;
  cursor: pointer;
}
.btn-primary-large:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
  color: var(--bg-white);
  text-decoration: none;
}
main {
  margin-top: var(--header-height);
}
.hero-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light) 100%);
}
.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-medium);
  margin-bottom: 2rem;
  line-height: 1.6;
}
.content-section {
  padding: 5rem 0;
}
.content-section.bg-light {
  background-color: var(--bg-light);
}
.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}
.section-text {
  font-size: 1.05rem;
  color: var(--text-medium);
  margin-bottom: 1.2rem;
  line-height: 1.7;
}
.rounded-image {
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-soft);
  width: 100%;
  height: auto;
}
.faq-item {
  margin-bottom: 2rem;
}
.faq-question {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
}
.faq-answer {
  font-size: 1.05rem;
  color: var(--text-medium);
  line-height: 1.7;
}
.contact-section {
  background-color: var(--bg-white);
}
.contact-form {
  background-color: var(--bg-light);
  padding: 3rem;
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-soft);
  margin-top: 2rem;
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  display: block;
}
.form-control {
  border: 2px solid var(--border-color);
  border-radius: var(--radius-small);
  padding: 0.8rem 1rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}
.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: none;
  outline: none;
}
.final-info {
  background-color: var(--bg-light);
  padding: 3rem;
  border-radius: var(--radius-medium);
  margin-top: 3rem;
}
.info-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}
.info-text {
  font-size: 1.05rem;
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.main-footer {
  background-color: var(--text-dark);
  color: var(--bg-cream);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}
.footer-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bg-white);
  margin-bottom: 1rem;
}
.footer-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--bg-white);
  margin-bottom: 1rem;
}
.footer-text {
  font-size: 0.95rem;
  color: var(--bg-cream);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}
.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 0.5rem;
}
.footer-links a {
  color: var(--bg-cream);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}
.footer-links a:hover {
  color: var(--primary-color);
}
.footer-copyright {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 2rem;
}
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text-dark);
  color: var(--bg-white);
  padding: 1.5rem 0;
  z-index: 2000;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  display: none;
}
.cookie-banner.show {
  display: block;
}
.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.cookie-content p {
  margin: 0;
  font-size: 0.95rem;
  flex: 1;
  min-width: 250px;
}
.cookie-buttons {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.btn-cookie {
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-small);
  border: none;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-accept {
  background-color: var(--primary-color);
  color: var(--bg-white);
}
.btn-accept:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
}
.btn-reject {
  background-color: transparent;
  color: var(--bg-white);
  border: 2px solid var(--bg-white);
}
.btn-reject:hover {
  background-color: var(--bg-white);
  color: var(--text-dark);
  transform: translateY(-2px);
}
.btn-settings {
  background-color: transparent;
  color: var(--bg-white);
  border: 2px solid var(--primary-color);
}
.btn-settings:hover {
  background-color: var(--primary-color);
  transform: translateY(-2px);
}
.thank-you-page,
.policy-page {
  min-height: calc(100vh - var(--header-height) - 200px);
  padding: 5rem 0;
}
.thank-you-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}
.thank-you-text {
  font-size: 1.2rem;
  color: var(--text-medium);
  margin-bottom: 1rem;
  line-height: 1.7;
}
.policy-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}
.policy-intro {
  font-size: 1.2rem;
  color: var(--text-medium);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.policy-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.policy-text {
  font-size: 1.05rem;
  color: var(--text-medium);
  margin-bottom: 1.2rem;
  line-height: 1.7;
}
.policy-date {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-top: 3rem;
  margin-bottom: 2rem;
  font-style: italic;
}
@media (max-width: 991px) {
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-subtitle {
    font-size: 1.1rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .btn-cta {
    margin-left: 0;
    margin-top: 1rem;
  }
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  .cookie-buttons {
    width: 100%;
  }
  .btn-cookie {
    flex: 1;
  }
}
@media (max-width: 767px) {
  .hero-section {
    padding: 4rem 0;
  }
  .content-section {
    padding: 3rem 0;
  }
  .hero-title {
    font-size: 1.8rem;
  }
  .section-title {
    font-size: 1.6rem;
  }
  .contact-form {
    padding: 2rem;
  }
  .order-1 {
    order: 1;
  }
  .order-2 {
    order: 2;
  }
  .order-lg-1 {
    order: 2;
  }
  .order-lg-2 {
    order: 1;
  }
}
