/* style/resources-okkinh-safe-and-reliable.css */

:root {
    --page-primary-color: #1A2E44;
    --page-secondary-color: #FFD700;
    --page-text-light: #FFFFFF;
    --page-text-dark: #1A2E44;
    --page-text-darker: #0D1A26;
    --page-background-light: #F8F9FA;
    --page-background-dark: #1A2E44;
}

.page-resources-okkinh-safe-and-reliable {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-text-dark);
    background-color: var(--page-background-light);
}

.page-resources-okkinh-safe-and-reliable__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-resources-okkinh-safe-and-reliable__section {
    padding: 60px 0;
    text-align: center;
}

.page-resources-okkinh-safe-and-reliable__section:nth-of-type(even) {
    background-color: #F0F2F5; /* Slightly off-white for contrast */
}

.page-resources-okkinh-safe-and-reliable__hero {
    background: linear-gradient(135deg, var(--page-primary-color) 0%, #3a5068 100%); /* Darker blue to slightly lighter blue */
    color: var(--page-text-light);
    padding: 100px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.page-resources-okkinh-safe-and-reliable__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.page-resources-okkinh-safe-and-reliable__hero-content h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--page-secondary-color); /* Gold for main title */
    line-height: 1.2;
}

.page-resources-okkinh-safe-and-reliable__hero-content p {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.page-resources-okkinh-safe-and-reliable__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    overflow: hidden;
}

.page-resources-okkinh-safe-and-reliable__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.page-resources-okkinh-safe-and-reliable h2 {
    font-size: 2.5em;
    color: var(--page-primary-color);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.page-resources-okkinh-safe-and-reliable h2::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 80px;
    height: 4px;
    background-color: var(--page-secondary-color);
    border-radius: 2px;
}

.page-resources-okkinh-safe-and-reliable h3 {
    font-size: 1.8em;
    color: var(--page-primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-resources-okkinh-safe-and-reliable p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #333;
}

.page-resources-okkinh-safe-and-reliable__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-resources-okkinh-safe-and-reliable__btn--primary {
    background-color: var(--page-secondary-color);
    color: var(--page-text-darker); /* Darker text for gold background */
}

.page-resources-okkinh-safe-and-reliable__btn--primary:hover {
    background-color: #e6c200; /* Slightly darker gold */
    transform: translateY(-3px);
}

.page-resources-okkinh-safe-and-reliable__btn--secondary {
    background-color: var(--page-primary-color);
    color: var(--page-text-light);
    border: 2px solid var(--page-secondary-color);
}

.page-resources-okkinh-safe-and-reliable__btn--secondary:hover {
    background-color: #0D1A26;
    border-color: #e6c200;
    transform: translateY(-3px);
}

.page-resources-okkinh-safe-and-reliable__intro p {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-resources-okkinh-safe-and-reliable__feature-grid, 
.page-resources-okkinh-safe-and-reliable__compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-okkinh-safe-and-reliable__feature-item, 
.page-resources-okkinh-safe-and-reliable__compliance-item {
    background-color: var(--page-text-light);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-resources-okkinh-safe-and-reliable__feature-item:hover, 
.page-resources-okkinh-safe-and-reliable__compliance-item:hover {
    transform: translateY(-5px);
}

.page-resources-okkinh-safe-and-reliable__feature-icon, 
.page-resources-okkinh-safe-and-reliable__compliance-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 5px 5px rgba(0,0,0,0.1));
}

.page-resources-okkinh-safe-and-reliable__feature-item h3, 
.page-resources-okkinh-safe-and-reliable__compliance-item h3 {
    font-size: 1.4em;
    margin-top: 0;
    color: var(--page-primary-color);
}

.page-resources-okkinh-safe-and-reliable__feature-item p, 
.page-resources-okkinh-safe-and-reliable__compliance-item p {
    font-size: 1em;
    color: #555;
}

.page-resources-okkinh-safe-and-reliable__content-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    text-align: left;
    margin-top: 40px;
}

.page-resources-okkinh-safe-and-reliable__content-wrapper--reversed {
    flex-direction: row-reverse;
}

.page-resources-okkinh-safe-and-reliable__text-content {
    flex: 1;
}

.page-resources-okkinh-safe-and-reliable__text-content h3 {
    text-align: left;
    color: var(--page-primary-color);
}

.page-resources-okkinh-safe-and-reliable__text-content p {
    text-align: left;
    color: #333;
}

.page-resources-okkinh-safe-and-reliable__image-aside {
    flex: 1;
    min-width: 300px;
}

.page-resources-okkinh-safe-and-reliable__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-resources-okkinh-safe-and-reliable__cta-bonus {
    background: var(--page-primary-color);
    color: var(--page-text-light);
    padding: 80px 0;
}

.page-resources-okkinh-safe-and-reliable__cta-bonus h2 {
    color: var(--page-secondary-color);
    font-size: 2.8em;
    margin-bottom: 25px;
}

