/* style/platform-guides-account-verification.css */
.page-platform-guides-account-verification {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

.page-platform-guides-account-verification__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-platform-guides-account-verification__hero {
    background: linear-gradient(135deg, #007bff, #28a745);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-platform-guides-account-verification__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,security,digital_pattern,blue_green]') no-repeat center center/cover;
    opacity: 0.15;
    z-index: 0;
}

.page-platform-guides-account-verification__hero > * {
    position: relative;
    z-index: 1;
}

.page-platform-guides-account-verification__hero-title {
    font-size: 3.2em;
    margin-bottom: 15px;
    font-weight: bold;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-platform-guides-account-verification__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 30px;
    color: #e9ecef;
}

.page-platform-guides-account-verification__section {
    padding: 60px 0;
}

.page-platform-guides-account-verification__section--bg-light {
    background-color: #e9ecef;
}

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

.page-platform-guides-account-verification__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #28a745;
    border-radius: 2px;
}

.page-platform-guides-account-verification__sub-title {
    font-size: 1.8em;
    color: #0056b3;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-platform-guides-account-verification__description {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
    color: #555;
}

.page-platform-guides-account-verification__content-grid {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.page-platform-guides-account-verification__text-content {
    flex: 1;
}

.page-platform-guides-account-verification__image-wrapper {
    flex: 1;
    text-align: center;
}

.page-platform-guides-account-verification__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-platform-guides-account-verification__image--small {
    max-width: 80%;
    display: block;
    margin: 20px auto;
}

.page-platform-guides-account-verification__image-caption {
    font-style: italic;
    color: #777;
    margin-top: 10px;
}

.page-platform-guides-account-verification__list {
    list-style-type: disc;
    margin-left: 20px;
    padding: 0;
    color: #444;
}

.page-platform-guides-account-verification__list li {
    margin-bottom: 10px;
}

.page-platform-guides-account-verification__step-by-step {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-platform-guides-account-verification__step-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-platform-guides-account-verification__step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-platform-guides-account-verification__step-icon {
    font-size: 2.5em;
    font-weight: bold;
    color: #007bff;
    background-color: #e0f2ff;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    border: 3px solid #007bff;
}

.page-platform-guides-account-verification__step-title {
    font-size: 1.5em;
    color: #0056b3;
    margin-bottom: 15px;
}

.page-platform-guides-account-verification__btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    border: none;
    font-size: 1.1em;
}

.page-platform-guides-account-verification__btn--primary {
    background-color: #28a745;
    color: #fff;
}

.page-platform-guides-account-verification__btn--primary:hover {
    background-color: #218838;
    transform: translateY(-2px);
}

.page-platform-guides-account-verification__btn--secondary {
    background-color: #007bff;
    color: #fff;
}

.page-platform-guides-account-verification__btn--secondary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.page-platform-guides-account-verification__btn--outline {
    background-color: transparent;
    color: #007bff;
    border: 2px solid #007bff;
}

.page-platform-guides-account-verification__btn--outline:hover {
    background-color: #007bff;
    color: #fff;
    transform: translateY(-2px);
}

.page-platform-guides-account-verification__cta-bottom {
    text-align: center;
    margin-top: 60px;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.page-platform-guides-account-verification__cta-bottom p {
    font-size: 1.3em;
    color: #0056b3;
    margin-bottom: 25px;
}

.page-platform-guides-account-verification__tips-grid,
.page-platform-guides-account-verification__faq-grid,
.page-platform-guides-account-verification__benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-platform-guides-account-verification__tip-item,
.page-platform-guides-account-verification__faq-item,
.page-platform-guides-account-verification__benefit-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-platform-guides-account-verification__tip-item:hover,
.page-platform-guides-account-verification__faq-item:hover,
.page-platform-guides-account-verification__benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-platform-guides-account-verification__faq-item p {
    margin-bottom: 10px;
}

.page-platform-guides-account-verification__benefit-item {
    text-align: center;
}

.page-platform-guides-account-verification__benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.page-platform-guides-account-verification__cta-final {
    text-align: center;
    margin-top: 80px;
    padding: 40px;
    background-color: #007bff;
    border-radius: 15px;
    color: #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-platform-guides-account-verification__cta-final p {
    font-size: 1.5em;
    margin-bottom: 30px;
    font-weight: 500;
}

.page-platform-guides-account-verification__section--contact {
    text-align: center;
    background-color: #f0f8ff;
    padding: 80px 0;
}

@media (max-width: 992px) {
    .page-platform-guides-account-verification__hero-title {
        font-size: 2.5em;
    }
    .page-platform-guides-account-verification__hero-subtitle {
        font-size: 1.2em;
    }
    .page-platform-guides-account-verification__section-title {
        font-size: 2em;
    }
    .page-platform-guides-account-verification__sub-title {
        font-size: 1.5em;
    }
    .page-platform-guides-account-verification__content-grid {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .page-platform-guides-account-verification__hero {
        padding: 60px 0;
    }
    .page-platform-guides-account-verification__hero-title {
        font-size: 2em;
    }
    .page-platform-guides-account-verification__hero-subtitle {
        font-size: 1em;
    }
    .page-platform-guides-account-verification__section {
        padding: 40px 0;
    }
    .page-platform-guides-account-verification__section-title {
        font-size: 1.8em;
    }
    .page-platform-guides-account-verification__description {
        font-size: 1em;
    }
    .page-platform-guides-account-verification__step-icon {
        width: 60px;
        height: 60px;
        font-size: 2em;
    }
    .page-platform-guides-account-verification__btn {
        padding: 10px 20px;
        font-size: 1em;
    }
}

@media (max-width: 576px) {
    .page-platform-guides-account-verification__hero-title {
        font-size: 1.8em;
    }
    .page-platform-guides-account-verification__section-title {
        font-size: 1.6em;
    }
    .page-platform-guides-account-verification__sub-title {
        font-size: 1.3em;
    }
    .page-platform-guides-account-verification__image--small {
        max-width: 100%;
    }
    .page-platform-guides-account-verification__cta-bottom p,
    .page-platform-guides-account-verification__cta-final p {
        font-size: 1.1em;
    }
}