.container-presantation {
  /* Note: keeping original typo from HTML */
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}

.section {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

h1 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  text-align: center;
  font-size: 1.8rem;
  border-bottom: 3px solid var(--secondary-color);
  padding-bottom: 0.5rem;
}

.content-block {
  margin: 1rem 0;
  padding: 1rem;
  background: rgba(255, 140, 0, 0.05);
  border-left: 4px solid var(--primary-color);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.content-block:hover {
  background: rgba(255, 140, 0, 0.1);
  transform: translateX(5px);
}

.highlight-text {
  color: var(--primary-color);
  font-weight: bold;
}

.stats-box {
  background: var(--primary-color);
  color: white;
  padding: 1.5rem;
  border-radius: 8px;
  margin: 1.5rem 0;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.stats-box:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  background: var(--secondary-color);
  transform: translateY(-5px);
}

.stats-box h2 {
  font-size: 1.8rem;
  margin: 0.5rem 0;
}

.quote {
  text-align: center;
  font-style: italic;
  color: var(--secondary-color);
  margin: 2rem 0;
  font-size: 1.3rem;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.quote::before,
.quote::after {
  content: '"';
  font-size: 1.4rem;
  color: var(--primary-color);
  font-weight: 600;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.quote::before {
  margin-right: 0.1rem;
}

.quote::after {
  margin-left: 0.1rem;
}

.quote:hover {
  color: var(--primary-color);
  transform: translateY(-3px);
}

.quote:hover::before,
.quote:hover::after {
  opacity: 1;
  transform: scale(1.1);
}

.action-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.action-link {
  display: inline-block;
  width: 100%;
  max-width: 300px;
  text-align: center;
  padding: 0.75rem 1.5rem;
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.action-link:hover {
  background: var(--secondary-color);
  transform: translateY(-5px);
}

/* Tablet Styles */
@media screen and (min-width: 768px) {
  .container-presantation {
    padding: 2rem;
  }

  h1 {
    font-size: 2.2rem;
  }

  .action-links {
    flex-direction: row;
    justify-content: center;
  }

  .action-link {
    width: auto;
  }

  .stats-box {
    max-width: 500px;
    margin: 1.5rem auto;
  }
}

/* Desktop Styles */
@media screen and (min-width: 1024px) {
  .container-presantation {
    padding: 3rem;
  }

  h1 {
    font-size: 2.5rem;
  }

  .section {
    padding: 2.5rem;
  }

  .content-block {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }

  .stats-box {
    max-width: 600px;
  }
}

/* Small Mobile Adjustments */
@media screen and (max-width: 375px) {
  .action-link {
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
  }
}
