/* style/index-about-ok789.css */
.page-index-about-ok789 {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
    background-color: transparent; /* Body background is handled by shared.css */
}

.page-index-about-ok789__hero-banner {
    padding-top: var(--header-offset, 120px);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 550px; /* Minimum height for the banner */
    background-color: #0A2463; /* Use brand main color for hero */
    text-align: center;
}

.page-index-about-ok789__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 20px;
    color: #ffffff;
}

.page-index-about-ok789__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for title */
    line-height: 1.2;
    font-weight: 700;
}

.page-index-about-ok789__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

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

.page-index-about-ok789__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.page-index-about-ok789__hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2; /* Slightly dim the background image */
}

/* General Section Styling */
.page-index-about-ok789__section {
    padding: 80px 20px;
    text-align: center;
}

.page-index-about-ok789__section:nth-of-type(even) {
    background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter background for contrast */
}

.page-index-about-ok789__section-title {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #FFD700; /* Gold for section titles */
    font-weight: 700;
}

.page-index-about-ok789__section-title--light {
    color: #FFD700; /* Gold for titles on dark backgrounds */
}

.page-index-about-ok789__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-index-about-ok789__content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    text-align: left;
    margin-bottom: 40px;
}

.page-index-about-ok789__content-wrapper--reversed {
    flex-direction: row-reverse;
}

.page-index-about-ok789__text-block {
    flex: 1;
    color: #ffffff; /* Light text for main content */
}

.page-index-about-ok789__text-block p {
    margin-bottom: 20px;
    font-size: 1.1em;
}

.page-index-about-ok789__text-block--light p {
    color: #f0f0f0;
}

.page-index-about-ok789__image-block {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-index-about-ok789__image-block img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
}

/* Why Choose Section */
.page-index-about-ok789__why-choose {
    background-color: #0A2463; /* Dark brand color background */
}

.page-index-about-ok789__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-index-about-ok789__card {
    background: rgba(255, 255, 255, 0.1); /* Semi-transparent white card background */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #ffffff;
}

.page-index-about-ok789__card:hover {
    transform: translateY(-8px);
    background-color: rgba(255, 255, 255, 0.15);
}

.page-index-about-ok789__card-icon {
    margin-bottom: 20px;
    width: 100px; /* Fixed size for icons */
    height: 100px; /* Fixed size for icons */
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-index-about-ok789__card-icon img {
    max-width: 100%;
    height: auto;
    display: block;
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
}

.page-index-about-ok789__card-title {
    font-size: 1.5em;
    color: #FFD700; /* Gold for card titles */
    margin-bottom: 15px;
    font-weight: 600;
}

.page-index-about-ok789__card-description {
    font-size: 1em;
    color: #f0f0f0;
}

.page-index-about-ok789__cta-group {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

/* Commitment Section */
.page-index-about-ok789__commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-index-about-ok789__commitment-item {
    background: rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    color: #ffffff;
}

.page-index-about-ok789__commitment-item img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
}

.page-index-about-ok789__commitment-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-index-about-ok789__commitment-description {
    font-size: 1.1em;
    color: #f0f0f0;
}

/* Contact Section */
.page-index-about-ok789__contact {
    background-color: rgba(255, 255, 255, 0.05);
}

.page-index-about-ok789__contact-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-index-about-ok789__contact-info {
    margin-bottom: 40px;
    font-size: 1.1em;
    color: #ffffff;
}

.page-index-about-ok789__contact-info a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-index-about-ok789__contact-info a:hover {
    color: #ffe066;
}

/* FAQ Section */
.page-index-about-ok789__faq {
    padding: 80px 20px;
    text-align: center;
}

.page-index-about-ok789__faq-list {
    max-width: 900px;
    margin: 50px auto 0 auto;
    text-align: left;
}

/* FAQ items - as per prompt requirements */
.page-index-about-ok789__faq-item {
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.08); /* Dark background friendly */
}

.page-index-about-ok789__faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    padding: 0 15px;
    opacity: 0;
    color: #f0f0f0; /* Light text for answer */
}

.page-index-about-ok789__faq-item.active .page-index-about-ok789__faq-answer {
    max-height: 2000px !important;
    padding: 20px 15px !important;
    opacity: 1;
    background: rgba(255, 255, 255, 0.03); /* Slightly darker for contrast */
    border-radius: 0 0 5px 5px;
}

.page-index-about-ok789__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: #0A2463; /* Dark blue background for question */
    border: 1px solid #FFD700; /* Gold border */
    border-radius: 5px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    position: relative;
    color: #ffffff;
}

