.page-resources-123b-platform-overview {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
    background-color: #121212; /* Body background from shared.css */
}

.page-resources-123b-platform-overview__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

.page-resources-123b-platform-overview__section {
    padding: 60px 0;
    text-align: center;
}

/* Fixed header offset */
.page-resources-123b-platform-overview__hero-section {
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

.page-resources-123b-platform-overview__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold brand color */
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-resources-123b-platform-overview__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #8B0000; /* Dark red accent */
    border-radius: 2px;
}

.page-resources-123b-platform-overview__section-description {
    font-size: 1.1em;
    color: #f0f0f0;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section */
.page-resources-123b-platform-overview__hero-section {
    background-color: #1a1a1a;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.page-resources-123b-platform-overview__hero-content {
    max-width: 900px;
    z-index: 1;
    text-align: center;
    margin-bottom: 40px;
}

.page-resources-123b-platform-overview__main-title {
    font-size: 3.5em;
    color: #FFD700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-resources-123b-platform-overview__hero-description {
    font-size: 1.3em;
    color: #f0f0f0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-resources-123b-platform-overview__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-resources-123b-platform-overview__btn-primary,
.page-resources-123b-platform-overview__btn-secondary,
.page-resources-123b-platform-overview__btn-link {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-resources-123b-platform-overview__btn-primary {
    background-color: #FFD700;
    color: #121212; /* Ensure dark text on gold button */
    border: 2px solid #FFD700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-resources-123b-platform-overview__btn-primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-resources-123b-platform-overview__btn-secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.page-resources-123b-platform-overview__btn-secondary:hover {
    background-color: #FFD700;
    color: #121212; /* Dark text on gold hover */
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.page-resources-123b-platform-overview__btn-link {
    background-color: #8B0000;
    color: #ffffff;
    border: 2px solid #8B0000;
}

.page-resources-123b-platform-overview__btn-link:hover {
    background-color: #6a0000;
    border-color: #6a0000;
}


.page-resources-123b-platform-overview__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}