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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Georgia', 'Garamond', serif;
  color: #2C3E50;
  background-color: #FFFFFF;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: #2C3E50;
  transition: all 0.3s ease;
}

a:hover {
  color: #F39C12;
}

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

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

header .logo {
  font-size: 1.75rem;
  font-weight: bold;
  color: #FFFFFF;
  letter-spacing: 2px;
}

header nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

header nav a {
  color: #FFFFFF;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-bottom: 3px solid transparent;
  transition: border-color 0.3s ease, color 0.3s ease;
}

header nav a:hover {
  border-bottom-color: #F39C12;
  color: #F39C12;
}

header nav a.active {
  border-bottom-color: #F39C12;
  color: #F39C12;
}

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

main {
  margin-top: 80px;
}

section {
  padding: 4rem 0;
}

h1 {
  font-family: 'Arial', 'Helvetica', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #2C3E50;
  letter-spacing: -1px;
  line-height: 1.2;
}

h2 {
  font-family: 'Arial', 'Helvetica', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #2C3E50;
  letter-spacing: -0.5px;
  line-height: 1.3;
}

h3 {
  font-family: 'Arial', 'Helvetica', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #2C3E50;
}

p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: #2C3E50;
}

.hero-section {
  position: relative;
  height: 600px;
  background: linear-gradient(135deg, rgba(44, 62, 80, 0.7) 0%, rgba(44, 62, 80, 0.5) 100%), 
              url('images/hero-bg.jpg') center / cover no-repeat;
  display: flex;
  align-items: center;
  color: #FFFFFF;
  margin-top: -80px;
  padding-top: 80px;
}

.hero-section .content {
  max-width: 600px;
  padding: 2rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-section h1 {
  color: #FFFFFF;
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.hero-section p {
  color: #EEEEEE;
  font-size: 1.1rem;
  line-height: 1.8;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

.grid-2.reverse {
  direction: rtl;
}

.grid-2.reverse > * {
  direction: ltr;
}

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

.image-box img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.image-box:hover img {
  transform: scale(1.02);
}

.content-block {
  padding: 2rem;
}

.section-full-width {
  background-color: #F8F8F8;
  padding: 4rem 0;
  margin: 3rem 0;
}

.section-full-width h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

.card {
  background-color: #FFFFFF;
  border: 1px solid #EEEEEE;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.card h3 {
  margin-bottom: 1rem;
  color: #2C3E50;
}

.card p {
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.accent-bar {
  width: 4px;
  height: 40px;
  background-color: #F39C12;
  margin-bottom: 1rem;
}

.stat-strip {
  background-color: #2C3E50;
  color: #FFFFFF;
  padding: 3rem 0;
  margin: 3rem 0;
  text-align: center;
}

.stat-strip .stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.stat-item h3 {
  color: #F39C12;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.stat-item p {
  color: #EEEEEE;
  font-size: 0.9rem;
}

.cta-button {
  display: inline-block;
  background-color: #F39C12;
  color: #FFFFFF;
  padding: 1rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.cta-button:hover {
  background-color: #E67E22;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(243, 156, 18, 0.3);
}

.disclaimer-box {
  background-color: #FFF3CD;
  border-left: 4px solid #E74C3C;
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
  font-size: 0.9rem;
  line-height: 1.6;
}

.disclaimer-box strong {
  color: #E74C3C;
}

footer {
  background-color: #2C3E50;
  color: #FFFFFF;
  padding: 3rem 0;
  margin-top: 4rem;
}

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

footer h3 {
  color: #F39C12;
  margin-bottom: 1rem;
  font-size: 1rem;
}

footer p, footer a {
  color: #EEEEEE;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

footer a {
  display: inline-block;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

footer a:hover {
  border-bottom-color: #F39C12;
  color: #F39C12;
}

.footer-divider {
  border-top: 1px solid #34495E;
  padding-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: #BDC3C7;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2C3E50;
  color: #FFFFFF;
  padding: 1.5rem;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  display: none;
  z-index: 999;
}

.cookie-banner.show {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.9rem;
  flex: 1;
}

.cookie-banner .buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.cookie-banner button {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.cookie-banner .accept-btn {
  background-color: #F39C12;
  color: #FFFFFF;
}

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

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

.cookie-banner .decline-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.glossary-section {
  background-color: #F8F8F8;
  padding: 2rem;
  border-radius: 8px;
  margin: 2rem 0;
}

.glossary-item {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #EEEEEE;
}

.glossary-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.glossary-term {
  font-weight: 600;
  color: #2C3E50;
  margin-bottom: 0.5rem;
}

.glossary-definition {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
}

.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #F39C12;
  transform: translateX(-50%);
}

.timeline-item {
  margin-bottom: 2rem;
  width: 48%;
  padding: 1.5rem;
  background-color: #F8F8F8;
  border-radius: 4px;
}

.timeline-item:nth-child(odd) {
  margin-left: 0;
  margin-right: auto;
  padding-right: 2rem;
}

.timeline-item:nth-child(even) {
  margin-left: auto;
  margin-right: 0;
  padding-left: 2rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

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

.blog-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.blog-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-content {
  padding: 1.5rem;
}

.blog-card h3 {
  margin-bottom: 0.75rem;
}

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

.blog-card a {
  color: #F39C12;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.blog-card a:hover {
  border-bottom-color: #F39C12;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #2C3E50;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #EEEEEE;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #F39C12;
  box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.1);
}

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

.educational-notice {
  background-color: #E8F4F8;
  border-left: 4px solid #2ECC71;
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
  font-size: 0.9rem;
  line-height: 1.6;
}

.educational-notice strong {
  color: #2ECC71;
}

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

  h2 {
    font-size: 1.5rem;
  }

  header nav {
    gap: 1rem;
  }

  header nav a {
    font-size: 0.85rem;
    padding: 0.5rem 0.75rem;
  }

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

  .hero-section {
    height: 400px;
  }

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

  .timeline::before {
    left: 0;
  }

  .timeline-item {
    width: 100%;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 2rem !important;
    padding-right: 1.5rem !important;
  }

  .cookie-banner.show {
    flex-direction: column;
    gap: 1rem;
  }

  .cookie-banner .buttons {
    width: 100%;
  }

  .cookie-banner button {
    flex: 1;
  }

  section {
    padding: 2.5rem 0;
  }
}
