/* style/resources-w88-account-security-guide.css */

/* Base styles for the page content area */
.page-resources-w88-account-security-guide {
    font-family: 'Arial', sans-serif;
    color: #333333; /* Default text color on light backgrounds */
    line-height: 1.6;
    background-color: #f8f8f8; /* Light background for overall page */
}

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

/* Hero Section */
.page-resources-w88-account-security-guide__hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, #0A1931 0%, #2a3d58 100%); /* Dark blue gradient */
    color: #FFFFFF; /* White text on dark background */
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.page-resources-w88-account-security-guide__hero-content {
    max-width: 800px;
    z-index: 1;
}

.page-resources-w88-account-security-guide__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title */
    line-height: 1.2;
    font-weight: bold;
}

.page-resources-w88-account-security-guide__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #e0e0e0; /* Slightly off-white for subtitle */
}

.page-resources-w88-account-security-guide__hero-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #0A1931; /* Dark text on gold button */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-resources-w88-account-security-guide__hero-button:hover {
    background-color: #e6c200; /* Darker gold on hover */
    transform: translateY(-2px);
}

.page-resources-w88-account-security-guide__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15; /* Subtle background image */
    z-index: 0;
}

.page-resources-w88-account-security-guide__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* General Section Styles */
.page-resources-w88-account-security-guide__section {
    padding: 60px 0;
    margin-bottom: 30px;
}

.page-resources-w88-account-security-guide__section:nth-child(even) {
    background-color: #e9ecef; /* Light gray for alternating sections */
}

.page-resources-w88-account-security-guide__section-title {
    font-size: 2.5em;
    color: #0A1931; /* Dark blue title */
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-resources-w88-account-security-guide__section-description {
    font-size: 1.1em;
    color: #555555;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

/* Feature Grid (Why Security) */
.page-resources-w88-account-security-guide__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

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

.page-resources-w88-account-security-guide__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-resources-w88-account-security-guide__feature-title {
    font-size: 1.5em;
    color: #0A1931;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-resources-w88-account-security-guide__feature-text {
    color: #666666;
    font-size: 1em;
}

/* Steps Grid */
.page-resources-w88-account-security-guide__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-w88-account-security-guide__step-item {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-w88-account-security-guide__step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-resources-w88-account-security-guide__step-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-resources-w88-account-security-guide__step-title {
    font-size: 1.6em;
    color: #0A1931;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-resources-w88-account-security-guide__step-text {
    color: #666666;
    font-size: 1em;
}

/* Commitment Grid (W88 Commitment) */
.page-resources-w88-account-security-guide__commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-w88-account-security-guide__commitment-item {
    background-color: #0A1931; /* Dark background for commitment items */
    color: #FFFFFF; /* White text on dark background */
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-w88-account-security-guide__commitment-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-resources-w88-account-security-guide__commitment-image {
    width: 100%;
    max-width: 250px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 5px;
}

.page-resources-w88-account-security-guide__commitment-title {
    font-size: 1.5em;
    color: #FFD700; /* Gold title on dark background */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-resources-w88-account-security-guide__commitment-text {
    color: #e0e0e0;
    font-size: 1em;
}

/* Action List (Compromised) */
.page-resources-w88-account-security-guide__action-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

.page-resources-w88-account-security-guide__action-item {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-resources-w88-account-security-guide__action-item h3 {
    font-size: 1.6em;
    color: #0A1931;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-resources-w88-account-security-guide__action-item ol,
.page-resources-w88-account-security-guide__action-item p {
    color: #666666;
    font-size: 1em;
    margin-bottom: 15px;
}

.page-resources-w88-account-security-guide__action-item ol li {
    margin-bottom: 10px;
    padding-left: 10px;
}

.page-resources-w88-account-security-guide__contact-button {
    display: inline-block;
    background-color: #0A1931; /* Dark blue button */
    color: #FFD700; /* Gold text on dark button */
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: 15px;
}

.page-resources-w88-account-security-guide__contact-button:hover {
    background-color: #1a2c4a; /* Slightly lighter dark blue on hover */
    transform: translateY(-2px);
}

/* CTA Button at the bottom */
.page-resources-w88-account-security-guide__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #0A1931; /* Dark text on gold button */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: 30px;
}

.page-resources-w88-account-security-guide__cta-button:hover {
    background-color: #e6c200; /* Darker gold on hover */
    transform: translateY(-2px);
}

/* Responsive Design */
@media (min-width: 768px) {
    .page-resources-w88-account-security-guide__hero {
        flex-direction: row;
        text-align: left;
        padding: 100px 40px;
    }

    .page-resources-w88-account-security-guide__hero-content {
        max-width: 60%;
        text-align: left;
        margin-right: 40px;
    }

    .page-resources-w88-account-security-guide__hero-image-wrapper {
        position: relative;
        width: 40%;
        height: auto;
        opacity: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 20px;
    }

    .page-resources-w88-account-security-guide__hero-image {
        width: 100%;
        height: auto;
        max-width: 400px; /* Limit image size on larger screens */
        border-radius: 10px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    }

    .page-resources-w88-account-security-guide__action-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .page-resources-w88-account-security-guide__hero {
        padding: 60px 20px;
    }

    .page-resources-w88-account-security-guide__hero-title {
        font-size: 2.2em;
    }

    .page-resources-w88-account-security-guide__hero-subtitle {
        font-size: 1.1em;
    }

    .page-resources-w88-account-security-guide__hero-image-wrapper {
        display: none; /* Hide hero image on small screens if it's purely decorative */
    }

    .page-resources-w88-account-security-guide__section-title {
        font-size: 2em;
    }

    .page-resources-w88-account-security-guide__feature-grid,
    .page-resources-w88-account-security-guide__steps-grid,
    .page-resources-w88-account-security-guide__commitment-grid {
        grid-template-columns: 1fr;
    }
}