/* style/resources-qh88b-platform-analysis.css */

/* Base styles for the page content, using body background color analysis */
.page-resources-qh88b-platform-analysis {
    font-family: 'Arial', sans-serif;
    color: #ffffff; /* Light text for dark body background #1a1a2e */
    line-height: 1.6;
    background-color: #1a1a2e; /* Inherit or explicitly set to match shared body bg for consistency */
    padding-bottom: 60px; /* Space before footer */
}

.page-resources-qh88b-platform-analysis__hero-section {
    position: relative;
    padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
    padding-bottom: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 500px;
    background-color: #0d0d1e; /* Slightly darker than body for hero contrast */
    overflow: hidden;
}

.page-resources-qh88b-platform-analysis__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Subtle background image */
    z-index: 0;
}

.page-resources-qh88b-platform-analysis__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.page-resources-qh88b-platform-analysis__hero-title {
    font-size: 3.2em;
    color: #FFFF00; /* Yellow for prominence, good contrast on dark bg */
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 255, 0, 0.5);
}

.page-resources-qh88b-platform-analysis__hero-description {
    font-size: 1.2em;
    color: #f0f0f0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-resources-qh88b-platform-analysis__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* For mobile responsiveness */
}

.page-resources-qh88b-platform-analysis__btn-register,
.page-resources-qh88b-platform-analysis__btn-login {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 100%; /* Ensure responsiveness */
    box-sizing: border-box; /* Ensure padding/border included in width */
    white-space: normal;
    word-wrap: break-word;
}

.page-resources-qh88b-platform-analysis__btn-register {
    background-color: #C30808; /* Custom red for register */
    color: #FFFF00; /* Custom yellow for register font */
    border: 2px solid #FFFF00;
}

.page-resources-qh88b-platform-analysis__btn-register:hover {
    background-color: #e00a0a;
    transform: translateY(-3px);
}

.page-resources-qh88b-platform-analysis__btn-login {
    background-color: #C30808; /* Custom red for login */
    color: #FFFF00; /* Custom yellow for login font */
    border: 2px solid #FFFF00;
}

.page-resources-qh88b-platform-analysis__btn-login:hover {
    background-color: #e00a0a;
    transform: translateY(-3px);
}

.page-resources-qh88b-platform-analysis__btn-primary {
    display: inline-block;
    padding: 12px 25px;
    background-color: #017439; /* Brand primary green */
    color: #ffffff;
    border: 2px solid #017439;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    text-align: center;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-resources-qh88b-platform-analysis__btn-primary:hover {
    background-color: #005a2d;
    border-color: #005a2d;
}

.page-resources-qh88b-platform-analysis__btn-secondary {
    display: inline-block;
    padding: 10px 20px;
    background-color: transparent;
    color: #FFFF00; /* Yellow for secondary buttons on dark background */
    border: 2px solid #017439;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-align: center;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-resources-qh88b-platform-analysis__btn-secondary:hover {
    background-color: #017439;
    color: #ffffff;
}

.page-resources-qh88b-platform-analysis__section {
    padding: 60px 0;
    position: relative;
    background-color: #1a1a2e; /* Match body for consistency */
}

.page-resources-qh88b-platform-analysis__section:nth-of-type(even) {
    background-color: #0d0d1e; /* Slightly darker for alternating sections */
}

.page-resources-qh88b-platform-analysis__section-title {
    font-size: 2.5em;
    color: #FFFF00; /* Yellow for titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-resources-qh88b-platform-analysis__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #017439; /* Brand primary green */
    border-radius: 2px;
}

.page-resources-qh88b-platform-analysis__text-block {
    font-size: 1.1em;
    color: #f0f0f0;
    margin-bottom: 20px;
}

.page-resources-qh88b-platform-analysis__text-block a {
    color: #FFFF00; /* Yellow for links in text */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-resources-qh88b-platform-analysis__text-block a:hover {
    color: #017439; /* Brand primary green on hover */
}

.page-resources-qh88b-platform-analysis__content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.page-resources-qh88b-platform-analysis__image {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-qh88b-platform-analysis__list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-resources-qh88b-platform-analysis__list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    color: #f0f0f0;
}

.page-resources-qh88b-platform-analysis__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #017439; /* Brand primary green checkmark */
    font-weight: bold;
}