/* style/index-why-choose-ok99.css */

.page-index-why-choose-ok99 {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #f8f8f8;
}

.page-index-why-choose-ok99__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-index-why-choose-ok99__hero-section {
    background: linear-gradient(135deg, #1A2B5B 0%, #344985 100%); /* Dark blue gradient */
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-index-why-choose-ok99__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,patterns,ok99,dark_blue]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-index-why-choose-ok99__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for emphasis */
    position: relative;
    z-index: 1;
    font-weight: bold;
}

.page-index-why-choose-ok99__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    color: #E0E0E0;
}

.page-index-why-choose-ok99__cta-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;
    position: relative;
    z-index: 1;
    margin: 10px;
}

.page-index-why-choose-ok99__cta-button--primary {
    background-color: #FFD700; /* Gold */
    color: #1A2B5B; /* Dark blue text */
    border: 2px solid #FFD700;
}

.page-index-why-choose-ok99__cta-button--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-index-why-choose-ok99__cta-button--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-index-why-choose-ok99__cta-button--secondary:hover {
    background-color: #FFD700;
    color: #1A2B5B;
    transform: translateY(-3px);
}

.page-index-why-choose-ok99__content-section {
    padding: 60px 0;
}

.page-index-why-choose-ok99__bg-light {
    background-color: #f8f8f8;
}

.page-index-why-choose-ok99__section-title {
    font-size: 2.5em;
    color: #1A2B5B;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.page-index-why-choose-ok99__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-index-why-choose-ok99__text-block {
    font-size: 1.1em;
    margin-bottom: 30px;
    text-align: justify;
    color: #444444;
}

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

.page-index-why-choose-ok99__feature-item {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-index-why-choose-ok99__feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-index-why-choose-ok99__feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.1));
}

.page-index-why-choose-ok99__feature-title {
    font-size: 1.6em;
    color: #1A2B5B;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-index-why-choose-ok99__feature-item p {
    font-size: 1em;
    color: #555555;
    text-align: justify;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-index-why-choose-ok99__conclusion-text {
    text-align: center;
    font-size: 1.2em;
    font-weight: bold;
    color: #1A2B5B;
    margin-top: 50px;
    margin-bottom: 40px;
}

.page-index-why-choose-ok99__cta-group {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 50px;
}

.page-index-why-choose-ok99__faq-section {
    background-color: #EBF2F7;
    padding: 60px 0;
}

.page-index-why-choose-ok99__faq-question {
    font-size: 1.4em;
    color: #1A2B5B;
    margin-bottom: 10px;
    cursor: pointer;
    padding: 15px 20px;
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s ease;
}

.page-index-why-choose-ok99__faq-question:hover {
    background-color: #F0F7FA;
}

.page-index-why-choose-ok99__faq-answer {
    font-size: 1.1em;
    color: #555555;
    padding: 10px 20px 20px;
    background-color: #FFFFFF;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    margin-bottom: 20px;
    display: none; /* Hidden by default, toggled by JS */
}

.page-index-why-choose-ok99__faq-item.active .page-index-why-choose-ok99__faq-answer {
    display: block;
}

.page-index-why-choose-ok99__faq-item.active .page-index-why-choose-ok99__faq-question {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    background-color: #F0F7FA;
    border-bottom: 1px solid #DCE4EA;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-index-why-choose-ok99__hero-title {
        font-size: 2.5em;
    }

    .page-index-why-choose-ok99__hero-subtitle {
        font-size: 1.1em;
    }

    .page-index-why-choose-ok99__section-title {
        font-size: 2em;
    }

    .page-index-why-choose-ok99__feature-grid {
        grid-template-columns: 1fr;
    }

    .page-index-why-choose-ok99__feature-item {
        padding: 25px;
    }

    .page-index-why-choose-ok99__feature-icon {
        width: 60px;
        height: 60px;
    }

    .page-index-why-choose-ok99__feature-title {
        font-size: 1.4em;
    }

    .page-index-why-choose-ok99__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-index-why-choose-ok99__hero-title {
        font-size: 2em;
    }

    .page-index-why-choose-ok99__hero-subtitle {
        font-size: 1em;
    }

    .page-index-why-choose-ok99__section-title {
        font-size: 1.8em;
    }

    .page-index-why-choose-ok99__cta-button {
        display: block;
        margin: 10px auto;
        width: 90%;
    }
    .page-index-why-choose-ok99__feature-item {
        padding: 20px;
    }
    .page-index-why-choose-ok99__faq-question, .page-index-why-choose-ok99__faq-answer {
        padding-left: 15px;
        padding-right: 15px;
    }
}