/* Story section styles */
#story {
    background-image: url('../images/story.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0;
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
}

#story .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    text-align: center;
}

#story h2 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    font-size: 3rem;
    margin-bottom: 40px;
}

#story p {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    max-width: 900px;
    margin: 0 auto 25px auto;
    font-size: 1.3rem;
    line-height: 1.6;
} 

