.cta-button {
    width: 80%;
    text-align: center;
    padding: 18px 24px;
}

.cta-button.secondary {
background: transparent;
border: 2px solid #fff;
color: #fff;
box-shadow: none;
}

.cta-button.secondary:hover {
background: rgba(255, 255, 255, 0.15);
box-shadow: none;
transform: translateY(-4px) scale(1.05);
}

.hero-logo {
width: 180px;
height: auto;
margin-bottom: 2rem;
margin-top: 5mm;
filter: drop-shadow(0 8px 16px rgba(0,0,0,0.2));
}

/* RUT Steps */
.rut-steps {
display: grid;
grid-template-columns: 1fr;
gap: 1.5rem;
margin-top: 2rem;
text-align: left;
}

.rut-step {
display: flex;
align-items: flex-start;
gap: 1.5rem;
background-color: var(--neutral-50);
padding: 1.5rem;
border-radius: 12px;
border: 1px solid #e2e8f0;
}

.rut-step-number {
flex-shrink: 0;
width: 48px;
height: 48px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
background: var(--primary-green);
color: var(--neutral-900);
font-size: 1.5rem;
font-weight: 700;
line-height: 1;
}

.rut-step-text {
font-size: 1rem;
color: var(--neutral-700);
line-height: 1.6;
}

@media (min-width: 768px) {
.rut-steps {
    grid-template-columns: repeat(2, 1fr);
}
}

/* RUT Section */
.rut-section {
background: linear-gradient(135deg, var(--neutral-100), #ffffff);
padding: 6rem 0;
text-align: center;
}

.rut-content {
max-width: 800px;
margin: 0 auto;
padding: 3rem;
background: white;
border-radius: 20px;
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
border: 1px solid var(--neutral-100);
}

.rut-icon {
font-size: 4rem;
margin-bottom: 1.5rem;
line-height: 1;
}

.rut-section .section-title {
font-size: 2.5rem;
font-weight: 800;
color: var(--neutral-900);
margin-bottom: 1rem;
}

.rut-description {
font-size: 1.1rem;
color: var(--neutral-700);
line-height: 1.7;
margin-bottom: 2rem;
}

.rut-link {
display: inline-block;
text-decoration: none;
color: var(--primary-dark);
font-weight: 600;
transition: color 0.3s ease;
}

.rut-link:hover {
color: var(--accent-orange);
}