:root {
  --primary-light: #E0E6EE;
  --primary-dark: #E0E6EE;
  --accent-green: #4CAF50;
  --accent-orange: #FFC107;
  --accent-peach: #FFAB91;
  --text-dark: #2c3e50;
  --text-light: #ecf0f1;
  --border-radius: 8px;
  --spacing-unit: 16px;
}

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

html, body {
  height: 100%;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Poppins', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

h2 {
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.5rem;
  color: var(--text-dark);
}

h4 {
  font-size: 1.25rem;
  color: var(--text-dark);
}

p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.8;
}

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

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

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

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

.logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo:hover {
  color: var(--accent-green);
}

.logo img {
  height: 40px;
  width: 40px;
}

nav {
  display: flex;
  gap: 2rem;
}

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

nav a:hover,
nav a.active {
  color: var(--accent-green);
}

main {
  margin-top: 80px;
  width: 100%;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(255, 193, 7, 0.1));
}

.hero-section img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 2rem;
}

.hero-content h1 {
  font-size: 3rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
}

.hero-content p {
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}

.section {
  padding: 4rem 0;
  border-bottom: 1px solid #f0f0f0;
}

.section:last-child {
  border-bottom: none;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 1rem;
}

.section-title h2 {
  display: inline-block;
  position: relative;
  padding-bottom: 0.5rem;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-green);
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.three-column {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: var(--border-radius);
  padding: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

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

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
}

.card h3 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.card p {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

table thead {
  background-color: var(--accent-green);
  color: white;
}

table th,
table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}

table tbody tr:nth-child(even) {
  background-color: var(--primary-light);
}

table tbody tr:hover {
  background-color: rgba(76, 175, 80, 0.1);
}

.list-section {
  margin-top: 2rem;
}

.list-section ul {
  list-style: none;
  padding: 0;
}

.list-section li {
  padding: 1rem 0;
  padding-left: 2rem;
  position: relative;
  border-bottom: 1px solid #f0f0f0;
}

.list-section li:last-child {
  border-bottom: none;
}

.list-section li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-green);
  font-weight: bold;
  font-size: 1.2rem;
}

.timeline {
  position: relative;
  margin-top: 3rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: var(--accent-green);
}

.timeline-item {
  margin-bottom: 2rem;
  width: 45%;
}

.timeline-item:nth-child(odd) {
  margin-left: 0;
  text-align: right;
  padding-right: 5%;
}

.timeline-item:nth-child(even) {
  margin-left: 55%;
  padding-left: 5%;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 15px;
  height: 15px;
  background: var(--accent-orange);
  border: 3px solid white;
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--accent-green);
}

.timeline-content {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.full-width-section {
  width: 100%;
  padding: 3rem 0;
  background: linear-gradient(135deg, var(--accent-green) 0%, rgba(76, 175, 80, 0.8) 100%);
  color: white;
  text-align: center;
}

.full-width-section h2 {
  color: white;
}

.full-width-section p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.1rem;
}

.carousel {
  position: relative;
  margin-top: 2rem;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 1rem 0;
}

.carousel-track::-webkit-scrollbar {
  height: 8px;
}

.carousel-track::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.carousel-track::-webkit-scrollbar-thumb {
  background: var(--accent-green);
  border-radius: 10px;
}

.carousel-item {
  min-width: 300px;
  flex: 0 0 300px;
}

.carousel-card {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: var(--border-radius);
  padding: 1.5rem;
  height: 100%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.carousel-card:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.carousel-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
}

button,
.btn {
  background-color: var(--accent-green);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

button:hover,
.btn:hover {
  background-color: var(--accent-orange);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

button:active,
.btn:active {
  transform: translateY(0);
}

footer {
  background-color: var(--text-dark);
  color: var(--text-light);
  padding: 3rem 0;
  margin-top: 4rem;
}

footer .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

footer h4 {
  color: var(--text-light);
  margin-bottom: 1rem;
}

footer a {
  color: #bdc3c7;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--accent-green);
  text-decoration: none;
}

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

.accordion {
  margin-top: 2rem;
}

.accordion-item {
  border: 1px solid #e0e0e0;
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  overflow: hidden;
}

.accordion-header {
  background-color: var(--primary-light);
  padding: 1.25rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.3s ease;
}

.accordion-header:hover {
  background-color: rgba(76, 175, 80, 0.1);
}

.accordion-header.active {
  background-color: var(--accent-green);
  color: white;
}

.accordion-toggle {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

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

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1.25rem;
}

.accordion-body.active {
  max-height: 500px;
  padding: 1.25rem;
}

.accordion-body p {
  margin-bottom: 0.5rem;
}

.disclaimer-block {
  background-color: rgba(255, 167, 145, 0.2);
  border-left: 4px solid var(--accent-peach);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  margin: 2rem 0;
}

.disclaimer-block h4 {
  color: var(--text-dark);
  margin-top: 0;
}

.disclaimer-block p {
  color: #555;
}

.image-left {
  order: 1;
}

.image-right {
  order: 2;
}

.text-left {
  order: 2;
}

.text-right {
  order: 1;
}

@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 1rem;
  }

  nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

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

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

  .two-column {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .three-column {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  footer .container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .timeline::before {
    left: 0;
  }

  .timeline-item {
    width: 100%;
    text-align: left;
    padding-left: 30px;
    margin-left: 0;
  }

  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    width: 100%;
    margin-left: 0;
    padding-right: 0;
    padding-left: 30px;
    text-align: left;
  }

  .carousel-track {
    overflow-x: scroll;
  }

  .carousel-item {
    min-width: 280px;
    flex: 0 0 280px;
  }

  .container {
    padding: 0 1rem;
  }

  .section {
    padding: 2rem 0;
  }
}

@media (max-width: 576px) {
  .header-content {
    padding: 0.75rem 1rem;
  }

  main {
    margin-top: 100px;
  }

  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  .hero-section {
    height: 60vh;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  nav {
    gap: 0.75rem;
  }

  nav a {
    font-size: 0.9rem;
  }

  table {
    font-size: 0.9rem;
  }

  table th,
  table td {
    padding: 0.75rem;
  }

  .list-section li {
    padding-left: 1.5rem;
  }

  .carousel-item {
    min-width: 260px;
    flex: 0 0 260px;
  }
}

.hidden {
  display: none !important;
}

.visible {
  display: block !important;
}
