
    :root {
        --phmacao-primary-color: #FFD700; /* Gold */
        --phmacao-secondary-color: #000000; /* Black */
        --phmacao-accent-color: #DC143C; /* Crimson */
        --phmacao-text-light: #FFFFFF;
        --phmacao-text-dark: #333333;
        --phmacao-bg-dark: #1a1a1a;
        --phmacao-bg-medium: #2a2a2a;
        --phmacao-border-color: #444444;
    }

    /* Base styles for the page */
    .page-phmacao-telegram {
        font-family: 'Arial', sans-serif;
        line-height: 1.6;
        color: var(--phmacao-text-light);
        background-color: var(--phmacao-bg-dark);
        padding-bottom: 40px;
    }

    /* Hero Section */
    .page-phmacao-telegram__hero-section {
        position: relative;
        background: var(--phmacao-bg-medium);
        padding: 60px 20px;
        text-align: center;
        overflow: hidden;
        padding-top: calc(10px + var(--header-offset, 122px)); /* Small decorative padding + header offset fallback */
    }

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

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

    .page-phmacao-telegram__hero-title {
        font-size: 2.8em;
        color: var(--phmacao-primary-color);
        margin-bottom: 20px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-phmacao-telegram__hero-description {
        font-size: 1.2em;
        color: var(--phmacao-text-light);
        margin-bottom: 30px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-phmacao-telegram__cta-button {
        display: inline-block;
        background-color: var(--phmacao-accent-color);
        color: var(--phmacao-text-light);
        padding: 15px 30px;
        border-radius: 5px;
        text-decoration: none;
        font-size: 1.1em;
        font-weight: bold;
        transition: background-color 0.3s ease, transform 0.3s ease;
        border: none; /* Use button tag, so no default link styles */
        cursor: pointer;
    }

    .page-phmacao-telegram__cta-button:hover {
        background-color: #B20C2D; /* Darker crimson */
        transform: translateY(-2px);
    }

    /* Section Styling */
    .page-phmacao-telegram__section {
        padding: 40px 20px;
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
    }

    .page-phmacao-telegram__section--dark {
        background-color: var(--phmacao-bg-dark);
    }

    .page-phmacao-telegram__section--medium {
        background-color: var(--phmacao-bg-medium);
    }

    .page-phmacao-telegram__section-title {
        font-size: 2.2em;
        color: var(--phmacao-primary-color);
        margin-bottom: 30px;
        border-bottom: 2px solid var(--phmacao-primary-color);
        display: inline-block;
        padding-bottom: 10px;
    }

    .page-phmacao-telegram__section-subtitle {
        font-size: 1.5em;
        color: var(--phmacao-text-light);
        margin-bottom: 20px;
    }

    .page-phmacao-telegram__section-text {
        font-size: 1.1em;
        color: var(--phmacao-text-light);
        margin-bottom: 20px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Benefits Grid */
    .page-phmacao-telegram__benefits-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 40px;
        list-style: none; /* Remove default list styling */
        padding: 0;
    }

    .page-phmacao-telegram__benefit-item {
        background-color: var(--phmacao-bg-medium);
        border: 1px solid var(--phmacao-border-color);
        border-radius: 8px;
        padding: 25px;
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-phmacao-telegram__benefit-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    }

    .page-phmacao-telegram__benefit-icon {
        width: 100px; /* Minimum 200x200, so 100px will scale up */
        height: 100px;
        object-fit: contain;
        margin-bottom: 15px;
        max-width: 100%;
        height: auto;
    }

    .page-phmacao-telegram__benefit-title {
        font-size: 1.3em;
        color: var(--phmacao-primary-color);
        margin-bottom: 10px;
    }

    .page-phmacao-telegram__benefit-description {
        font-size: 1em;
        color: var(--phmacao-text-light);
    }

    /* How to Join Steps */
    .page-phmacao-telegram__steps-list {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-top: 30px;
        list-style: none; /* Remove default list styling */
        padding: 0;
    }

    .page-phmacao-telegram__step-item {
        background-color: var(--phmacao-bg-medium);
        border: 1px solid var(--phmacao-border-color);
        border-radius: 8px;
        padding: 20px;
        display: flex;
        align-items: center;
        text-align: left;
        box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-phmacao-telegram__step-number {
        font-size: 1.8em;
        font-weight: bold;
        color: var(--phmacao-accent-color);
        margin-right: 20px;
        flex-shrink: 0;
    }

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

    .page-phmacao-telegram__step-title {
        font-size: 1.2em;
        color: var(--phmacao-primary-color);
        margin-bottom: 5px;
    }

    .page-phmacao-telegram__step-description {
        font-size: 1em;
        color: var(--phmacao-text-light);
    }

    /* FAQ Section */
    .page-phmacao-telegram__faq-section {
        padding: 40px 20px;
        max-width: 900px;
        margin: 0 auto;
        text-align: left;
        background-color: var(--phmacao-bg-dark);
    }

    .page-phmacao-telegram__faq-title {
        font-size: 2.2em;
        color: var(--phmacao-primary-color);
        margin-bottom: 30px;
        text-align: center;
        border-bottom: 2px solid var(--phmacao-primary-color);
        display: inline-block;
        padding-bottom: 10px;
        width: auto; /* Allow title to size itself */
        max-width: 100%; /* Ensure it doesn't overflow */
    }

    .page-phmacao-telegram__faq-list {
        list-style: none;
        padding: 0;
    }

    .page-phmacao-telegram__faq-item {
        background-color: var(--phmacao-bg-medium);
        border: 1px solid var(--phmacao-border-color);
        border-radius: 8px;
        margin-bottom: 15px;
        overflow: hidden;
        box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-phmacao-telegram__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        cursor: pointer;
        user-select: none;
        background-color: var(--phmacao-bg-medium);
        transition: background-color 0.3s ease;
        color: var(--phmacao-primary-color);
    }

    .page-phmacao-telegram__faq-question:hover {
        background-color: #3a3a3a;
    }

    .page-phmacao-telegram__faq-question h3 {
        margin: 0;
        font-size: 1.2em;
        color: inherit; /* Inherit color from parent */
        pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-phmacao-telegram__faq-toggle {
        font-size: 1.5em;
        font-weight: bold;
        color: var(--phmacao-accent-color);
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

    .page-phmacao-telegram__faq-item.active .page-phmacao-telegram__faq-toggle {
        transform: rotate(45deg); /* Visually change + to X or - */
    }

    .page-phmacao-telegram__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 20px;
        opacity: 0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        color: var(--phmacao-text-light);
        background-color: #2a2a2a;
    }

    .page-phmacao-telegram__faq-item.active .page-phmacao-telegram__faq-answer {
        max-height: 2000px !important; /* Sufficiently large value */
        padding: 20px 20px !important;
        opacity: 1;
    }

    /* General Image Styles */
    .page-phmacao-telegram img {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
        border-radius: 8px;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .page-phmacao-telegram__hero-section {
            padding: 40px 15px;
            padding-top: calc(10px + var(--header-offset, 122px));
        }

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

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

        .page-phmacao-telegram__cta-button {
            padding: 12px 25px;
            font-size: 1em;
        }

        .page-phmacao-telegram__section {
            padding: 30px 15px;
        }

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

        .page-phmacao-telegram__section-subtitle {
            font-size: 1.3em;
        }

        .page-phmacao-telegram__section-text {
            font-size: 0.95em;
        }

        /* List items responsive */
        .page-phmacao-telegram__benefits-grid,
        .page-phmacao-telegram__steps-list {
            grid-template-columns: 1fr; /* Stack items */
            gap: 20px;
            width: 100% !important;
            max-width: 100% !important;
            padding: 0 !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            box-sizing: border-box !important;
        }

        .page-phmacao-telegram__benefit-item,
        .page-phmacao-telegram__step-item,
        .page-phmacao-telegram__faq-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            padding-left: 15px !important;
            padding-right: 15px !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }

        .page-phmacao-telegram__faq-section {
            padding: 30px 15px;
        }

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

        .page-phmacao-telegram__faq-question {
            padding: 12px 15px;
        }

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

        .page-phmacao-telegram__faq-answer {
            padding: 0 15px;
        }

        .page-phmacao-telegram__faq-item.active .page-phmacao-telegram__faq-answer {
            padding: 15px 15px !important;
        }
        
        /* Image responsiveness */
        .page-phmacao-telegram img {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }
        .page-phmacao-telegram__image-container {
            width: 100% !important;
            max-width: 100% !important;
            overflow: hidden !important;
            box-sizing: border-box !important;
        }
    }

    @media (max-width: 480px) {
        .page-phmacao-telegram__hero-title {
            font-size: 1.8em;
        }

        .page-phmacao-telegram__section-title {
            font-size: 1.6em;
        }

        .page-phmacao-telegram__step-item {
            flex-direction: column;
            text-align: center;
        }

        .page-phmacao-telegram__step-number {
            margin-right: 0;
            margin-bottom: 10px;
        }
    }
  