/* style/register-login-account-security.css */

/* General Page Styling */
.page-register-login-account-security {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f4f7fa; /* Light background for readability */
}

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

.page-register-login-account-security__hero-section {
    background: linear-gradient(135deg, #0056b3 0%, #0a4a8f 100%); /* Dark blue gradient */
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-register-login-account-security__hero-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transform: rotate(45deg);
}

.page-register-login-account-security__hero-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transform: rotate(-30deg);
}

.page-register-login-account-security__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffd700; /* Gold for emphasis */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-register-login-account-security__hero-subtitle {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
    color: #e0e0e0;
}

.page-register-login-account-security__hero-button {
    display: inline-block;
    background-color: #ffd700; /* Gold button */
    color: #0056b3; /* Dark blue text for contrast */
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-register-login-account-security__hero-button:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-3px);
}

.page-register-login-account-security__content-section {
    padding: 60px 0;
}

.page-register-login-account-security__section-title {
    font-size: 2.5em;
    color: #0056b3; /* Dark blue for main titles */
    text-align: center;
    margin-bottom: 50px;
    font-weight: bold;
    position: relative;
    padding-bottom: 15px;
}

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

.page-register-login-account-security__intro-text {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: -30px auto 60px;
    color: #555;
}

.page-register-login-account-security__text-with-image {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.page-register-login-account-security__text-with-image--reverse {
    flex-direction: row-reverse;
}

.page-register-login-account-security__text-content {
    flex: 1;
    min-width: 300px;
}

.page-register-login-account-security__text-content p {
    margin-bottom: 15px;
    font-size: 1.05em;
    color: #444;
}

.page-register-login-account-security__image-wrapper {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.page-register-login-account-security__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

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

.page-register-login-account-security__feature-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
}

.page-register-login-account-security__feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.page-register-login-account-security__feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 25px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.page-register-login-account-security__feature-title {
    font-size: 1.6em;
    color: #0056b3; /* Dark blue for feature titles */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-register-login-account-security__feature-description {
    font-size: 1em;
    color: #666;
    margin-bottom: 20px;
}

.page-register-login-account-security__feature-button {
    display: inline-block;
    background-color: #0056b3; /* Dark blue button */
    color: #ffffff;
    padding: 10px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.95em;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-register-login-account-security__feature-button:hover {
    background-color: #004085; /* Darker blue on hover */
}

.page-register-login-account-security__faq-section {
    margin-top: 50px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
}

.page-register-login-account-security__faq-item {
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

.page-register-login-account-security__faq-item:last-child {
    border-bottom: none;
}

.page-register-login-account-security__faq-question {
    font-size: 1.3em;
    color: #0056b3; /* Dark blue for FAQ questions */
    margin-bottom: 10px;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-register-login-account-security__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
    color: #ffd700; /* Gold plus sign */
    transition: transform 0.3s ease;
}

.page-register-login-account-security__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-register-login-account-security__faq-answer {
    font-size: 1em;
    color: #555;
    padding-left: 15px;
    display: none; /* Hidden by default, toggled by JS */
    margin-top: 10px;
}

.page-register-login-account-security__faq-answer.open {
    display: block;
}

.page-register-login-account-security__cta-banner {
    background: linear-gradient(90deg, #0056b3, #0a4a8f); /* Dark blue gradient */
    color: #ffffff;
    padding: 50px 30px;
    text-align: center;
    border-radius: 12px;
    margin-top: 80px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-register-login-account-security__cta-title {
    font-size: 2.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffd700; /* Gold for CTA title */
}

.page-register-login-account-security__cta-text {
    font-size: 1.2em;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.7;
    color: #e0e0e0;
}

.page-register-login-account-security__cta-button {
    display: inline-block;
    background-color: #ffd700; /* Gold button */
    color: #0056b3; /* Dark blue text for contrast */
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-register-login-account-security__cta-button:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-register-login-account-security__hero-title {
        font-size: 2.5em;
    }
    .page-register-login-account-security__hero-subtitle {
        font-size: 1.1em;
    }
    .page-register-login-account-security__section-title {
        font-size: 2em;
    }
    .page-register-login-account-security__text-with-image {
        flex-direction: column;
        text-align: center;
    }
    .page-register-login-account-security__text-with-image--reverse {
        flex-direction: column;
    }
    .page-register-login-account-security__image-wrapper {
        order: -1; /* Image above text for reverse layout */
    }
    .page-register-login-account-security__feature-grid {
        grid-template-columns: 1fr;
    }
    .page-register-login-account-security__cta-title {
        font-size: 1.8em;
    }
    .page-register-login-account-security__cta-text {
        font-size: 1em;
    }
}

@media (max-width: 768px) {
    .page-register-login-account-security__hero-section {
        padding: 80px 0;
    }
    .page-register-login-account-security__hero-title {
        font-size: 2em;
    }
    .page-register-login-account-security__hero-subtitle {
        font-size: 1em;
        margin-bottom: 30px;
    }
    .page-register-login-account-security__hero-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-register-login-account-security__section-title {
        font-size: 1.8em;
        margin-bottom: 40px;
    }
    .page-register-login-account-security__intro-text {
        font-size: 0.95em;
        margin-bottom: 40px;
    }
    .page-register-login-account-security__feature-card {
        padding: 25px;
    }
    .page-register-login-account-security__feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    .page-register-login-account-security__feature-title {
        font-size: 1.4em;
    }
    .page-register-login-account-security__feature-description {
        font-size: 0.95em;
    }
    .page-register-login-account-security__faq-question {
        font-size: 1.1em;
    }
    .page-register-login-account-security__faq-answer {
        font-size: 0.9em;
    }
    .page-register-login-account-security__cta-banner {
        padding: 40px 20px;
    }
    .page-register-login-account-security__cta-title {
        font-size: 1.6em;
    }
    .page-register-login-account-security__cta-text {
        font-size: 0.95em;
    }
    .page-register-login-account-security__cta-button {
        padding: 12px 30px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-register-login-account-security__hero-title {
        font-size: 1.8em;
    }
    .page-register-login-account-security__section-title {
        font-size: 1.6em;
    }
    .page-register-login-account-security__cta-title {
        font-size: 1.4em;
    }
}