/* Brand Story Section Styles */
/* IE9 compatible styles */

.brand-story {
    background-color: #f8f9fa;
    padding: 80px 0;
    position: relative;
}

.brand-story-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.brand-story-title {
    font-size: 2.2em;
    color: #2c3e50;
    margin-bottom: 40px;
    font-weight: bold;
    line-height: 1.3;
}

.brand-story-text {
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.brand-story-paragraph {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
    text-align: justify;
}

.brand-story-highlight {
    font-size: 1.2em;
    line-height: 1.8;
    color: #2c3e50;
    font-weight: 600;
    text-align: center;
    margin-top: 40px;
    padding: 25px;
    background-color: #fff;
    border-left: 4px solid #667eea;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    /* IE9 fallback */
    filter: progid:DXImageTransform.Microsoft.dropshadow(OffX=0, OffY=2, Color='#19000000');
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .brand-story {
        padding: 60px 0;
    }
    
    .brand-story-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    
    .brand-story-paragraph {
        font-size: 1em;
        line-height: 1.7;
        margin-bottom: 20px;
    }
    
    .brand-story-highlight {
        font-size: 1.1em;
        padding: 20px;
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .brand-story {
        padding: 40px 0;
    }
    
    .brand-story-title {
        font-size: 1.5em;
        margin-bottom: 25px;
    }
    
    .brand-story-paragraph {
        font-size: 0.95em;
        text-align: left;
    }
    
    .brand-story-highlight {
        font-size: 1em;
        padding: 15px;
        margin-top: 25px;
    }
}

/* IE9 specific fixes */
.ie9 .brand-story-content {
    width: 900px;
}

.ie9 .brand-story-text {
    width: 800px;
}

.ie9 .brand-story-highlight {
    /* IE9 fallback for box-shadow */
    border: 1px solid #e0e0e0;
}