:root {
  --primary-color: #2E8B57;
  --accent-gold: #FFD700;
  --accent-blue: #4682B4;
  --accent-beige: #F5F5DC;
  --text-dark: #2C3E50;
  --text-light: #666666;
  --bg-light: #FAFAF8;
  --white: #FFFFFF;
  --border-color: #E8E8E8;
}

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

html, body {
  height: 100%;
}

body {
  font-family: 'Merriweather', serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-dark);
  margin-bottom: 20px;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  font-size: 2.5rem;
  font-weight: 600;
}

h3 {
  font-size: 1.75rem;
  font-weight: 600;
}

p {
  margin-bottom: 15px;
  color: var(--text-light);
  line-height: 1.8;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent-gold);
  text-decoration: underline;
}

button, .btn {
  font-family: 'Montserrat', sans-serif;
  padding: 12px 28px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 14px;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-primary:hover {
  background-color: #1f6340;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46, 139, 87, 0.3);
}

.btn-secondary {
  background-color: var(--accent-blue);
  color: var(--white);
}

.btn-secondary:hover {
  background-color: #355f8a;
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 30px;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 35px;
  align-items: center;
}

.nav-menu a {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: var(--primary-color);
  text-decoration: none;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-dark);
}

main {
  margin-top: 70px;
  min-height: calc(100vh - 70px);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

section {
  padding: 80px 0;
}

section:nth-child(even) {
  background-color: var(--bg-light);
}

.hero {
  padding: 140px 30px 80px;
  background: linear-gradient(135deg, rgba(46, 139, 87, 0.1) 0%, rgba(70, 130, 180, 0.05) 100%);
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text h1 {
  color: var(--primary-color);
  margin-bottom: 25px;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.8;
}

.hero-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.section-title p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

.two-column.reverse {
  direction: rtl;
}

.two-column.reverse > * {
  direction: ltr;
}

.two-column-text h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.two-column-text p {
  margin-bottom: 15px;
}

.two-column-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.two-column-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

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

.card {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  background-color: var(--bg-light);
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}

.card-body {
  padding: 25px;
}

.card-body h3 {
  color: var(--primary-color);
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.card-body p {
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.card-benefits {
  list-style: none;
  margin-bottom: 20px;
}

.card-benefits li {
  padding-left: 25px;
  margin-bottom: 10px;
  position: relative;
  font-size: 0.95rem;
  color: var(--text-light);
}

.card-benefits li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.card-link {
  color: var(--primary-color);
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}

.card-link:hover {
  gap: 12px;
}

.content-block {
  margin-bottom: 40px;
  padding: 30px;
  background-color: var(--accent-beige);
  border-left: 4px solid var(--primary-color);
  border-radius: 4px;
}

.content-block h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.content-block ul {
  margin-left: 20px;
}

.content-block li {
  margin-bottom: 10px;
  color: var(--text-light);
  line-height: 1.8;
}

.disclaimer-block {
  background-color: #f0f8ff;
  border: 1px solid var(--accent-blue);
  border-radius: 8px;
  padding: 30px;
  margin: 40px 0;
  text-align: center;
}

.disclaimer-block h3 {
  color: var(--accent-blue);
  margin-bottom: 15px;
}

.disclaimer-block p {
  color: var(--text-light);
  font-style: italic;
}

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

.form-group label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-dark);
  font-size: 14px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-family: 'Merriweather', serif;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(46, 139, 87, 0.1);
}

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

.form-disclaimer {
  background-color: var(--accent-beige);
  padding: 15px;
  border-radius: 4px;
  margin-bottom: 25px;
  font-size: 0.9rem;
  color: var(--text-dark);
  border-left: 4px solid var(--accent-gold);
}

footer {
  background-color: var(--text-dark);
  color: var(--white);
  padding: 60px 30px;
  margin-top: auto;
}

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

.footer-section h4 {
  color: var(--accent-gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  display: block;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

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

.footer-contact {
  font-size: 0.95rem;
  line-height: 1.8;
}

.footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 30px;
  margin-top: 30px;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.educational-notice {
  font-style: italic;
  color: var(--accent-gold);
  margin-bottom: 15px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text-dark);
  color: var(--white);
  padding: 20px 30px;
  z-index: 999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.9rem;
}

.cookie-buttons {
  display: flex;
  gap: 15px;
  align-items: center;
}

.cookie-banner button {
  padding: 8px 18px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-banner .btn-accept {
  background-color: var(--primary-color);
  color: var(--white);
}

.cookie-banner .btn-accept:hover {
  background-color: #1f6340;
}

.cookie-banner .btn-decline {
  background-color: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.cookie-banner .btn-decline:hover {
  border-color: var(--white);
}

.cookie-banner a {
  color: var(--accent-gold);
}

.table-responsive {
  overflow-x: auto;
  margin: 30px 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

table th {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 18px;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-light);
}

table tr:hover {
  background-color: var(--bg-light);
}

.highlight {
  background-color: rgba(255, 215, 0, 0.2);
  padding: 2px 6px;
  border-radius: 3px;
  color: var(--primary-color);
  font-weight: 600;
}

.full-width-image {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 8px;
  margin: 30px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

  h2 {
    font-size: 1.8rem;
  }

  h3 {
    font-size: 1.3rem;
  }

  .navbar {
    padding: 12px 20px;
  }

  .nav-menu {
    gap: 20px;
  }

  .logo {
    font-size: 1.3rem;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background-color: var(--white);
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: none;
    gap: 0;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu li {
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
  }

  .hero {
    padding: 100px 20px 60px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .two-column {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .two-column.reverse {
    direction: ltr;
  }

  .container {
    padding: 0 20px;
  }

  section {
    padding: 60px 0;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .cookie-buttons {
    flex-wrap: wrap;
  }
}

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

  h2 {
    font-size: 1.4rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  .navbar {
    padding: 10px 15px;
  }

  .logo {
    font-size: 1.1rem;
  }

  .container {
    padding: 0 15px;
  }

  button, .btn {
    padding: 10px 20px;
    font-size: 13px;
  }

  .section-title {
    margin-bottom: 40px;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .content-block {
    padding: 20px;
  }

  table {
    font-size: 0.9rem;
  }

  table th, table td {
    padding: 12px;
  }
}