.page-index-about-ok789__faq-question:hover {
    background: #1a3a7a; /* Slightly lighter dark blue on hover */
    border-color: #ffe066;
}

.page-index-about-ok789__faq-question:active {
    background: #001a4a;
}

.page-index-about-ok789__faq-question h3 {
    margin: 0;
    padding: 0;
    flex: 1;
    font-size: 1.2em;
    font-weight: 600;
    line-height: 1.5;
    pointer-events: none;
    color: #ffffff; /* White text for question title */
}

.page-index-about-ok789__faq-toggle {
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #FFD700; /* Gold for toggle icon */
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
}

.page-index-about-ok789__faq-item.active .page-index-about-ok789__faq-toggle {
    color: #ffffff; /* White on active */
    transform: rotate(45deg); /* Rotate to form 'X' or '-' */
}

/* Button Styles */
.page-index-about-ok789__btn-primary {
    background: #FFD700;
    color: #0A2463; /* Dark blue text on gold button */
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-about-ok789__btn-primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
}

.page-index-about-ok789__btn-secondary {
    background: transparent;
    color: #FFD700; /* Gold text on transparent button */
    padding: 12px 30px;
    border: 2px solid #FFD700;
    border-radius: 5px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.page-index-about-ok789__btn-secondary:hover {
    background-color: #FFD700;
    color: #0A2463; /* Dark blue text on gold background on hover */
    transform: translateY(-2px);
}

/* Global image responsiveness */
.page-index-about-ok789 img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-index-about-ok789__hero-title {
        font-size: 2.8em;
    }

    .page-index-about-ok789__hero-description {
        font-size: 1.1em;
    }

    .page-index-about-ok789__section-title {
        font-size: 2em;
    }

    .page-index-about-ok789__content-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .page-index-about-ok789__content-wrapper--reversed {
        flex-direction: column; /* Reset for reversed */
    }

    .page-index-about-ok789__text-block,
    .page-index-about-ok789__image-block {
        flex: none;
        width: 100%;
    }

    .page-index-about-ok789__card-title {
        font-size: 1.3em;
    }
}

@media (max-width: 768px) {
    .page-index-about-ok789__hero-banner {
        min-height: 400px;
        padding-top: var(--header-offset, 120px) !important; /* Ensure padding on mobile */
    }

    .page-index-about-ok789__hero-content {
        padding: 15px;
    }

    .page-index-about-ok789__hero-title {
        font-size: 2.2em;
        margin-bottom: 15px;
    }

    .page-index-about-ok789__hero-description {
        font-size: 1em;
        margin-bottom: 25px;
    }

    .page-index-about-ok789__hero-cta {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-index-about-ok789__section {
        padding: 50px 15px;
    }

    .page-index-about-ok789__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-index-about-ok789__text-block p {
        font-size: 1em;
    }

    .page-index-about-ok789__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-index-about-ok789__card {
        padding: 25px;
    }

    .page-index-about-ok789__card-icon img {
        min-width: 200px !important;
        min-height: 200px !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-index-about-ok789__commitment-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-index-about-ok789__commitment-item img {
        min-width: 200px !important;
        min-height: 200px !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-index-about-ok789__contact-description {
        font-size: 1em;
    }

    .page-index-about-ok789__contact-info {
        font-size: 1em;
    }

    .page-index-about-ok789__cta-group {
        flex-direction: column;
        gap: 15px;
    }

    .page-index-about-ok789__cta-group a {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Mobile image responsiveness */
    .page-index-about-ok789 img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    
    .page-index-about-ok789__section,
    .page-index-about-ok789__card,
    .page-index-about-ok789__container {
      max-width: 100% !important;
      width: 100% !important;
      box-sizing: border-box !important;
      padding-left: 15px;
      padding-right: 15px;
    }

    /* FAQ mobile */
    .page-index-about-ok789__faq-question {
        padding: 15px;
        flex-wrap: wrap;
    }
    
    .page-index-about-ok789__faq-question h3 {
        font-size: 15px;
        margin-bottom: 0;
        width: calc(100% - 40px);
    }
    
    .page-index-about-ok789__faq-toggle {
        margin-left: 10px;
        width: 24px;
        height: 24px;
        font-size: 20px;
    }
    
    .page-index-about-ok789__faq-answer {
        padding: 0 15px;
    }
    
    .page-index-about-ok789__faq-item.active .page-index-about-ok789__faq-answer {
        padding: 15px !important;
    }
}