html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lora', serif;
  background-color: #F5F5F5;
  color: #2C2C2C;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #1A1A1A;
  line-height: 1.3;
}

h1 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  margin-top: 3rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  margin-top: 2rem;
}

p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.3px;
}

header {
  background-color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 999;
  transition: all 0.3s ease;
}

header.scrolled {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #2C5F2D !important;
  letter-spacing: -0.5px;
}

.navbar-brand:hover {
  color: #97BF04 !important;
  transition: color 0.3s ease;
}

.nav-link {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #2C2C2C !important;
  margin-left: 2rem;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #2C5F2D !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #2C5F2D, #97BF04);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.hero-section {
  background: linear-gradient(135deg, #F5F5F5 0%, #FFFFFF 100%);
  padding: 5rem 0;
  min-height: 70vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  z-index: 2;
  animation: fadeInUp 0.8s ease-out;
}

.hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(44, 95, 45, 0.15);
  animation: fadeInRight 0.8s ease-out 0.2s both;
}

.btn-primary {
  background: linear-gradient(90deg, #2C5F2D 0%, #97BF04 100%);
  border: none;
  color: #FFFFFF;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 32px;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary:hover {
  background: linear-gradient(90deg, #97BF04 0%, #FF7F50 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(44, 95, 45, 0.3);
  color: #FFFFFF;
}

.section {
  padding: 5rem 0;
  background-color: #F5F5F5;
}

.section-alt {
  background-color: #FFFFFF;
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #2C5F2D, #97BF04);
  border-radius: 2px;
}

.card-component {
  background: #FFFFFF;
  border: 1px solid #E8E8E8;
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.card-component:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(44, 95, 45, 0.15);
  border-color: #97BF04;
}

.card-component h3 {
  color: #2C5F2D;
  margin-top: 0;
}

.two-column-section {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.two-column-section.reversed {
  flex-direction: row-reverse;
}

.two-column-section img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(44, 95, 45, 0.15);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.highlight-box {
  background: linear-gradient(135deg, #2C5F2D 0%, #97BF04 100%);
  color: #FFFFFF;
  padding: 3rem;
  border-radius: 8px;
  margin: 3rem 0;
}

.highlight-box h3 {
  color: #FFFFFF;
}

.highlight-box ul, .highlight-box ol {
  margin-left: 1.5rem;
  font-size: 1.05rem;
}

.highlight-box li {
  margin-bottom: 0.8rem;
  line-height: 1.6;
}

footer {
  background-color: #1A1A1A;
  color: #CCCCCC;
  padding: 4rem 0 2rem;
  margin-top: 6rem;
  border-top: 1px solid #2C5F2D;
}

footer h5 {
  color: #FFFFFF;
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

footer a {
  color: #97BF04;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #FF7F50;
}

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

footer ul li {
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h5 {
  font-size: 1.1rem;
}

.footer-bottom {
  border-top: 1px solid #333333;
  padding-top: 2rem;
  text-align: center;
  color: #999999;
  font-size: 0.9rem;
}

.disclaimer-section {
  background: linear-gradient(135deg, rgba(255, 127, 80, 0.1) 0%, rgba(44, 95, 45, 0.1) 100%);
  border-left: 4px solid #FF7F50;
  padding: 2rem;
  border-radius: 4px;
  margin: 3rem 0;
}

.disclaimer-section h3 {
  color: #FF7F50;
  margin-top: 0;
}

.form-container {
  background: #FFFFFF;
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  max-width: 600px;
  margin: 3rem auto;
}

.form-group {
  margin-bottom: 2rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #2C2C2C;
  font-size: 1rem;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #E0E0E0;
  border-radius: 4px;
  font-family: 'Lora', serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: #2C5F2D;
  box-shadow: 0 0 0 3px rgba(44, 95, 45, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 150px;
}

.form-disclaimer {
  background-color: #F0F8F0;
  padding: 1.5rem;
  border-radius: 4px;
  font-size: 0.95rem;
  color: #2C5F2D;
  margin-bottom: 2rem;
  border-left: 3px solid #2C5F2D;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1A1A1A;
  color: #FFFFFF;
  padding: 2rem;
  z-index: 1000;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.2);
  border-top: 2px solid #2C5F2D;
}

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

.cookie-text {
  font-size: 0.95rem;
  line-height: 1.6;
}

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

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-block;
}

.cookie-btn-accept {
  background: linear-gradient(90deg, #2C5F2D 0%, #97BF04 100%);
  color: #FFFFFF;
}

.cookie-btn-accept:hover {
  background: linear-gradient(90deg, #97BF04 0%, #FF7F50 100%);
}

.cookie-btn-decline {
  background: transparent;
  color: #97BF04;
  border: 1px solid #97BF04;
}

.cookie-btn-decline:hover {
  background: rgba(151, 191, 4, 0.1);
  border-color: #FF7F50;
  color: #FF7F50;
}

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

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: #FFFFFF;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #E8E8E8;
  transition: all 0.3s ease;
}

.faq-question {
  background: linear-gradient(135deg, #2C5F2D 0%, #97BF04 100%);
  color: #FFFFFF;
  padding: 1.5rem;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: linear-gradient(135deg, #97BF04 0%, #FF7F50 100%);
}

.faq-answer {
  padding: 1.5rem;
  display: none;
  background: #F9F9F9;
  color: #2C2C2C;
  line-height: 1.7;
}

.faq-answer.active {
  display: block;
  animation: slideDown 0.3s ease-out;
}

.faq-toggle {
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.faq-toggle.active {
  transform: rotate(180deg);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.table-responsive table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}

.table-responsive th {
  background: linear-gradient(90deg, #2C5F2D 0%, #97BF04 100%);
  color: #FFFFFF;
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
}

.table-responsive td {
  padding: 1rem;
  border-bottom: 1px solid #E0E0E0;
}

.table-responsive tbody tr:hover {
  background: #F9F9F9;
}

.thank-you-message {
  text-align: center;
  padding: 4rem 0;
  background: linear-gradient(135deg, #F5F5F5 0%, #FFFFFF 100%);
}

.thank-you-message h2 {
  color: #2C5F2D;
  margin-bottom: 2rem;
}

.thank-you-message p {
  font-size: 1.15rem;
  margin-bottom: 2rem;
  color: #2C2C2C;
}

.contact-info-box {
  background: #FFFFFF;
  padding: 2.5rem;
  border-radius: 8px;
  border-left: 4px solid #2C5F2D;
  margin: 2rem 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.contact-info-box h3 {
  color: #2C5F2D;
  margin-top: 0;
  font-size: 1.2rem;
}

.contact-info-box p {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.contact-info-box a {
  color: #97BF04;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info-box a:hover {
  color: #FF7F50;
}

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

  h2 {
    font-size: 1.6rem;
  }

  .hero-section {
    padding: 3rem 0;
    min-height: auto;
  }

  .two-column-section, .two-column-section.reversed {
    flex-direction: column;
    gap: 2rem;
  }

  .nav-link {
    margin-left: 0;
    margin-bottom: 0.5rem;
  }

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-buttons {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
    text-align: center;
  }

  .section {
    padding: 3rem 0;
  }

  .section-title {
    margin-bottom: 2rem;
  }

  .faq-question {
    padding: 1.2rem;
    font-size: 1rem;
  }
}
