/* Brand Story Page Styles */
.brand-story-modern-area {
    padding: 100px 0;
    min-height: 100vh;
    background-color: #f8f9fa;
}

.brand-story-modern-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.philosophy-image {
    position: relative;
    padding-right: 30px;
    align-self: flex-start;
}

.philosophy-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.brand-logo-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 20px;
    border-radius: 12px;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.brand-text {
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    letter-spacing: 3px;
    font-family: 'Open Sans', sans-serif;
}

.brand-story-content-section {
    padding-left: 30px;
}

.story-title {
    color: #2c3e50;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
    font-family: 'Open Sans', sans-serif;
}

.story-content {
    color: #5a6c7d;
    line-height: 1.8;
}

.story-text {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #444444;
    text-align: justify;
    font-family: 'Saira Condensed', sans-serif;
}

.story-highlight {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    margin: 25px 0;
    border-left: 4px solid #000000;
}

.highlight-text {
    font-size: 17px;
    font-weight: 600;
    color: #000000;
    margin: 0;
    font-style: italic;
    font-family: 'Saira Condensed', sans-serif;
}

.story-points {
    margin: 30px 0;
}

.points-title {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.belief-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.belief-points li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 16px;
    color: #444444;
    line-height: 1.6;
    font-family: 'Saira Condensed', sans-serif;
}

.belief-points li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #000000;
    font-weight: bold;
    font-size: 18px;
}

.story-conclusion {
    font-size: 17px;
    font-weight: 600;
    color: #000000;
    margin-top: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    text-align: center;
    font-family: 'Saira Condensed', sans-serif;
}

.service-categories {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
}

.service-categories li {
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
    font-weight: 500;
    color: #2c3e50;
    position: relative;
    padding-left: 20px;
}

.service-categories li:last-child {
    border-bottom: none;
}

.service-categories li:before {
    content: "▸";
    color: #ff0000;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.story-section {
    margin: 30px 0;
    padding: 25px;
    background: #ffffff;
    border-left: 4px solid #ff0000;
    border-radius: 5px;
}

.section-title {
    color: #2c3e50;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.how-it-works-list {
    counter-reset: step-counter;
    list-style: none;
    padding: 0;
    margin: 0;
}

.how-it-works-list li {
    counter-increment: step-counter;
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    border-bottom: 1px solid #e9ecef;
    font-weight: 500;
}

.how-it-works-list li:last-child {
    border-bottom: none;
}

.how-it-works-list li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 8px;
    background: #ff0000;
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: bold;
}

.fee-section {
    margin: 20px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.subsection-title {
    color: #2c3e50;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.fee-covers-title {
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 15px;
}

.fee-covers-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fee-covers-list li {
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
    color: #5a6c7d;
}

.fee-covers-list li:before {
    content: "✓";
    color: #ff0000;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.contact-us-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e9ecef;
}

.contact-us-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ff0000, #F0B9B2);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-us-btn:hover {
    background: linear-gradient(135deg, #ff0000, #F0B9B2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
    color: white;
    text-decoration: none;
}

.contact-us-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 992px) {
    .philosophy-image {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .brand-story-content-section {
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .story-title {
        font-size: 2rem;
    }
    
    .brand-story-modern-card {
        padding: 25px;
    }
    
    .story-section {
        padding: 20px;
        margin: 20px 0;
    }
    
    .section-title {
        font-size: 1.2rem;
    }
    
    .story-text {
        font-size: 1rem;
    }
    
    .brand-logo-badge {
        top: 15px;
        left: 15px;
        padding: 10px 16px;
    }
    
    .brand-text {
        font-size: 14px;
        letter-spacing: 2px;
    }
}

@media (max-width: 576px) {
    .brand-story-modern-area {
        padding: 60px 0;
    }
    
    .brand-story-modern-card {
        padding: 20px;
    }
    
    .story-title {
        font-size: 1.8rem;
    }
    
    .story-highlight {
        padding: 15px;
    }
    
    .highlight-text {
        font-size: 16px;
    }
}
