/* style/resources-security-legality.css */
.page-resources-security-legality {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #f5e6ce; /* Lighter text for dark background */
    background-color: #0A1931; /* Main dark background */
    padding: 20px 0;
}

.page-resources-security-legality__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-resources-security-legality__article {
    background-color: #1a2a47; /* Slightly lighter dark background for content */
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    padding: 40px;
}

.page-resources-security-legality__header {
    text-align: center;
    margin-bottom: 40px;
}

.page-resources-security-legality__title {
    font-size: 2.5em;
    color: #E6B325; /* Accent color for main title */
    margin-bottom: 15px;
    line-height: 1.2;
}

.page-resources-security-legality__meta {
    font-size: 0.9em;
    color: #a0a8b9;
}

.page-resources-security-legality__heading {
    font-size: 1.8em;
    color: #E6B325; /* Accent color for subheadings */
    margin-top: 35px;
    margin-bottom: 15px;
    border-bottom: 2px solid #334d7a;
    padding-bottom: 10px;
}

.page-resources-security-legality__content p {
    margin-bottom: 1em;
    font-size: 1.05em;
    color: #e0e7f5;
}

.page-resources-security-legality__content ul {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 1em;
    color: #e0e7f5;
}

.page-resources-security-legality__content ul li {
    margin-bottom: 0.5em;
}

.page-resources-security-legality__image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-security-legality__call-to-action {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background-color: #0A1931;
    border-radius: 8px;
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.5);
}

.page-resources-security-legality__call-to-action p {
    font-size: 1.2em;
    margin-bottom: 25px;
    color: #E6B325;
}

.page-resources-security-legality__button {
    display: inline-block;
    background-color: #E6B325; /* Accent color for primary button */
    color: #0A1931; /* Dark text for accent background */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin: 0 10px;
}

.page-resources-security-legality__button:hover {
    background-color: #ffc94d; /* Lighter accent on hover */
    transform: translateY(-2px);
}

.page-resources-security-legality__button--secondary {
    background-color: #334d7a; /* A darker shade for secondary action */
    color: #f5e6ce;
}

.page-resources-security-legality__button--secondary:hover {
    background-color: #446699;
    transform: translateY(-2px);
}

.page-resources-security-legality__footer {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #334d7a;
}

.page-resources-security-legality__back-link a {
    color: #E6B325;
    text-decoration: none;
    font-weight: bold;
}

.page-resources-security-legality__back-link a:hover {
    text-decoration: underline;
}

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

    .page-resources-security-legality__heading {
        font-size: 1.5em;
    }

    .page-resources-security-legality__article {
        padding: 25px;
    }

    .page-resources-security-legality__button {
        padding: 12px 25px;
        font-size: 1em;
        margin: 10px 5px;
    }
}

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

    .page-resources-security-legality__heading {
        font-size: 1.3em;
    }

    .page-resources-security-legality__button {
        display: block;
        margin: 10px auto;
        width: 80%;
    }
}