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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #2c2c2c;
  background-color: #fdfbf7;
  line-height: 1.6;
  overflow-x: hidden;
}

.fixed-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c2c2c;
  letter-spacing: -0.5px;
}

.navbar-brand:hover {
  color: #4ecdc4;
}

.nav-link {
  color: #555;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #4ecdc4;
}

.btn-cta {
  background: linear-gradient(135deg, #4ecdc4 0%, #44a8a0 100%);
  color: white;
  padding: 0.6rem 1.5rem;
  border-radius: 25px;
  margin-left: 1rem;
}

.btn-cta:hover {
  background: linear-gradient(135deg, #44a8a0 0%, #3a8f88 100%);
  color: white;
}

.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' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(44, 44, 44, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.hero-section {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, #fdfbf7 0%, #f5f1e8 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-text {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.btn-hero {
  background: linear-gradient(135deg, #4ecdc4 0%, #44a8a0 100%);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3);
}

.btn-hero:hover {
  background: linear-gradient(135deg, #44a8a0 0%, #3a8f88 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(78, 205, 196, 0.4);
  color: white;
  text-decoration: none;
}

.hero-image {
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.bg-light {
  background-color: #f9f7f4;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 1.5rem;
}

.section-intro {
  font-size: 1.15rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.content-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 1.5rem;
}

.content-section h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.content-section p {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.section-image {
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 1.5rem;
  width: 100%;
  height: auto;
}

.faq-item {
  background-color: white;
  padding: 2rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
  font-size: 1.3rem;
  color: #2c2c2c;
  margin-bottom: 0.8rem;
}

.faq-item p {
  color: #666;
  margin-bottom: 0;
}

.contact-section {
  background-color: #f9f7f4;
}

.contact-form {
  background-color: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  margin-top: 2rem;
}

.contact-form .form-control {
  border: 2px solid #e5e5e5;
  border-radius: 8px;
  padding: 0.8rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: #4ecdc4;
  box-shadow: 0 0 0 0.2rem rgba(78, 205, 196, 0.15);
}

.contact-form .btn-primary {
  background: linear-gradient(135deg, #4ecdc4 0%, #44a8a0 100%);
  border: none;
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
  background: linear-gradient(135deg, #44a8a0 0%, #3a8f88 100%);
  transform: translateY(-2px);
}

.contact-info {
  color: #555;
  line-height: 2;
}

.contact-info a {
  color: #4ecdc4;
  text-decoration: none;
}

.contact-info a:hover {
  color: #44a8a0;
  text-decoration: underline;
}

.site-footer {
  background-color: #2c2c2c;
  color: #ccc;
  padding: 3rem 0;
  margin-top: 4rem;
}

.site-footer a {
  color: #ccc;
  text-decoration: none;
  margin-left: 1.5rem;
  transition: color 0.3s ease;
}

.site-footer a:hover {
  color: #4ecdc4;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(44, 44, 44, 0.98);
  color: white;
  padding: 1.5rem;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  display: none;
}

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.cookie-content p {
  margin: 0;
  flex: 1;
  min-width: 300px;
  padding-right: 2rem;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-buttons .btn {
  padding: 0.6rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.cookie-buttons .btn-primary {
  background: linear-gradient(135deg, #4ecdc4 0%, #44a8a0 100%);
  color: white;
}

.cookie-buttons .btn-primary:hover {
  background: linear-gradient(135deg, #44a8a0 0%, #3a8f88 100%);
}

.cookie-buttons .btn-secondary {
  background-color: #666;
  color: white;
}

.cookie-buttons .btn-secondary:hover {
  background-color: #555;
}

.cookie-buttons .btn-outline {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.cookie-buttons .btn-outline:hover {
  background-color: white;
  color: #2c2c2c;
}

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background-color: white;
  padding: 2.5rem;
  border-radius: 12px;
  max-width: 500px;
  width: 100%;
}

.cookie-modal-content h3 {
  color: #2c2c2c;
  margin-bottom: 1.5rem;
}

.cookie-option {
  margin-bottom: 1rem;
}

.cookie-option label {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.cookie-option input[type="checkbox"] {
  margin-right: 0.8rem;
  width: 20px;
  height: 20px;
}

.cookie-modal-buttons {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
}

.policy-page {
  padding: 2rem 0 4rem;
}

.policy-page h1 {
  color: #2c2c2c;
  margin-bottom: 0.5rem;
}

.policy-page h2 {
  color: #2c2c2c;
  font-size: 1.6rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.policy-page h3 {
  color: #2c2c2c;
  font-size: 1.3rem;
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
}

.policy-page p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.thank-you-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.thank-you-page h1 {
  color: #2c2c2c;
}

.thank-you-page .lead {
  color: #4ecdc4;
  font-weight: 600;
}

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

  .hero-section {
    padding: 120px 0 60px;
    text-align: center;
  }

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

  .navbar-collapse {
    background-color: white;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  .btn-cta {
    margin-left: 0;
    margin-top: 0.5rem;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-content p {
    padding-right: 0;
    margin-bottom: 1rem;
  }

  .cookie-buttons {
    justify-content: center;
  }
}

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

  .hero-text {
    font-size: 1.05rem;
  }

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

  .content-section h2 {
    font-size: 1.6rem;
  }

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