* {
    margin: 0;
    padding: 0;
}

html, body {
    height: auto;
    font-family: 'Roboto', sans-serif;
    background-image: linear-gradient(to top, #bfc4c3, #ced2d3, #dfe1e2, #eff0f1, #ffffff);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    background: rgba(255, 255, 255, 0.11);
    border-radius: 12px;
    padding: 5px;
    width: 100%;
    max-width: 900px;
    overflow-y: auto;
    text-align: center;
}

h1 {
    font-size: 2.5rem;
    color: #721313;
    margin-bottom: 20px;
    font-weight: bold;
    font-family: 'Segoe UI', sans-serif;
}

.step {
    background: #fff;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    color: #333;
}

.step h2 {
    font-size: 1.4rem !important;
    margin-bottom: 12px;
    font-weight: bold;
    text-align: start;
    font-family: 'Segoe UI', sans-serif;
}

.step p {
    font-size: 1rem;
    margin-bottom: 10px;
    text-align: start;
    line-height: 1.8;
    font-family: 'Segoe UI', sans-serif;
}

.step ul {
    list-style: none;
    font-size: 1rem;
    margin-top: 15px;
    text-align: start;
    line-height: 1.8;
    font-family: 'Segoe UI', sans-serif;
}

.step li {
    font-size: 1rem;
    margin-bottom: 12px;
    line-height: 1.8;
    text-align: left;
    font-family: 'Segoe UI', sans-serif;
}

.step li strong {
    color: #e62f22;
}
.btn-volver {
  display: inline-block;
  background-color: #e74c3c;
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
  transition: background-color 0.3s ease;
}

.btn-volver:hover {
  background-color: #c0392b;
}

.container h2 {
  font-size: 2.2em;
  margin-bottom: 20px;
  color: #333;
}

.container h2 span {
  color: #e74c3c;
}
.logo {
    height: auto; 
    width: auto;
    object-fit: cover;
}