/* style/resources-jun888-security.css */
.page-resources-jun888-security {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #e0e0e0; /* Light gray for general text on dark background */
    background-color: #121f2f; /* Slightly lighter dark background than primary for content */
}

.page-resources-jun888-security__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-resources-jun888-security__hero-section {
    background: linear-gradient(135deg, #1A2E44, #2c4a6b); /* Dark blue gradient */
    padding: 80px 0 40px;
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-resources-jun888-security__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,security,network,pattern]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-resources-jun888-security__hero-section > * {
    position: relative;
    z-index: 1;
}

.page-resources-jun888-security__back-link {
    display: inline-block;
    color: #FFD700; /* Auxiliary color for links */
    text-decoration: none;
    margin-bottom: 20px;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-resources-jun888-security__back-link:hover {
    color: #fff;
}

.page-resources-jun888-security__main-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFD700; /* Auxiliary color for main title */
    line-height: 1.2;
}

.page-resources-jun888-security__meta-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    opacity: 0.9;
}

.page-resources-jun888-security__image-wrapper {
    margin-top: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-resources-jun888-security__hero-image {
    width: 100%;
    height: auto;
    display: block;
}

.page-resources-jun888-security__content-article {
    padding: 40px 0;
}

.page-resources-jun888-security__content-area {
    padding-top: 0;
}

.page-resources-jun888-security__section {
    margin-bottom: 40px;
    background-color: #1A2E44; /* Primary dark blue for section backgrounds */
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-jun888-security__section p {
    margin-bottom: 1em;
    font-size: 1.05em;
}

.page-resources-jun888-security__section a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-resources-jun888-security__section a:hover {
    text-decoration: underline;
}

.page-resources-jun888-security__heading {
    font-size: 2em;
    color: #FFD700; /* Auxiliary color for section headings */
    margin-bottom: 20px;
    border-bottom: 2px solid #3a5c81; /* Darker blue for subtle underline */
    padding-bottom: 10px;
}

.page-resources-jun888-security__sub-heading {
    font-size: 1.5em;
    color: #ffffff; /* White for sub-headings */
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-resources-jun888-security__image--centered {
    display: block;
    margin: 30px auto;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-jun888-security__conclusion {
    text-align: center;
    background-color: #1A2E44;
}

.page-resources-jun888-security__conclusion .page-resources-jun888-security__heading {
    border-bottom: none;
}

.page-resources-jun888-security__conclusion p {
    font-size: 1.1em;
    margin-bottom: 25px;
}

.page-resources-jun888-security__cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.page-resources-jun888-security__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    white-space: nowrap; /* Prevent button text from wrapping */
}

.page-resources-jun888-security__button--primary {
    background-color: #FFD700; /* Auxiliary color for primary button */
    color: #1A2E44; /* Primary color for text on primary button */
    border: 2px solid #FFD700;
}

.page-resources-jun888-security__button--primary:hover {
    background-color: #ffe033;
    color: #0d1e2f;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
}

.page-resources-jun888-security__button--secondary {
    background-color: transparent;
    color: #FFD700; /* Auxiliary color for secondary button text */
    border: 2px solid #FFD700;
}

.page-resources-jun888-security__button--secondary:hover {
    background-color: #FFD700;
    color: #1A2E44; /* Primary color for text on secondary button hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 215, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-resources-jun888-security__main-title {
        font-size: 2em;
    }

    .page-resources-jun888-security__heading {
        font-size: 1.6em;
    }

    .page-resources-jun888-security__sub-heading {
        font-size: 1.3em;
    }

    .page-resources-jun888-security__cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .page-resources-jun888-security__button {
        width: 80%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-resources-jun888-security__main-title {
        font-size: 1.8em;
    }

    .page-resources-jun888-security__meta-description,
    .page-resources-jun888-security__section p,
    .page-resources-jun888-security__conclusion p {
        font-size: 0.95em;
    }

    .page-resources-jun888-security__button {
        padding: 12px 20px;
        font-size: 1em;
    }
}