.page-resources-okkinh-safe-and-reliable__cta-bonus h2::after {
    background-color: var(--page-text-light);
}

.page-resources-okkinh-safe-and-reliable__cta-bonus p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.page-resources-okkinh-safe-and-reliable__cta-bonus-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-resources-okkinh-safe-and-reliable__cta-bonus-image {
    width: 250px;
    height: auto;
    margin-bottom: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.page-resources-okkinh-safe-and-reliable__registration-steps {
    list-style: none;
    padding: 0;
    margin: 30px auto;
    max-width: 600px;
    text-align: left;
}

.page-resources-okkinh-safe-and-reliable__registration-steps li {
    background-color: rgba(255, 255, 255, 0.1);
    border-left: 5px solid var(--page-secondary-color);
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 5px;
    color: var(--page-text-light);
    font-size: 1.1em;
}

.page-resources-okkinh-safe-and-reliable__registration-steps li strong {
    color: var(--page-secondary-color);
}

.page-resources-okkinh-safe-and-reliable__app-download {
    background-color: var(--page-background-light);
}

.page-resources-okkinh-safe-and-reliable__app-download-content {
    display: flex;
    align-items: center;
    gap: 50px;
    text-align: left;
    margin-top: 40px;
}

.page-resources-okkinh-safe-and-reliable__text-content {
    flex: 1;
}

.page-resources-okkinh-safe-and-reliable__app-benefits {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.page-resources-okkinh-safe-and-reliable__app-benefits li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #333;
}

.page-resources-okkinh-safe-and-reliable__icon {
    width: 30px;
    height: 30px;
    margin-right: 15px;
    filter: drop-shadow(0 3px 3px rgba(0,0,0,0.1));
}

.page-resources-okkinh-safe-and-reliable__faq-item {
    background-color: var(--page-text-light);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    text-align: left;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-resources-okkinh-safe-and-reliable__faq-item h3 {
    color: var(--page-primary-color);
    font-size: 1.5em;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-resources-okkinh-safe-and-reliable__faq-item p {
    color: #444;
    font-size: 1em;
}

.page-resources-okkinh-safe-and-reliable__conclusion {
    background: linear-gradient(135deg, #3a5068, var(--page-primary-color));
    color: var(--page-text-light);
    padding: 80px 0;
}

.page-resources-okkinh-safe-and-reliable__conclusion h2 {
    color: var(--page-secondary-color);
    font-size: 2.8em;
    margin-bottom: 25px;
}

.page-resources-okkinh-safe-and-reliable__conclusion h2::after {
    background-color: var(--page-text-light);
}

.page-resources-okkinh-safe-and-reliable__conclusion p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2em;
    max-width: 900px;
    margin: 0 auto 30px auto;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-resources-okkinh-safe-and-reliable__hero-content h1 {
        font-size: 2.8em;
    }
    .page-resources-okkinh-safe-and-reliable h2 {
        font-size: 2em;
    }
    .page-resources-okkinh-safe-and-reliable h3 {
        font-size: 1.6em;
    }
    .page-resources-okkinh-safe-and-reliable__content-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .page-resources-okkinh-safe-and-reliable__content-wrapper--reversed {
        flex-direction: column;
    }
    .page-resources-okkinh-safe-and-reliable__text-content, 
    .page-resources-okkinh-safe-and-reliable__image-aside {
        flex: none;
        width: 100%;
    }
    .page-resources-okkinh-safe-and-reliable__text-content h3, 
    .page-resources-okkinh-safe-and-reliable__text-content p {
        text-align: center;
    }
    .page-resources-okkinh-safe-and-reliable__app-download-content {
        flex-direction: column-reverse;
    }
}

@media (max-width: 768px) {
    .page-resources-okkinh-safe-and-reliable__hero {
        padding: 80px 0;
    }
    .page-resources-okkinh-safe-and-reliable__hero-content h1 {
        font-size: 2.2em;
    }
    .page-resources-okkinh-safe-and-reliable__hero-content p {
        font-size: 1.1em;
    }
    .page-resources-okkinh-safe-and-reliable h2 {
        font-size: 1.8em;
    }
    .page-resources-okkinh-safe-and-reliable h3 {
        font-size: 1.4em;
    }
    .page-resources-okkinh-safe-and-reliable p {
        font-size: 1em;
    }
    .page-resources-okkinh-safe-and-reliable__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-resources-okkinh-safe-and-reliable__feature-grid, 
    .page-resources-okkinh-safe-and-reliable__compliance-grid {
        grid-template-columns: 1fr;
    }
    .page-resources-okkinh-safe-and-reliable__section {
        padding: 40px 0;
    }
    .page-resources-okkinh-safe-and-reliable__cta-bonus h2,
    .page-resources-okkinh-safe-and-reliable__conclusion h2 {
        font-size: 2em;
    }
    .page-resources-okkinh-safe-and-reliable__cta-bonus p,
    .page-resources-okkinh-safe-and-reliable__conclusion p {
        font-size: 1em;
    }
}