:root {
  --primary-green: #0E6B4A;
  --light-green: #E8F5F1;
  --text-dark: #2C3E50;
  --text-gray: #5A6C7D;
  --white: #FFFFFF;
  --shadow: 0 2px 8px rgba(14, 107, 74, 0.08);
  --shadow-hover: 0 4px 16px rgba(14, 107, 74, 0.15);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background: linear-gradient(180deg, var(--white) 0%, var(--light-green) 100%);
  min-height: 100vh;
}

.header {
  background: var(--white);
  box-shadow: var(--shadow);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-green);
  text-decoration: none;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: translateY(-2px);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: var(--primary-green);
}

.main-content {
  margin-top: 80px;
  padding: 2rem 1rem;
}

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

.hero-section {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  margin-bottom: 3rem;
  transition: box-shadow 0.3s ease;
}

.hero-section:hover {
  box-shadow: var(--shadow-hover);
}

.hero-section h1 {
  font-size: 2.5rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero-section p {
  font-size: 1.125rem;
  color: var(--text-gray);
  max-width: 800px;
  margin: 0 auto 2rem;
}

.hero-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 8px;
  margin: 2rem auto;
  display: block;
}

.content-section {
  background: var(--white);
  border-radius: 12px;
  padding: 3rem 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.content-section:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.content-section h2 {
  font-size: 2rem;
  color: var(--primary-green);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.content-section h3 {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin: 2rem 0 1rem;
  font-weight: 600;
}

.content-section p {
  color: var(--text-gray);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.content-section ul {
  list-style-position: inside;
  color: var(--text-gray);
  margin-bottom: 1rem;
  padding-left: 1rem;
}

.content-section li {
  margin-bottom: 0.5rem;
}

.image-left, .image-right {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin: 1.5rem 0;
}

.disclaimer-box {
  background: var(--light-green);
  border-left: 4px solid var(--primary-green);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
}

.disclaimer-box h3 {
  color: var(--primary-green);
  margin-top: 0;
}

.cta-button {
  display: inline-block;
  background: var(--primary-green);
  color: var(--white);
  padding: 0.875rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  background: #0a5439;
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  color: var(--white);
  text-decoration: none;
}

.contact-form {
  max-width: 600px;
  margin: 2rem auto;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.875rem;
  border: 2px solid var(--light-green);
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-green);
}

.footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 3rem 2rem 1rem;
  margin-top: 4rem;
}

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

.footer-section h3 {
  color: var(--primary-green);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.footer-section p,
.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

.educational-notice {
  background: #FFF9E6;
  border: 2px solid #FFD700;
  border-radius: 8px;
  padding: 1.5rem;
  margin: 2rem 0;
  text-align: center;
  font-weight: 600;
  color: var(--text-dark);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  z-index: 9999;
  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;
  gap: 1rem;
}

.cookie-text {
  flex: 1;
  min-width: 300px;
}

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

.table-responsive {
  overflow-x: auto;
  margin: 2rem 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}

table th,
table td {
  padding: 0.875rem;
  text-align: left;
  border-bottom: 1px solid var(--light-green);
}

table th {
  background: var(--light-green);
  color: var(--primary-green);
  font-weight: 600;
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    gap: 1rem;
  }
  
  .nav-menu {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .hero-section h1 {
    font-size: 1.875rem;
  }
  
  .content-section {
    padding: 2rem 1rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .image-left,
  .image-right {
    max-width: 100%;
  }
}

@media (min-width: 769px) {
  .image-left {
    float: left;
    margin-right: 2rem;
    margin-bottom: 1rem;
  }
  
  .image-right {
    float: right;
    margin-left: 2rem;
    margin-bottom: 1rem;
  }
}
