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

html, body {
  width: 100%;
  height: 100%;
}

body {
  font-family: 'Roboto', sans-serif;
  font-size: 17px;
  line-height: 1.75;
  color: #333;
  background-color: #FAFAFA;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 55px;
  line-height: 1.1;
  color: #1B5E20;
  margin-bottom: 30px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

h2 {
  font-size: 42px;
  line-height: 1.2;
  color: #1B5E20;
  margin-bottom: 25px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

h3 {
  font-size: 28px;
  color: #4CAF50;
  margin-bottom: 15px;
}

p {
  margin-bottom: 20px;
  color: #555;
  line-height: 1.9;
}

a {
  color: #4CAF50;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #1B5E20;
  text-decoration: underline;
}

.accent-text {
  color: #4CAF50;
  font-weight: 700;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: transparent;
  padding: 20px 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

header.scrolled {
  background-color: rgba(250, 250, 250, 0.98);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.header-content {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #1B5E20;
  cursor: pointer;
  transition: color 0.3s ease;
}

.logo:hover {
  color: #4CAF50;
}

nav {
  display: flex;
  gap: 30px;
  list-style: none;
}

nav a {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

nav a:hover {
  color: #4CAF50;
}

@media (max-width: 768px) {
  nav {
    display: none;
  }
}

main {
  margin-top: 80px;
}

section {
  max-width: 1440px;
  margin: 0 auto;
  padding: 130px 5%;
  scroll-margin-top: 100px;
}

.hero {
  margin-top: 0;
  padding: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #FAFAFA 0%, #E8F5E9 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.6;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: #1B5E20;
  padding: 0 5%;
}

.hero-content h1 {
  font-size: 85px;
  color: #1B5E20;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 22px;
  color: #4CAF50;
}

.intro-section {
  text-align: center;
}

.intro-section p {
  font-size: 20px;
  color: #666;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.role-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.role-item {
  padding: 25px;
  background-color: #fff;
  border-left: 4px solid #4CAF50;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.role-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.role-item h3 {
  margin-top: 0;
}

.content-with-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 40px;
}

.content-with-image.reversed {
  direction: rtl;
}

.content-with-image.reversed > * {
  direction: ltr;
}

.content-with-image img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1024px) {
  .content-with-image {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .content-with-image.reversed {
    direction: ltr;
  }
}

.table-wrapper {
  overflow-x: auto;
  margin-top: 40px;
}

table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

th {
  background-color: #1B5E20;
  color: #fff;
  padding: 18px;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

td {
  padding: 18px;
  border-bottom: 1px solid #E0E0E0;
  color: #555;
}

tr:last-child td {
  border-bottom: none;
}

tr:hover {
  background-color: #F5F5F5;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.product-card {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: scale(1.06) translateY(-5px);
  box-shadow: 0 12px 32px rgba(76, 175, 80, 0.2);
  border: 2px solid #4CAF50;
}

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

.product-card-content {
  padding: 30px;
}

.product-card h3 {
  margin-top: 0;
  margin-bottom: 15px;
}

.product-card p {
  margin-bottom: 10px;
}

.cta-link {
  display: inline-block;
  color: #4CAF50;
  font-weight: 700;
  text-decoration: none;
  margin-top: 15px;
  transition: all 0.3s ease;
}

.cta-link:hover {
  color: #1B5E20;
  text-decoration: underline;
}

.checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px;
  background-color: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.checklist-item::before {
  content: '✓';
  color: #4CAF50;
  font-weight: 700;
  font-size: 20px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .checklist {
    grid-template-columns: 1fr;
  }
}

.faq-section {
  margin-top: 40px;
}

.faq-item {
  background-color: #fff;
  border-left: 4px solid #4CAF50;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
  margin: 0 0 10px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  display: none;
  color: #666;
  margin-top: 15px;
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-toggle {
  color: #4CAF50;
  font-weight: 700;
  font-size: 20px;
  transition: transform 0.3s ease;
}

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

.quote-section {
  background-color: #E8F5E9;
  padding: 50px;
  border-radius: 8px;
  border-left: 4px solid #4CAF50;
  margin-top: 40px;
  text-align: center;
}

.quote {
  font-size: 18px;
  font-style: italic;
  color: #1B5E20;
  margin-bottom: 15px;
}

.quote-author {
  color: #666;
  font-size: 14px;
  font-style: normal;
}

.disclaimer {
  background-color: #FFFDE7;
  border-left: 4px solid #FBC02D;
  padding: 30px;
  border-radius: 6px;
  margin-top: 40px;
  text-align: center;
}

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

.form-section {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.form-section .disclaimer {
  font-size: 13px;
  color: #666;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #1B5E20;
  font-weight: 600;
}

.form-group input {
  width: 100%;
  padding: 15px;
  border: 2px solid #E0E0E0;
  border-radius: 6px;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: #4CAF50;
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.btn {
  display: inline-block;
  background-color: #4CAF50;
  color: #fff;
  padding: 15px 40px;
  border: none;
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn:hover {
  background-color: #1B5E20;
  box-shadow: 0 8px 20px rgba(27, 94, 32, 0.3);
}

.btn:active {
  transform: scale(0.98);
}

footer {
  background-color: #1B5E20;
  color: #fff;
  padding: 50px 5%;
  margin-top: 100px;
}

.footer-content {
  max-width: 1440px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
  margin-bottom: 40px;
}

.footer-section h3 {
  color: #81C784;
  margin-top: 0;
  margin-bottom: 20px;
}

.footer-section a {
  color: #B2DFDB;
  display: block;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #81C784;
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid #2E7D32;
  padding-top: 30px;
  text-align: center;
  color: #B2DFDB;
  font-size: 14px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  overflow-y: auto;
}

.modal.show {
  display: block;
}

.modal-content {
  background-color: #FAFAFA;
  margin: 10% auto;
  padding: 40px;
  border: 1px solid #ddd;
  border-radius: 8px;
  width: 90%;
  max-width: 700px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  border-bottom: 2px solid #4CAF50;
  padding-bottom: 20px;
}

.modal-header h2 {
  margin: 0;
  color: #1B5E20;
  font-size: 28px;
}

.close-btn {
  font-size: 28px;
  font-weight: bold;
  color: #999;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-btn:hover {
  color: #4CAF50;
}

.modal-body {
  color: #555;
  line-height: 1.8;
  font-size: 16px;
}

.modal-body h3 {
  color: #4CAF50;
  margin-top: 25px;
  margin-bottom: 15px;
}

.modal-body ul, .modal-body ol {
  margin-bottom: 15px;
  padding-left: 25px;
}

.modal-body li {
  margin-bottom: 10px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1B5E20;
  color: #fff;
  padding: 25px 5%;
  z-index: 1500;
  display: none;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

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

.cookie-banner-content {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
}

.cookie-banner-text {
  font-size: 15px;
  line-height: 1.6;
}

.cookie-banner-buttons {
  display: flex;
  gap: 15px;
}

.cookie-btn {
  padding: 12px 25px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Roboto', sans-serif;
}

.cookie-btn-accept {
  background-color: #4CAF50;
  color: #fff;
}

.cookie-btn-accept:hover {
  background-color: #81C784;
}

.cookie-btn-reject {
  background-color: #666;
  color: #fff;
}

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

.cookie-btn-more {
  background-color: transparent;
  color: #81C784;
  border: 2px solid #81C784;
}

.cookie-btn-more:hover {
  background-color: #81C784;
  color: #1B5E20;
}

@media (max-width: 768px) {
  .cookie-banner-content {
    grid-template-columns: 1fr;
  }
  
  .cookie-banner-buttons {
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  h1 {
    font-size: 45px;
  }
  
  h2 {
    font-size: 32px;
  }
  
  section {
    padding: 80px 5%;
  }
  
  .hero-content h1 {
    font-size: 55px;
  }
}

.text-center {
  text-align: center;
}

.mt-40 {
  margin-top: 40px;
}

.mb-30 {
  margin-bottom: 30px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

@media (max-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

.success-message {
  display: none;
  background-color: #C8E6C9;
  border-left: 4px solid #4CAF50;
  padding: 20px;
  border-radius: 6px;
  margin-bottom: 20px;
  color: #1B5E20;
}

.success-message.show {
  display: block;
}
