.page-resources-tongits-go-strategy {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark text for light body background */
    background-color: #FFFFFF; /* Explicitly set for content area */
    padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
}

@media (max-width: 768px) {
    .page-resources-tongits-go-strategy {
        padding-top: var(--header-offset, 80px); /* Adjust for mobile header offset */
    }
}

.page-resources-tongits-go-strategy__hero-section {
    position: relative;
    text-align: center;
    color: #FFFFFF; /* White text for hero section */
    background-color: #000000; /* Dark background for hero to ensure contrast */
    padding: 80px 20px;
    overflow: hidden; /* To contain the image */
}

.page-resources-tongits-go-strategy__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.page-resources-tongits-go-strategy__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-resources-tongits-go-strategy__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.page-resources-tongits-go-strategy__main-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* For readability over image */
}

.page-resources-tongits-go-strategy__description {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #F0F0F0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7); /* For readability over image */
}

.page-resources-tongits-go-strategy__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-resources-tongits-go-strategy__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-resources-tongits-go-strategy__button--register {
    background-color: #FFFFFF; /* As per requirement */
    color: #000000; /* Contrast with white background */
    border: 2px solid #FFFFFF;
}

.page-resources-tongits-go-strategy__button--register:hover {
    background-color: #F0F0F0;
    transform: translateY(-2px);
}

.page-resources-tongits-go-strategy__button--play {
    background-color: #FCBC45; /* As per requirement */
    color: #000000; /* Contrast with yellow background */
    border: 2px solid #FCBC45;
}

.page-resources-tongits-go-strategy__button--play:hover {
    background-color: #e6a73c;
    transform: translateY(-2px);
}

.page-resources-tongits-go-strategy__button--download {
    background-color: #FCBC45; /* As per requirement */
    color: #000000; /* Contrast with yellow background */
    border: 2px solid #FCBC45;
}

.page-resources-tongits-go-strategy__button--download:hover {
    background-color: #e6a73c;
    transform: translateY(-2px);
}

.page-resources-tongits-go-strategy__content-area {
    max-width: 800px; /* Content width control */
    margin: 0 auto;
    padding: 60px 20px;
}

.page-resources-tongits-go-strategy__section-title {
    font-size: 2.5em;
    color: #000000;
    margin-top: 40px;
    margin-bottom: 25px;
    text-align: center;
}

.page-resources-tongits-go-strategy__sub-section-title {
    font-size: 1.8em;
    color: #000000;
    margin-top: 35px;
    margin-bottom: 20px;
}

.page-resources-tongits-go-strategy__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    line-height: 1.7;
}

.page-resources-tongits-go-strategy__paragraph a {
    color: #FCBC45; /* Link color */
    text-decoration: none;
    font-weight: bold;
}

.page-resources-tongits-go-strategy__paragraph a:hover {
    text-decoration: underline;
}

.page-resources-tongits-go-strategy__list,
.page-resources-tongits-go-strategy__ordered-list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    font-size: 1.1em;
}

.page-resources-tongits-go-strategy__ordered-list {
    list-style-type: decimal;
}

.page-resources-tongits-go-strategy__list-item {
    margin-bottom: 10px;
}

.page-resources-tongits-go-strategy__nested-list {
    list-style-type: circle;
    margin-left: 20px;
    margin-top: 5px;
}

.page-resources-tongits-go-strategy__blockquote {
    background-color: #F8F8F8;
    border-left: 5px solid #FCBC45;
    padding: 20px;
    margin: 30px 0;
    font-style: italic;
    color: #555555;
    font-size: 1.2em;
}

.page-resources-tongits-go-strategy__definition-list {
    margin-bottom: 20px;
}

.page-resources-tongits-go-strategy__term {
    font-weight: bold;
    margin-top: 15px;
    color: #000000;
}

.page-resources-tongits-go-strategy__definition {
    margin-left: 20px;
    margin-bottom: 10px;
}

.page-resources-tongits-go-strategy__image-container {
    margin: 40px auto;
    text-align: center;
    max-width: 100%; /* Ensure image container doesn't overflow */
}

.page-resources-tongits-go-strategy__image-container img {
    max-width: 100%; /* Responsive image */
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 200px; /* Enforce minimum size for content images */
    min-height: 200px;
}

.page-resources-tongits-go-strategy__cta-buttons--bottom {
    margin-top: 50px;
    margin-bottom: 30px;
}

.page-resources-tongits-go-strategy__back-link {
    text-align: center;
    margin-top: 40px;
    font-size: 1.1em;
}

.page-resources-tongits-go-strategy__link {
    color: #FCBC45;
    text-decoration: none;
    font-weight: bold;
}

.page-resources-tongits-go-strategy__link:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-resources-tongits-go-strategy__main-title {
        font-size: 2.8em;
    }
    .page-resources-tongits-go-strategy__description {
        font-size: 1.2em;
    }
    .page-resources-tongits-go-strategy__section-title {
        font-size: 2.2em;
    }
    .page-resources-tongits-go-strategy__sub-section-title {
        font-size: 1.6em;
    }
}

@media (max-width: 768px) {
    .page-resources-tongits-go-strategy__hero-section {
        padding: 60px 15px;
    }
    .page-resources-tongits-go-strategy__main-title {
        font-size: 2.2em;
    }
    .page-resources-tongits-go-strategy__description {
        font-size: 1.1em;
    }
    .page-resources-tongits-go-strategy__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-resources-tongits-go-strategy__button {
        width: 80%;
        margin: 0 auto;
    }
    .page-resources-tongits-go-strategy__content-area {
        padding: 40px 15px;
    }
    .page-resources-tongits-go-strategy__section-title {
        font-size: 1.8em;
    }
    .page-resources-tongits-go-strategy__sub-section-title {
        font-size: 1.4em;
    }
    .page-resources-tongits-go-strategy__paragraph,
    .page-resources-tongits-go-strategy__list,
    .page-resources-tongits-go-strategy__ordered-list,
    .page-resources-tongits-go-strategy__blockquote,
    .page-resources-tongits-go-strategy__definition {
        font-size: 1em;
    }
    /* Ensure content images are responsive and not too small */
    .page-resources-tongits-go-strategy__image-container img {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Still enforce minimum size even on mobile */
        min-height: 200px;
    }
}