.journey-page {
    font-family: Georgia, 'Times New Roman', Times, serif;
    background-color: whitesmoke;
}

.page-heading {
    text-align: center; 
    padding: 20px; 
    color: #5C362B; 
    font-size: 24px; 
    box-shadow: 0 2px 4px rgba(0,0,0,0.1); 
    margin-top: 20px; 
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.stage {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
    margin: 20px 0;
    border-radius: 50px;
    background: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    opacity: 0; 
    object-position: center;
    transform: translateY(50px); 
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    visibility: hidden; 
}


.stage.visible {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.stage img {
    width: 200px;
    margin-right: 20px;
}

.stage div {
    width: 70%;
}

.stage h2 {
    margin-bottom: 10px;
    color: #333;
    font-size: 24px;
}

.stage p {
    color: #666;
    font-size: 16px;
}
