@font-face {
  font-family: 'Sk-Regular';
  src: url('../Fonts/Sk-Modernist-Regular.otf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: 'Sk-Regular', Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f5f5f5;
  color: #333;
  line-height: 1.6;
}

.article-section {
  max-width: 800px;
  margin: 120px auto;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.article-title {
  font-size: 28px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
  text-align: center;
}

.article-subtitle {
  font-size: 18px;
  color: #666;
  margin-bottom: 20px;
  text-align: center;
}

.article-content {
  margin-top: 20px;
}

.article-content h3 {
  font-size: 20px;
  color: #E63946; /* Rojo */
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.article-content h3::before {
  content: "•";
  font-size: 24px;
  color: #E63946; /* Rojo */
  margin-right: 10px;
}

.article-content p {
  margin-bottom: 15px;
  text-align: justify;
}

.article-content ul {
  margin: 15px 0;
  padding-left: 20px;
}

.article-content ul li {
  margin-bottom: 10px;
}

.call-to-action {
  margin-top: 20px;
  background: #E63946; /* Rojo */
  color: #fff;
  text-align: center;
  padding: 15px;
  border-radius: 8px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.call-to-action:hover {
  background: #a82833;
}

.process-section {
  background: #f9f9f9;
  padding: 15px;
  margin-top: 20px;
  border-left: 4px solid #E63946; /* Rojo */
  border-radius: 8px;
}

.contact-section {
  margin-top: 20px;
  background: #f1f1f1;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  color: #333;
}

.contact-section a {
  color: #E63946; /* Rojo */
  font-weight: bold;
  text-decoration: none;
}

.contact-section a:hover {
  text-decoration: underline;
}
