.page-how-to-verify-platform-credibility {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark text for light body background */
    background-color: var(--secondary-color); /* Matches body background from shared.css */
}

.page-how-to-verify-platform-credibility__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-how-to-verify-platform-credibility__section {
    padding: 60px 0;
}

.page-how-to-verify-platform-credibility__section:nth-of-type(even) {
    background-color: #f8f8f8; /* Slightly off-white for visual separation */
}

.page-how-to-verify-platform-credibility__section-title {
    font-size: 36px;
    color: #26A9E0; /* Primary brand color for titles */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-how-to-verify-platform-credibility__section-title--light {
    color: #ffffff;
}

.page-how-to-verify-platform-credibility__sub-title {
    font-size: 24px;
    color: #26A9E0;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-how-to-verify-platform-credibility__sub-sub-title {
    font-size: 20px;
    color: #333333;
    margin-top: 25px;
    margin-bottom: 10px;
    font-weight: 600;
}

.page-how-to-verify-platform-credibility__paragraph {
    margin-bottom: 15px;
    font-size: 16px;
}

.page-how-to-verify-platform-credibility__paragraph--light {
    color: #ffffff;
}

.page-how-to-verify-platform-credibility__list,
.page-how-to-verify-platform-credibility__ordered-list {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.page-how-to-verify-platform-credibility__ordered-list {
    list-style-type: decimal;
}

.page-how-to-verify-platform-credibility__list-item {
    margin-bottom: 8px;
    font-size: 16px;
}

/* Hero Section */
.page-how-to-verify-platform-credibility__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
    background: linear-gradient(135deg, #26A9E0, #FFFFFF); /* Gradient for hero background */
    overflow: hidden; /* Prevent content overflow */
}

.page-how-to-verify-platform-credibility__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.page-how-to-verify-platform-credibility__hero-image {
    width: 100%;
    margin-bottom: 30px;
    z-index: 1;
}

.page-how-to-verify-platform-credibility__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    min-width: 200px; /* Min image size */
    min-height: 200px; /* Min image size */
}