/* Story Section Styles */
.story-section {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
    padding: 2rem;
}

.story-content {
    margin-top: 1.5rem;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1rem;
}

.story-text p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .story-section {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .story-text p {
        font-size: 1rem;
    }
} 