:root {
    --primary-color: #FFD700; /* Gold */
    --secondary-color: #8B0000; /* Dark Red */
    --text-dark: #333333;
    --text-light: #ffffff;
    --background-light: #f9f9f9;
    --background-dark: #222222; /* For dark sections */
    --border-color: #e0e0e0;
}

.page-resources-twin68-platform-deep-analysis {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark); /* Default text color for light background */
    background-color: #ffffff; /* Explicitly set for clarity, though shared.css might handle body */
    padding-top: var(--header-offset, 120px); /* Ensures content starts below fixed header */
}

.page-resources-twin68-platform-deep-analysis__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-resources-twin68-platform-deep-analysis__section {
    padding: 60px 0;
    text-align: center;
}

.page-resources-twin68-platform-deep-analysis__section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    display: inline-block;
}

.page-resources-twin68-platform-deep-analysis__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.page-resources-twin68-platform-deep-analysis__section-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-resources-twin68-platform-deep-analysis__content-block {
    max-width: 900px;
    margin: 0 auto 30px auto;
    text-align: left;
    font-size: 17px;
    line-height: 1.8;
}

/* HERO Section */
.page-resources-twin68-platform-deep-analysis__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0; /* padding-top handled by main element */
    background-color: var(--background-dark); /* Dark background for hero */
    color: var(--text-light); /* Light text */
    overflow: hidden;
}

.page-resources-twin68-platform-deep-analysis__hero-container {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    box-sizing: border-box;
}

.page-resources-twin68-platform-deep-analysis__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Overlay to ensure text readability */
    z-index: 0;
}

.page-resources-twin68-platform-deep-analysis__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.page-resources-twin68-platform-deep-analysis__main-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-resources-twin68-platform-deep-analysis__intro-text {
    font-size: 20px;
    margin-bottom: 40px;
    color: var(--text-light);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-resources-twin68-platform-deep-analysis__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 50px;
    font-size: 20px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: none;
}

.page-resources-twin68-platform-deep-analysis__cta-button:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Overview Section */
.page-resources-twin68-platform-deep-analysis__overview-section {
    background-color: #ffffff;
}

.page-resources-twin68-platform-deep-analysis__image-content {
    width: 100%;
    height: auto;
    max-width: 800px;
    margin: 40px auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

/* Products Section */
.page-resources-twin68-platform-deep-analysis__products-section {
    background-color: var(--background-dark); /* Dark background */
    color: var(--text-light); /* Light text */
    padding-bottom: 80px;
}

.page-resources-twin68-platform-deep-analysis__products-section .page-resources-twin68-platform-deep-analysis__section-title {
    color: var(--primary-color);
}

.page-resources-twin68-platform-deep-analysis__products-section .page-resources-twin68-platform-deep-analysis__section-description {
    color: #ccc;
}

.page-resources-twin68-platform-deep-analysis__product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    text-align: left;
}