.brand-story-footer {
    background-color: #FDFDFC;
    color: #4B002D;
    padding: 50px 20px;
    text-align: center;
    overflow: hidden;
}

.brand-story-container {
    max-width: 900px;
    margin: 0 auto;
}

.brand-story-logo {
    max-width: 120px;
    margin-bottom: 20px;
}

.brand-story-title {
    color: #D2AE37;
    font-size: 2rem;
    margin-bottom: 20px;
    font-family: 'Georgia', serif;
}

.brand-story-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4B002D;
    font-family: 'Arial', sans-serif;
    margin-bottom: 20px;
}

.brand-story-link {
    display: inline-block;
    color: #D2AE37 !important;
    font-weight: bold;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.brand-story-link:hover {
    text-decoration: none;
    border-color: #D2AE37;
    color: #4B002D;
}

/* Fade-in animation */
.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: none;
}

/* Responsive */
@media (max-width: 600px) {
    .brand-story-title {
        font-size: 1.5rem;
    }

    .brand-story-text {
        font-size: 1rem;
    }

    .brand-story-logo {
        max-width: 80px;
    }
}
