.backstory-content {
    padding: 2rem;
    margin-top: 1rem; 
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-image {
    width: 100%;
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-width: 500px;
    border-radius: 10px;
    border: 4px solid var(--accent1);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.backstory-text h1 {
    font-family: var(--heading-font);
    font-size: 2.2rem;
    color: var(--accent1);
    margin-bottom: 1rem;
    text-align: center;
}

.backstory-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.7;
}

.search-container {
    margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 600px) {
    .hero-image img {
        max-width: 90%;
    }

    .backstory-text h1 {
        font-size: 1.8rem;
    }

    .backstory-text p {
        font-size: 1rem;
    }
}