/* style/index-brand-story.css */

/* Global variables and resets for the page content */
.page-index-brand-story {
    --primary-color: #0A2342;
    --secondary-color: #E0B400;
    --text-light: #F5F5F5;
    --text-dark: #0A2342;
    --bg-dark: #0A2342;
    --bg-light: #FFFFFF;
    --accent-dark: #9d7e00; /* Darker variant of secondary for contrast */
    --accent-light: #e9cb4d; /* Lighter variant of secondary for contrast */
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

.page-index-brand-story a {
    text-decoration: none;
    color: var(--secondary-color);
}

.page-index-brand-story a:hover {
    color: var(--accent-dark);
}

.page-index-brand-story__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-index-brand-story__hero {
    position: relative;
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px; /* Ensure sufficient height */
}

.page-index-brand-story__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Subtle overlay */
    z-index: 0;
}

.page-index-brand-story__hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 20px;
}

.page-index-brand-story__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-brand-story__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: var(--text-light);
}

.page-index-brand-story__hero-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-index-brand-story__hero-button:hover {
    background-color: var(--accent-light);
    transform: translateY(-3px);
}

/* Section Styling */
.page-index-brand-story__section {
    padding: 80px 0;
    background-color: var(--bg-light);
    color: var(--text-dark);
    text-align: left;
}

.page-index-brand-story__section--dark {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.page-index-brand-story__section--dark .page-index-brand-story__section-title,
.page-index-brand-story__section--dark .page-index-brand-story__text-content,
.page-index-brand-story__section--dark .page-index-brand-story__feature-item h3,
.page-index-brand-story__section--dark .page-index-brand-story__feature-item p,
.page-index-brand-story__section--dark .page-index-brand-story__value-list li {
    color: var(--text-light);
}

.page-index-brand-story__section--light-bg {
    background-color: #f5f5f5; /* A very light grey for subtle contrast */
    color: var(--text-dark);
}

.page-index-brand-story__section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.page-index-brand-story__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    margin: 20px auto 0;
    border-radius: 2px;
}

.page-index-brand-story__section--dark .page-index-brand-story__section-title {
    color: var(--secondary-color);
}

.page-index-brand-story__text-content {
    font-size: 1.1em;
    margin-bottom: 25px;
    line-height: 1.8;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-index-brand-story__image-inline {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 40px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Features Grid */
.page-index-brand-story__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
    text-align: center;
}

.page-index-brand-story__feature-item {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.page-index-brand-story__section--dark .page-index-brand-story__feature-item {
    background-color: #1a3a5e; /* Slightly lighter dark blue for contrast */
}

.page-index-brand-story__feature-item:hover {
    transform: translateY(-10px);
}

.page-index-brand-story__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

.page-index-brand-story__feature-item h3 {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-index-brand-story__section--dark .page-index-brand-story__feature-item h3 {
    color: var(--secondary-color);
}

.page-index-brand-story__feature-item p {
    font-size: 1em;
    color: #555;
}

.page-index-brand-story__section--dark .page-index-brand-story__feature-item p {
    color: #ccc;
}

/* Value List */
.page-index-brand-story__value-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.page-index-brand-story__value-list li {
    font-size: 1.1em;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: var(--text-dark);
}

.page-index-brand-story__section--dark .page-index-brand-story__value-list li {
    color: var(--text-light);
}

.page-index-brand-story__icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 15px;
    background-color: var(--secondary-color);
    -webkit-mask-size: cover;
    mask-size: cover;
}

.page-index-brand-story__icon--security {
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm0 10.99h-1V10h1v1.99zm0-3.98h-1V6h1v1.99zM12 19.3c-3.14-1.78-5.5-5.06-5.5-9.3V6.26l5.5-2.42 5.5 2.42v3.74c0 4.24-2.36 7.52-5.5 9.3z"/></svg>');
    mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm0 10.99h-1V10h1v1.99zm0-3.98h-1V6h1v1.99zM12 19.3c-3.14-1.78-5.5-5.06-5.5-9.3V6.26l5.5-2.42 5.5 2.42v3.74c0 4.24-2.36 7.52-5.5 9.3z"/></svg>');
}
.page-index-brand-story__icon--fairness {
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM4 20V4h16l.01 16H4zm9-12h-2v4H8v2h7v-2h-2V8z"/></svg>');
    mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM4 20V4h16l.01 16H4zm9-12h-2v4H8v2h7v-2h-2V8z"/></svg>');
}
.page-index-brand-story__icon--support {
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-1-13h2v6h-2zm0 8h2v2h-2z"/></svg>');
    mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-1-13h2v6h-2zm0 8h2v2h-2z"/></svg>');
}
.page-index-brand-story__icon--responsibility {
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-1-13h2v6h-2zm0 8h2v2h-2z"/></svg>'); /* Reusing info icon for now */
    mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-1-13h2v6h-2zm0 8h2v2h-2z"/></svg>');
}


/* Call to Action Group */
.page-index-brand-story__cta-group {
    text-align: center;
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-index-brand-story__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.page-index-brand-story__cta-button--primary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.page-index-brand-story__cta-button--primary:hover {
    background-color: var(--accent-light);
    transform: translateY(-3px);
}

.page-index-brand-story__cta-button--secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.page-index-brand-story__cta-button--secondary:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Why Choose List */
.page-index-brand-story__why-choose-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.page-index-brand-story__why-choose-list li {
    font-size: 1.1em;
    display: flex;
    align-items: flex-start;
    color: var(--text-dark);
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-index-brand-story__icon--check {
    display: inline-block;
    width: 24px;
    height: 24px;
    min-width: 24px;
    margin-right: 15px;
    background-color: var(--secondary-color);
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>');
    mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>');
}

.page-index-brand-story .highlight {
    color: var(--secondary-color);
    font-weight: bold;
}

.page-index-brand-story__section--dark .highlight {
    color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-index-brand-story__hero-title {
        font-size: 2.8em;
    }
    .page-index-brand-story__hero-subtitle {
        font-size: 1.3em;
    }
    .page-index-brand-story__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-index-brand-story__hero {
        padding: 80px 0;
    }
    .page-index-brand-story__hero-title {
        font-size: 2.2em;
    }
    .page-index-brand-story__hero-subtitle {
        font-size: 1.1em;
    }
    .page-index-brand-story__hero-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-index-brand-story__section {
        padding: 60px 0;
    }
    .page-index-brand-story__section-title {
        font-size: 1.8em;
        margin-bottom: 40px;
    }
    .page-index-brand-story__text-content {
        font-size: 1em;
    }
    .page-index-brand-story__features-grid,
    .page-index-brand-story__value-list,
    .page-index-brand-story__why-choose-list {
        grid-template-columns: 1fr;
    }
    .page-index-brand-story__cta-group {
        flex-direction: column;
        gap: 15px;
    }
    .page-index-brand-story__cta-button {
        width: 80%;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .page-index-brand-story__hero-title {
        font-size: 1.8em;
    }
    .page-index-brand-story__hero-subtitle {
        font-size: 0.9em;
    }
    .page-index-brand-story__hero-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-index-brand-story__section-title {
        font-size: 1.5em;
    }
    .page-index-brand-story__text-content {
        font-size: 0.95em;
    }
    .page-index-brand-story__feature-item h3 {
        font-size: 1.3em;
    }
    .page-index-brand-story__value-list li,
    .page-index-brand-story__why-choose-list li {
        font-size: 0.95em;
    }
}