
    /* Page-specific CSS for phmacao download */
    .page-phmacao-download {
        font-family: 'Arial', sans-serif;
        color: #333;
        line-height: 1.6;
        background-color: #f9f9f9;
    }

    .page-phmacao-download__hero-section {
        position: relative;
        background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
        color: #fff;
        padding: 10px 20px 80px; /* Small top padding, assuming body handles header offset */
        text-align: center;
        overflow: hidden;
        border-bottom-left-radius: 50px;
        border-bottom-right-radius: 50px;
    }

    .page-phmacao-download__hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.3;
        z-index: 0;
    }

    .page-phmacao-download__hero-content {
        position: relative;
        z-index: 1;
        max-width: 900px;
        margin: 0 auto;
    }

    .page-phmacao-download__hero-title {
        font-size: 2.8em;
        margin-bottom: 15px;
        font-weight: bold;
        color: #fff;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }

    .page-phmacao-download__hero-subtitle {
        font-size: 1.3em;
        margin-bottom: 30px;
        color: #e0e0e0;
    }

    .page-phmacao-download__download-buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
        margin-bottom: 30px;
    }

    .page-phmacao-download__download-button {
        background-color: #ffcc00;
        color: #333;
        padding: 15px 30px;
        border-radius: 50px;
        font-size: 1.1em;
        font-weight: bold;
        text-decoration: none;
        transition: background-color 0.3s ease, transform 0.3s ease;
        box-shadow: 0 4px 10px rgba(0,0,0,0.3);
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .page-phmacao-download__download-button:hover {
        background-color: #ffeb3b;
        transform: translateY(-3px);
    }

    .page-phmacao-download__section {
        padding: 60px 20px;
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
        background-color: #fff;
        border-radius: 15px;
        box-shadow: 0 0 20px rgba(0,0,0,0.05);
        margin-bottom: 30px;
    }

    .page-phmacao-download__section:nth-of-type(odd) {
        background-color: #f0f8ff;
    }

    .page-phmacao-download__section-title {
        font-size: 2.2em;
        color: #1a2a6c;
        margin-bottom: 40px;
        font-weight: bold;
        position: relative;
    }

    .page-phmacao-download__section-title::after {
        content: '';
        display: block;
        width: 80px;
        height: 4px;
        background-color: #b21f1f;
        margin: 15px auto 0;
        border-radius: 2px;
    }

    .page-phmacao-download__content-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        text-align: left;
    }

    .page-phmacao-download__feature-card,
    .page-phmacao-download__step-card {
        background-color: #fff;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transition: transform 0.3s ease;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        border-left: 5px solid #ffcc00;
    }

    .page-phmacao-download__feature-card:hover,
    .page-phmacao-download__step-card:hover {
        transform: translateY(-5px);
    }

    .page-phmacao-download__card-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
        object-fit: contain;
    }

    .page-phmacao-download__card-title {
        font-size: 1.5em;
        color: #1a2a6c;
        margin-bottom: 15px;
        font-weight: bold;
    }

    .page-phmacao-download__card-description {
        font-size: 1em;
        color: #555;
    }

    .page-phmacao-download__steps-list {
        display: flex;
        flex-direction: column;
        gap: 25px;
        list-style: none;
        padding: 0;
    }

    .page-phmacao-download__step-item {
        display: flex;
        align-items: flex-start;
        gap: 20px;
        background-color: #fff;
        padding: 25px;
        border-radius: 10px;
        box-shadow: 0 3px 10px rgba(0,0,0,0.08);
        text-align: left;
        border-left: 5px solid #b21f1f;
    }

    .page-phmacao-download__step-number {
        font-size: 2em;
        font-weight: bold;
        color: #b21f1f;
        flex-shrink: 0;
        background-color: #ffcc00;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }

    .page-phmacao-download__step-content {
        flex-grow: 1;
    }

    .page-phmacao-download__step-title {
        font-size: 1.4em;
        color: #1a2a6c;
        margin-bottom: 10px;
        font-weight: bold;
    }

    .page-phmacao-download__step-description {
        font-size: 1em;
        color: #555;
    }

    .page-phmacao-download__game-showcase {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }

    .page-phmacao-download__game-card {
        background-color: #fff;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        text-align: center;
        transition: transform 0.3s ease;
    }

    .page-phmacao-download__game-card:hover {
        transform: translateY(-5px);
    }

    .page-phmacao-download__game-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .page-phmacao-download__game-info {
        padding: 20px;
    }

    .page-phmacao-download__game-title {
        font-size: 1.3em;
        color: #1a2a6c;
        margin-bottom: 10px;
        font-weight: bold;
    }

    .page-phmacao-download__game-provider {
        font-size: 0.9em;
        color: #777;
    }

    .page-phmacao-download__cta-section {
        background-color: #1a2a6c;
        color: #fff;
        padding: 80px 20px;
        text-align: center;
        border-radius: 15px;
        margin-top: 30px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    }

    .page-phmacao-download__cta-title {
        font-size: 2.5em;
        margin-bottom: 20px;
        font-weight: bold;
    }

    .page-phmacao-download__cta-description {
        font-size: 1.2em;
        margin-bottom: 40px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        color: #e0e0e0;
    }

    /* FAQ Section */
    .page-phmacao-download__faq-section {
        background-color: #f0f8ff;
    }

    .page-phmacao-download__faq-container {
        max-width: 900px;
        margin: 0 auto;
        text-align: left;
    }

    .page-phmacao-download__faq-item {
        background-color: #fff;
        margin-bottom: 15px;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.08);
        overflow: hidden;
    }

    .page-phmacao-download__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        cursor: pointer;
        background-color: #fff;
        border-bottom: 1px solid #eee;
        transition: background-color 0.3s ease;
        user-select: none;
    }

    .page-phmacao-download__faq-question:hover {
        background-color: #f5f5f5;
    }

    .page-phmacao-download__faq-question h3 {
        margin: 0;
        font-size: 1.2em;
        color: #1a2a6c;
        font-weight: bold;
        pointer-events: none; /* Prevent text selection from interfering with click */
    }

    .page-phmacao-download__faq-toggle {
        font-size: 1.8em;
        font-weight: bold;
        color: #b21f1f;
        width: 30px;
        height: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent icon from interfering with click */
    }

    .page-phmacao-download__faq-item.active .page-phmacao-download__faq-toggle {
        transform: rotate(45deg); /* Rotate '+' to 'x' or use '-' directly */
        color: #ffcc00;
    }

    .page-phmacao-download__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px;
        opacity: 0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        color: #555;
        font-size: 1em;
        line-height: 1.7;
    }

    .page-phmacao-download__faq-item.active .page-phmacao-download__faq-answer {
        max-height: 2000px !important; /* Sufficiently large to contain content */
        padding: 20px 25px !important;
        opacity: 1;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .page-phmacao-download__hero-title {
            font-size: 2em;
        }

        .page-phmacao-download__hero-subtitle {
            font-size: 1.1em;
        }

        .page-phmacao-download__download-buttons {
            flex-direction: column;
            gap: 15px;
        }

        .page-phmacao-download__download-button {
            width: 100%;
            max-width: 300px;
            margin: 0 auto;
            padding: 12px 20px;
            font-size: 1em;
        }

        .page-phmacao-download__section {
            padding: 40px 15px;
            margin-bottom: 20px;
        }

        .page-phmacao-download__section-title {
            font-size: 1.8em;
            margin-bottom: 30px;
        }

        .page-phmacao-download__content-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .page-phmacao-download__feature-card,
        .page-phmacao-download__step-card {
            padding: 25px;
        }

        /* List item responsive adjustments */
        .page-phmacao-download__steps-list {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            padding: 0 !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }

        .page-phmacao-download__step-item {
            flex-direction: column;
            align-items: center;
            padding: 20px !important;
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            text-align: center;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }

        .page-phmacao-download__step-number {
            margin-bottom: 15px;
        }

        .page-phmacao-download__game-showcase {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .page-phmacao-download__cta-section {
            padding: 50px 15px;
        }

        .page-phmacao-download__cta-title {
            font-size: 2em;
        }

        .page-phmacao-download__cta-description {
            font-size: 1em;
        }

        .page-phmacao-download__faq-question {
            padding: 15px 20px;
        }

        .page-phmacao-download__faq-question h3 {
            font-size: 1.1em;
        }

        .page-phmacao-download__faq-answer {
            padding: 15px 20px;
        }

        /* Image responsive adjustments */
        .page-phmacao-download__hero-background,
        .page-phmacao-download__card-icon,
        .page-phmacao-download__game-image {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
            overflow: hidden !important;
        }
    }
  