.hero {
margin: 12%;
text-align: center;
}

.hero h1 {
font-size: 3rem;
font-weight: 600;
}

.hero p {
font-size: 1.2rem;
margin-top: 1rem;
color: #555;
}

main {
padding: 2rem;
}

.step {
display: flex;
align-items: center;
justify-content: center;
gap: 3rem;
padding: 4rem 0;
flex-wrap: wrap;
}

.step.reverse {
flex-direction: row-reverse;
}

.step img {
max-width: 500px;
width: 100%;
border-radius: 12px;
box-shadow: 0 8px 20px rgba(0,0,0,0.05);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step img:hover {
  transform: scale(1.3);
}

.step .text {
max-width: 600px;
margin-right: 9vw;
}

.step.reverse .text {
max-width: 600px;
margin-left: 9vw;
}

.step h2 {
font-size: 1.8rem;
margin-bottom: 1rem;
}

footer {
padding: 2rem;
text-align: center;
background-color: #f4f4f4;
color: #777;
font-size: 0.9rem;
}
