html {
  scroll-behavior: smooth;
}

body {
  line-height: 1.6;
  padding: 0;
  margin: 0;
  background-color: #f0f2f5 !important;
  background: #f0f2f5 !important;
  color: #333;
  align-items: stretch !important;
  display: flex;
  flex-direction: column;
}

#language-switcher-container {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 10;
}

.page-header {
  text-align: center;
  padding: 60px 20px 100px;
  background: linear-gradient(
    135deg,
    var(--color-tertiary),
    var(--color-primary)
  );
  color: white;
  width: 100%;
  box-sizing: border-box;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.header-logo {
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.page-header h1 {
  font-size: 2.5rem;
  font-weight: 800;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  margin: 0;
}

.content-container {
  width: 90%;
  max-width: 900px;
  margin: -50px auto 60px; 
  background: #fff;
  padding: 50px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  position: relative;
  z-index: 2;
  text-align: justify;
}

.content-container h2 {
  color: var(--color-primary);
  font-size: 1.6rem;
  font-weight: 700;
  border-bottom: 2px solid #eee;
  padding-bottom: 10px;
  margin: 40px 0 20px;
}

.content-container h2:first-child {
    margin-top: 0;
}

.content-container h3 {
  color: var(--color-primary);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 30px 0 15px;
}

.content-container p,
.content-container li {
  margin-bottom: 15px;
  color: #555;
  font-size: 1.05rem;
}

.content-container strong {
  color: var(--color-primary);
}

.content-container a {
  font-weight: bold;
  color: var(--color-primary);
}

.content-container strong {
  color: var(--color-primary);
}

.content-container .cta-button {
  background-color: #ffa140;
  color: var(--color-secondary) !important;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 50px auto 0;
  width: fit-content;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

footer {
  background-color: var(--color-secondary);
  color: #ccc;
  text-align: center;
  padding: 30px 0;
  width: 100%;
  margin-top: auto;
}

footer .dev-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-bottom: 10px;
}

footer p {
  color: #ccc;
  max-width: 90%;
  margin: 0 auto;
  font-size: 0.9rem;
}

footer a {
  color: #ff9800;
  text-decoration: none;
  transition: color 0.2s;
}

@media (hover: hover) and (pointer: fine) {
  .content-container a:hover {
    text-decoration: underline;
    color: var(--color-primary);
  }

  .content-container a.cta-button:hover {
    background-color: #ffb76b;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    text-decoration: none;
  }

  footer a:hover {
    color: #ffd180;
    text-decoration: underline;
  }
}

@media screen and (max-width: 768px) {
  .page-header {
    padding: 40px 20px 80px;
  }
  .page-header h1 {
    font-size: 1.8rem;
  }
  .content-container {
    padding: 25px;
    margin-top: -40px;
    width: 95%;
  }
  .content-container h2 {
    font-size: 1.4rem;
  }
  .cta-button {
    font-size: 1rem;
    padding: 12px 25px;
  }
}
