body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f5f0eb;
    color: #3c2f2f;
}

header {
    background-color: #4f3a2d;
    padding: 10px 20px;
}

.logo {
    height: 50px;
}

main {
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
}

h1 {
    text-align: center;
    color: #3c2f2f;
    margin-bottom: 10px;
}

.intro {
    text-align: center;
    font-size: 1.1em;
    color: #5c4b4b;
    margin-bottom: 50px;
}

.step {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    padding: 30px;
    gap: 30px;
    flex-wrap: wrap;
}

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

.step .text {
    flex: 1;
    min-width: 280px;
}

.step h2 {
    color: #2f583c;
    margin-bottom: 10px;
}

.step p {
    font-size: 1em;
    color: #5e4d4d;
}

.step img {
    flex: 1;
    max-width: 400px;
    border-radius: 10px;
    width: 100%;
    object-fit: cover;
}