/* style/resources-mm99-security-features.css */

/* Base styles for the content area */
.page-resources-mm99-security-features {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #e0e0e0; /* Light text for dark background, adjusted for better contrast */
    background-color: #0A1931; /* Primary dark background */
}

.page-resources-mm99-security-features .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Hero Section */
.page-resources-mm99-security-features .hero-section {
    background: linear-gradient(135deg, #0A1931 0%, #1a3055 100%); /* Dark blue gradient */
    color: #FFD700; /* Gold for main heading */
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid #FFD700;
}

.page-resources-mm99-security-features .hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    animation: rotateBackground 20s linear infinite;
    z-index: 0;
}

@keyframes rotateBackground {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.page-resources-mm99-security-features .hero-section .container {
    position: relative;
    z-index: 1;
}

.page-resources-mm99-security-features .hero-section .back-link {
    display: inline-block;
    color: #FFD700;
    text-decoration: none;
    margin-bottom: 20px;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.page-resources-mm99-security-features .hero-section .back-link:hover {
    color: #fff;
    text-decoration: underline;
}

.page-resources-mm99-security-features .hero-section h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title */
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-resources-mm99-security-features .hero-section .intro-text {
    font-size: 1.15rem;
    color: #e0e0e0; /* Adjusted for better contrast */
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-resources-mm99-security-features .hero-section .intro-text a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-resources-mm99-security-features .hero-section .intro-text a:hover {
    text-decoration: underline;
}

/* CTA Buttons */
.page-resources-mm99-security-features .cta-buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-resources-mm99-security-features .btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 150px;
}

.page-resources-mm99-security-features .btn-primary {
    background-color: #FFD700; /* Gold */
    color: #0A1931; /* Dark blue */
    border: 2px solid #FFD700;
}

.page-resources-mm99-security-features .btn-primary:hover {
    background-color: #e0b800;
    border-color: #e0b800;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
}

.page-resources-mm99-security-features .btn-secondary {
    background-color: transparent;
    color: #FFD700; /* Gold */
    border: 2px solid #FFD700;
}

.page-resources-mm99-security-features .btn-secondary:hover {
    background-color: #FFD700;
    color: #0A1931;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
}

.page-resources-mm99-security-features .btn-download {
    background-color: #1a3055; /* Slightly lighter dark blue */
    color: #FFD700;
    border: 2px solid #1a3055;
}

.page-resources-mm99-security-features .btn-download:hover {
    background-color: #0A1931;
    border-color: #FFD700;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(10, 25, 49, 0.6);
}

/* Article Content */
.page-resources-mm99-security-features .content-section {
    padding: 60px 0;
}

.page-resources-mm99-security-features .article-content {
    background-color: #1a3055; /* Slightly lighter dark blue for article background */
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-mm99-security-features .article-content h2 {
    color: #FFD700; /* Gold for main article headings */
    font-size: 2rem;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
    padding-bottom: 10px;
}

.page-resources-mm99-security-features .article-content h3 {
    color: #f5e6ce; /* Light text for subheadings */
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-resources-mm99-security-features .article-content p {
    margin-bottom: 15px;
    font-size: 1rem;
    color: #e0e0e0;
}

.page-resources-mm99-security-features .article-content p a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-resources-mm99-security-features .article-content p a:hover {
    text-decoration: underline;
}

.page-resources-mm99-security-features .article-content ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.page-resources-mm99-security-features .article-content ul li {
    margin-bottom: 10px;
}

.page-resources-mm99-security-features .article-content ul li strong {
    color: #FFD700;
}

.page-resources-mm99-security-features .content-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.page-resources-mm99-security-features .bottom-cta {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px dashed rgba(255, 215, 0, 0.3);
}

.page-resources-mm99-security-features .conclusion-text {
    font-style: italic;
    text-align: center;
    margin-top: 40px;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-resources-mm99-security-features .hero-section h1 {
        font-size: 2.2rem;
    }

    .page-resources-mm99-security-features .hero-section .intro-text {
        font-size: 1rem;
    }

    .page-resources-mm99-security-features .article-content {
        padding: 20px;
    }

    .page-resources-mm99-security-features .article-content h2 {
        font-size: 1.7rem;
    }

    .page-resources-mm99-security-features .article-content h3 {
        font-size: 1.3rem;
    }

    .page-resources-mm99-security-features .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-resources-mm99-security-features .btn {
        width: 80%;
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .page-resources-mm99-security-features .hero-section h1 {
        font-size: 1.8rem;
    }

    .page-resources-mm99-security-features .article-content h2 {
        font-size: 1.5rem;
    }

    .page-resources-mm99-security-features .article-content h3 {
        font-size: 1.2rem;
    }

    .page-resources-mm99-security-features .btn {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
}