.page-resources-pwinph-guide {
    color: #333333;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

.page-resources-pwinph-guide__hero-section {
    position: relative;
    width: 100%;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-color: #0d0d0d; /* Dark background for hero text contrast */
    padding: 60px 20px;
}

.page-resources-pwinph-guide__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.6;
    filter: brightness(0.8);
}

.page-resources-pwinph-guide__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
}

.page-resources-pwinph-guide__hero-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    max-width: 900px;
    padding: 20px;
}

.page-resources-pwinph-guide__main-title {
    font-size: 3.2em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-resources-pwinph-guide__subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #f0f0f0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-resources-pwinph-guide__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Main brand color for primary CTA */
    color: #8B0000; /* Dark red for text on gold */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
}

.page-resources-pwinph-guide__cta-button:hover {
    background-color: #e6c200;
    color: #6a0000;
}

.page-resources-pwinph-guide__cta-button--secondary {
    background-color: #8B0000; /* Auxiliary brand color for secondary CTA */
    color: #FFD700;
    margin-top: 20px;
    margin-right: 15px;
    margin-left: 15px;
}

.page-resources-pwinph-guide__cta-button--secondary:hover {
    background-color: #6a0000;
    color: #e6c200;
}

.page-resources-pwinph-guide__content-area {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-resources-pwinph-guide__back-link {
    display: inline-block;
    margin-bottom: 30px;
    color: #8B0000;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-resources-pwinph-guide__back-link:hover {
    color: #FFD700;
}

.page-resources-pwinph-guide__section-title {
    font-size: 2.2em;
    color: #8B0000; /* Dark red for section titles */
    margin-top: 40px;
    margin-bottom: 25px;
    text-align: center;
}

.page-resources-pwinph-guide__sub-section-title {
    font-size: 1.8em;
    color: #FFD700; /* Gold for sub-section titles */
    margin-top: 35px;
    margin-bottom: 20px;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 10px;
}

.page-resources-pwinph-guide__paragraph {
    font-size: 1.05em;
    margin-bottom: 20px;
    color: #333333;
}

.page-resources-pwinph-guide__paragraph a {
    color: #8B0000;
    text-decoration: none;
    font-weight: bold;
}

.page-resources-pwinph-guide__paragraph a:hover {
    text-decoration: underline;
    color: #FFD700;
}

.page-resources-pwinph-guide__ordered-list,
.page-resources-pwinph-guide__unordered-list {
    margin-bottom: 20px;
    padding-left: 25px;
}

.page-resources-pwinph-guide__list-item {
    margin-bottom: 10px;
    font-size: 1.05em;
    color: #333333;
}

.page-resources-pwinph-guide__list-item strong {
    color: #8B0000;
}

.page-resources-pwinph-guide__image-container {
    margin: 30px auto;
    text-align: center;
    max-width: 100%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.page-resources-pwinph-guide__image-container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
    min-width: 200px;
    min-height: 200px;
}

.page-resources-pwinph-guide__image-caption {
    font-size: 0.9em;
    color: #666666;
    padding: 10px 0;
    background-color: #f9f9f9;
    border-top: 1px solid #eeeeee;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-resources-pwinph-guide__main-title {
        font-size: 2.8em;
    }
    .page-resources-pwinph-guide__subtitle {
        font-size: 1.2em;
    }
}

@media (max-width: 768px) {
    .page-resources-pwinph-guide__hero-section {
        min-height: 350px;
        padding: 40px 15px;
    }
    .page-resources-pwinph-guide__main-title {
        font-size: 2.2em;
    }
    .page-resources-pwinph-guide__subtitle {
        font-size: 1em;
    }
    .page-resources-pwinph-guide__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-resources-pwinph-guide__section-title {
        font-size: 1.8em;
    }
    .page-resources-pwinph-guide__sub-section-title {
        font-size: 1.5em;
    }
    .page-resources-pwinph-guide__paragraph,
    .page-resources-pwinph-guide__list-item {
        font-size: 0.95em;
    }
    .page-resources-pwinph-guide__content-area {
        margin: 20px auto;
        padding: 15px;
    }
    .page-resources-pwinph-guide img {
        max-width: 100%;
        height: auto;
        min-width: 200px;
        min-height: 200px;
    }
}

@media (max-width: 480px) {
    .page-resources-pwinph-guide__hero-section {
        min-height: 300px;
        padding: 30px 10px;
    }
    .page-resources-pwinph-guide__main-title {
        font-size: 1.8em;
    }
    .page-resources-pwinph-guide__subtitle {
        font-size: 0.9em;
    }
    .page-resources-pwinph-guide__cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
        display: block;
        margin: 10px auto;
    }
    .page-resources-pwinph-guide__cta-button--secondary {
        margin-right: auto;
        margin-left: auto;
    }
    .page-resources-pwinph-guide__section-title {
        font-size: 1.6em;
    }
    .page-resources-pwinph-guide__sub-section-title {
        font-size: 1.3em;
    }
    .page-resources-pwinph-guide__content-area {
        padding: 10px;
    }
}