/* style/index-ok9-brand-story.css */
.page-index-ok9-brand-story {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

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

.page-index-ok9-brand-story__hero {
    background: linear-gradient(135deg, #003366 0%, #004488 100%);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 450px;
}

.page-index-ok9-brand-story__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

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

.page-index-ok9-brand-story__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.page-index-ok9-brand-story__hero-button {
    display: inline-block;
    background-color: #FFD700;
    color: #003366;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-index-ok9-brand-story__hero-button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-index-ok9-brand-story__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.3;
}

.page-index-ok9-brand-story__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-index-ok9-brand-story__section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.page-index-ok9-brand-story__section:nth-of-type(even) {
    background-color: #f0f4f8;
}

.page-index-ok9-brand-story__section-title {
    font-size: 2.5em;
    color: #003366;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-index-ok9-brand-story__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-index-ok9-brand-story__paragraph {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

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

.page-index-ok9-brand-story__values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-index-ok9-brand-story__value-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-ok9-brand-story__value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.page-index-ok9-brand-story__value-title {
    font-size: 1.8em;
    color: #003366;
    margin-bottom: 15px;
}

.page-index-ok9-brand-story__value-description {
    font-size: 1em;
    color: #666;
}

.page-index-ok9-brand-story__commitment-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-index-ok9-brand-story__commitment-list li {
    background-color: #eef4f9;
    margin-bottom: 15px;
    padding: 20px;
    border-left: 5px solid #003366;
    border-radius: 5px;
    font-size: 1.1em;
    color: #444;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.page-index-ok9-brand-story__list-title {
    color: #003366;
    font-size: 1.3em;
    margin-bottom: 10px;
}

.page-index-ok9-brand-story__cta {
    text-align: center;
    background-color: #003366;
    color: #fff;
    padding: 80px 20px;
}

.page-index-ok9-brand-story__cta .page-index-ok9-brand-story__section-title {
    color: #FFD700;
}

.page-index-ok9-brand-story__cta .page-index-ok9-brand-story__section-title::after {
    background-color: #fff;
}

.page-index-ok9-brand-story__cta .page-index-ok9-brand-story__paragraph {
    color: #e0e0e0;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-index-ok9-brand-story__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-index-ok9-brand-story__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

.page-index-ok9-brand-story__button--primary {
    background-color: #FFD700;
    color: #003366;
}

.page-index-ok9-brand-story__button--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-index-ok9-brand-story__button--secondary {
    background-color: transparent;
    border: 2px solid #FFD700;
    color: #FFD700;
}

.page-index-ok9-brand-story__button--secondary:hover {
    background-color: #FFD700;
    color: #003366;
    transform: translateY(-3px);
}

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

@media (max-width: 768px) {
    .page-index-ok9-brand-story__hero {
        padding: 60px 15px;
    }
    .page-index-ok9-brand-story__hero-title {
        font-size: 2.2em;
    }
    .page-index-ok9-brand-story__hero-subtitle {
        font-size: 1.1em;
    }
    .page-index-ok9-brand-story__section {
        padding: 40px 0;
    }
    .page-index-ok9-brand-story__section-title {
        font-size: 1.8em;
    }
    .page-index-ok9-brand-story__paragraph, .page-index-ok9-brand-story__value-description, .page-index-ok9-brand-story__commitment-list li {
        font-size: 0.95em;
    }
    .page-index-ok9-brand-story__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-index-ok9-brand-story__button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-index-ok9-brand-story__hero-title {
        font-size: 1.8em;
    }
    .page-index-ok9-brand-story__hero-subtitle {
        font-size: 1em;
    }
    .page-index-ok9-brand-story__hero-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-index-ok9-brand-story__section-title {
        font-size: 1.5em;
    }
    .page-index-ok9-brand-story__value-title {
        font-size: 1.5em;
    }
    .page-index-ok9-brand-story__list-title {
        font-size: 1.1em;
    }
}