/* style/resources-how-to-safely-efficiently-use-jun88.css */
.page-resources-how-to-safely-efficiently-use-jun88 {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.page-resources-how-to-safely-efficiently-use-jun88__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-resources-how-to-safely-efficiently-use-jun88__container--center {
    text-align: center;
}

.page-resources-how-to-safely-efficiently-use-jun88__hero-section {
    background: linear-gradient(135deg, #003366 0%, #00509e 100%); /* Deep Blue gradient */
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-resources-how-to-safely-efficiently-use-jun88__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[IMAGE:hero_main]') no-repeat center center/cover;
    opacity: 0.2;
    z-index: 0;
}

.page-resources-how-to-safely-efficiently-use-jun88__hero-section > .page-resources-how-to-safely-efficiently-use-jun88__container {
    position: relative;
    z-index: 1;
}

.page-resources-how-to-safely-efficiently-use-jun88__title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold accent */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-resources-how-to-safely-efficiently-use-jun88__subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.page-resources-how-to-safely-efficiently-use-jun88__section {
    padding: 60px 0;
}

.page-resources-how-to-safely-efficiently-use-jun88__section--alt-bg {
    background-color: #e9ecef;
}

.page-resources-how-to-safely-efficiently-use-jun88__heading {
    font-size: 2.5em;
    color: #003366; /* Deep Blue */
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.page-resources-how-to-safely-efficiently-use-jun88__heading::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 80px;
    height: 4px;
    background-color: #FFD700; /* Gold accent */
    border-radius: 2px;
}

.page-resources-how-to-safely-efficiently-use-jun88__heading--white {
    color: #fff;
}

.page-resources-how-to-safely-efficiently-use-jun88__heading--white::after {
    background-color: #fff;
}

.page-resources-how-to-safely-efficiently-use-jun88__sub-heading {
    font-size: 1.8em;
    color: #003366;
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 5px solid #FFD700; /* Gold accent */
    padding-left: 15px;
}

.page-resources-how-to-safely-efficiently-use-jun88__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #495057;
}

.page-resources-how-to-safely-efficiently-use-jun88__paragraph--white {
    color: #f8f9fa;
}

.page-resources-how-to-safely-efficiently-use-jun88__list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    font-size: 1.05em;
    color: #495057;
}

.page-resources-how-to-safely-efficiently-use-jun88__list-item {
    margin-bottom: 10px;
}

.page-resources-how-to-safely-efficiently-use-jun88__list-item strong {
    color: #003366;
}

.page-resources-how-to-safely-efficiently-use-jun88__link {
    color: #003366;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-resources-how-to-safely-efficiently-use-jun88__link:hover {
    color: #FFD700;
    text-decoration: underline;
}

.page-resources-how-to-safely-efficiently-use-jun88__button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    margin: 10px;
}

.page-resources-how-to-safely-efficiently-use-jun88__button--primary {
    background-color: #FFD700; /* Gold */
    color: #003366;
    border: 2px solid #FFD700;
}

.page-resources-how-to-safely-efficiently-use-jun88__button--primary:hover {
    background-color: #e6c200;
    color: #001a33;
    transform: translateY(-3px);
}

.page-resources-how-to-safely-efficiently-use-jun88__button--cta {
    background-color: #DC143C; /* Crimson */
    color: #fff;
    border: 2px solid #DC143C;
}

.page-resources-how-to-safely-efficiently-use-jun88__button--cta:hover {
    background-color: #c00c30;
    border-color: #c00c30;
    transform: translateY(-3px);
}

.page-resources-how-to-safely-efficiently-use-jun88__button--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-resources-how-to-safely-efficiently-use-jun88__button--secondary:hover {
    background-color: #FFD700;
    color: #003366;
    transform: translateY(-3px);
}

.page-resources-how-to-safely-efficiently-use-jun88__section--call-to-action {
    background-color: #003366;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.page-resources-how-to-safely-efficiently-use-jun88__image-wrapper {
    text-align: center;
    margin: 40px 0;
}

.page-resources-how-to-safely-efficiently-use-jun88__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-resources-how-to-safely-efficiently-use-jun88__title {
        font-size: 2.5em;
    }

    .page-resources-how-to-safely-efficiently-use-jun88__subtitle {
        font-size: 1.2em;
    }

    .page-resources-how-to-safely-efficiently-use-jun88__heading {
        font-size: 2em;
    }

    .page-resources-how-to-safely-efficiently-use-jun88__sub-heading {
        font-size: 1.5em;
    }

    .page-resources-how-to-safely-efficiently-use-jun88__button {
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-resources-how-to-safely-efficiently-use-jun88__title {
        font-size: 2em;
    }

    .page-resources-how-to-safely-efficiently-use-jun88__subtitle {
        font-size: 1em;
    }

    .page-resources-how-to-safely-efficiently-use-jun88__heading {
        font-size: 1.8em;
    }

    .page-resources-how-to-safely-efficiently-use-jun88__sub-heading {
        font-size: 1.3em;
    }

    .page-resources-how-to-safely-efficiently-use-jun88__button {
        padding: 10px 20px;
        font-size: 0.9em;
        margin: 5px;
    }
}