/* style/register-login-account-security-guide.css */
.page-register-login-account-security-guide {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

.page-register-login-account-security-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-register-login-account-security-guide__hero {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%); /* Adjusted for better contrast */
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-register-login-account-security-guide__hero-title {
    font-size: 3.2em;
    margin-bottom: 15px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-register-login-account-security-guide__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-register-login-account-security-guide__hero-image {
    position: absolute;
    bottom: 0;
    right: 0;
    opacity: 0.15;
    width: 300px;
    height: auto;
    z-index: 0;
}

.page-register-login-account-security-guide__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin: 10px;
    cursor: pointer;
    z-index: 1;
    position: relative;
}

.page-register-login-account-security-guide__button--primary {
    background-color: #ffc107;
    color: #333;
    border: 2px solid #ffc107;
}

.page-register-login-account-security-guide__button--primary:hover {
    background-color: #e0a800;
    border-color: #e0a800;
    transform: translateY(-2px);
}

.page-register-login-account-security-guide__button--secondary {
    background-color: transparent;
    color: #ffc107;
    border: 2px solid #ffc107;
}

.page-register-login-account-security-guide__button--secondary:hover {
    background-color: #ffc107;
    color: #333;
    transform: translateY(-2px);
}

.page-register-login-account-security-guide__section {
    padding: 60px 0;
}

.page-register-login-account-security-guide__section--alt {
    background-color: #e9ecef;
}

.page-register-login-account-security-guide__section-title {
    font-size: 2.5em;
    color: #007bff;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-register-login-account-security-guide__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #ffc107;
    border-radius: 2px;
}

.page-register-login-account-security-guide__section p {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

.page-register-login-account-security-guide__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-register-login-account-security-guide__feature-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-register-login-account-security-guide__feature-item:hover {
    transform: translateY(-10px);
}

.page-register-login-account-security-guide__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #007bff;
}

.page-register-login-account-security-guide__feature-title {
    font-size: 1.5em;
    color: #007bff;
    margin-bottom: 15px;
}

.page-register-login-account-security-guide__feature-item p {
    font-size: 1em;
    color: #555;
    text-align: left;
}

.page-register-login-account-security-guide__feature-item ul {
    list-style-type: disc;
    text-align: left;
    padding-left: 20px;
    margin-top: 15px;
    color: #555;
}

.page-register-login-account-security-guide__feature-item ul li {
    margin-bottom: 5px;
}

.page-register-login-account-security-guide__list {
    list-style-type: disc;
    padding-left: 25px;
    margin-top: 20px;
}

.page-register-login-account-security-guide__list li {
    margin-bottom: 10px;
    font-size: 1.1em;
    color: #444;
}

.page-register-login-account-security-guide__cta-section {
    background: linear-gradient(45deg, #007bff, #ffc107);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-register-login-account-security-guide__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.page-register-login-account-security-guide__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
}

.page-register-login-account-security-guide__cta-buttons .page-register-login-account-security-guide__button {
    border-color: #ffffff;
    color: #ffffff;
}

.page-register-login-account-security-guide__cta-buttons .page-register-login-account-security-guide__button--primary {
    background-color: #ffc107;
    color: #333;
    border-color: #ffc107;
}

.page-register-login-account-security-guide__cta-buttons .page-register-login-account-security-guide__button--primary:hover {
    background-color: #e0a800;
    border-color: #e0a800;
    color: #333;
}

.page-register-login-account-security-guide__cta-buttons .page-register-login-account-security-guide__button--secondary {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.page-register-login-account-security-guide__cta-buttons .page-register-login-account-security-guide__button--secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.page-register-login-account-security-guide__cta-image {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-register-login-account-security-guide__hero-title {
        font-size: 2.5em;
    }

    .page-register-login-account-security-guide__hero-subtitle {
        font-size: 1.1em;
    }

    .page-register-login-account-security-guide__section-title {
        font-size: 2em;
    }

    .page-register-login-account-security-guide__feature-grid {
        grid-template-columns: 1fr;
    }

    .page-register-login-account-security-guide__cta-title {
        font-size: 2.2em;
    }

    .page-register-login-account-security-guide__cta-description {
        font-size: 1em;
    }

    .page-register-login-account-security-guide__cta-buttons {
        flex-direction: column;
    }

    .page-register-login-account-security-guide__button {
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .page-register-login-account-security-guide__hero-title {
        font-size: 2em;
    }

    .page-register-login-account-security-guide__section-title {
        font-size: 1.8em;
    }

    .page-register-login-account-security-guide__feature-item {
        padding: 20px;
    }
}