
    :root {
        --primary-color: #e44d26; /* A vibrant orange-red for accents */
        --secondary-color: #2c3e50; /* Dark blue-grey for text and backgrounds */
        --accent-color: #f39c12; /* Golden yellow for highlights */
        --text-color: #ecf0f1; /* Light grey for body text */
        --light-background: #34495e; /* Slightly lighter dark blue-grey */
        --dark-background: #1a252f; /* Very dark background */
        --border-color: #5d6d7e;
        --button-hover-color: #c0392b;
        --spacing-unit: 1rem;
    }

    body {
        font-family: 'Arial', sans-serif;
        line-height: 1.6;
        color: var(--text-color);
        background-color: var(--dark-background);
        margin: 0;
    }

    .page-ph-spin-6 {
        max-width: 1200px;
        margin: 0 auto;
        padding: var(--spacing-unit);
        box-sizing: border-box;
    }

    .page-ph-spin-6__hero-section {
        background: var(--light-background);
        padding: 60px var(--spacing-unit) 40px;
        text-align: center;
        border-radius: 8px;
        margin-bottom: 30px;
        position: relative;
        overflow: hidden;
        padding-top: 70px; /* Adjusted to account for potential fixed header */
    }

    .page-ph-spin-6__hero-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.2;
        z-index: 0;
    }

    .page-ph-spin-6__hero-content {
        position: relative;
        z-index: 1;
        max-width: 800px;
        margin: 0 auto;
    }

    .page-ph-spin-6__hero-title {
        color: var(--primary-color);
        font-size: 3em;
        margin-bottom: 0.5em;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }

    .page-ph-spin-6__hero-description {
        font-size: 1.2em;
        margin-bottom: 1.5em;
        color: var(--accent-color);
    }

    .page-ph-spin-6__cta-button {
        display: inline-block;
        background-color: var(--primary-color);
        color: white;
        padding: 15px 30px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1em;
        transition: background-color 0.3s ease;
        border: none;
        cursor: pointer;
    }

    .page-ph-spin-6__cta-button:hover {
        background-color: var(--button-hover-color);
    }

    .page-ph-spin-6__section {
        background-color: var(--light-background);
        padding: 40px var(--spacing-unit);
        margin-bottom: 30px;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }

    .page-ph-spin-6__section-title {
        color: var(--primary-color);
        text-align: center;
        margin-bottom: 30px;
        font-size: 2.2em;
        position: relative;
    }

    .page-ph-spin-6__section-title::after {
        content: '';
        display: block;
        width: 60px;
        height: 4px;
        background-color: var(--accent-color);
        margin: 10px auto 0;
        border-radius: 2px;
    }

    .page-ph-spin-6__content-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }

    .page-ph-spin-6__feature-card {
        background-color: var(--dark-background);
        padding: 25px;
        border-radius: 8px;
        text-align: center;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        transition: transform 0.3s ease;
        border: 1px solid var(--border-color);
    }

    .page-ph-spin-6__feature-card:hover {
        transform: translateY(-5px);
    }

    .page-ph-spin-6__feature-icon {
        width: 100px;
        height: 100px;
        margin-bottom: 15px;
        object-fit: cover;
        border-radius: 50%;
        border: 3px solid var(--accent-color);
        box-sizing: border-box;
        max-width: 100%;
    }

    .page-ph-spin-6__feature-title {
        color: var(--accent-color);
        font-size: 1.5em;
        margin-bottom: 10px;
    }

    .page-ph-spin-6__feature-description {
        color: var(--text-color);
        font-size: 0.95em;
    }

    .page-ph-spin-6__steps-list {
        list-style: none;
        padding: 0;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        margin-top: 30px;
    }

    .page-ph-spin-6__step-item {
        background-color: var(--dark-background);
        padding: 25px;
        border-radius: 8px;
        border: 1px solid var(--border-color);
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        box-sizing: border-box;
    }

    .page-ph-spin-6__step-number {
        background-color: var(--primary-color);
        color: white;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 1.8em;
        font-weight: bold;
        margin-bottom: 20px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    }

    .page-ph-spin-6__step-title {
        color: var(--accent-color);
        font-size: 1.6em;
        margin-bottom: 10px;
    }

    .page-ph-spin-6__step-description {
        color: var(--text-color);
        font-size: 1em;
        flex-grow: 1;
    }

    .page-ph-spin-6__promo-banner {
        background-color: var(--primary-color);
        padding: 30px var(--spacing-unit);
        text-align: center;
        border-radius: 8px;
        margin-bottom: 30px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }

    .page-ph-spin-6__promo-title {
        color: white;
        font-size: 2.5em;
        margin-bottom: 10px;
    }

    .page-ph-spin-6__promo-text {
        color: white;
        font-size: 1.2em;
        margin-bottom: 20px;
    }

    .page-ph-spin-6__promo-link {
        display: inline-block;
        background-color: var(--accent-color);
        color: var(--dark-background);
        padding: 12px 25px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease;
    }

    .page-ph-spin-6__promo-link:hover {
        background-color: #e6b13e;
    }

    .page-ph-spin-6__faq-section {
        background-color: var(--light-background);
        padding: 40px var(--spacing-unit);
        margin-bottom: 30px;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }

    .page-ph-spin-6__faq-item {
        margin-bottom: 15px;
        border: 1px solid var(--border-color);
        border-radius: 8px;
        overflow: hidden;
    }

    .page-ph-spin-6__faq-question {
        background-color: var(--dark-background);
        padding: 15px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        user-select: none;
        transition: background-color 0.3s ease;
    }

    .page-ph-spin-6__faq-question:hover {
        background-color: #2c3e50;
    }

    .page-ph-spin-6__faq-question h3 {
        margin: 0;
        color: var(--accent-color);
        font-size: 1.2em;
        pointer-events: none; /* Prevents h3 from interfering with click event */
    }

    .page-ph-spin-6__faq-toggle {
        font-size: 1.8em;
        font-weight: bold;
        color: var(--primary-color);
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevents toggle icon from interfering with click event */
    }

    .page-ph-spin-6__faq-item.active .page-ph-spin-6__faq-toggle {
        transform: rotate(45deg); /* Changes '+' to 'x' or similar, or to '-' */
    }
    
    .page-ph-spin-6__faq-item.active .page-ph-spin-6__faq-toggle::before {
        content: "−" !important;
    }
    .page-ph-spin-6__faq-toggle::before {
        content: "+" !important;
    }

    .page-ph-spin-6__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 20px;
        background-color: #26323f; /* Slightly lighter than dark-background */
        color: var(--text-color);
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        opacity: 0;
    }

    .page-ph-spin-6__faq-item.active .page-ph-spin-6__faq-answer {
        max-height: 2000px !important; /* Sufficiently large to contain any content */
        padding: 20px !important;
        opacity: 1;
    }

    .page-ph-spin-6__faq-answer p {
        margin-top: 0;
        margin-bottom: 10px;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .page-ph-spin-6 {
            padding: 0.5rem;
        }

        .page-ph-spin-6__hero-section {
            padding: 40px 0.5rem 30px;
            padding-top: 60px; /* Adjusted for mobile header */
        }

        .page-ph-spin-6__hero-title {
            font-size: 2.2em;
        }

        .page-ph-spin-6__hero-description {
            font-size: 1em;
        }

        .page-ph-spin-6__section {
            padding: 30px 0.5rem;
        }

        .page-ph-spin-6__section-title {
            font-size: 1.8em;
        }

        .page-ph-spin-6__content-grid {
            grid-template-columns: 1fr;
        }

        .page-ph-spin-6__steps-list {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        
        .page-ph-spin-6__step-item {
            padding: 20px;
        }

        .page-ph-spin-6__promo-title {
            font-size: 1.8em;
        }

        .page-ph-spin-6__promo-text {
            font-size: 1em;
        }
        
        .page-ph-spin-6__faq-question {
            padding: 12px 15px;
        }

        .page-ph-spin-6__faq-question h3 {
            font-size: 1.1em;
        }

        .page-ph-spin-6__faq-answer {
            padding: 0 15px;
        }

        .page-ph-spin-6__faq-item.active .page-ph-spin-6__faq-answer {
            padding: 15px !important;
        }
        
        /* List item responsive - ensuring all list-like structures are 100% width */
        .page-ph-spin-6__steps-list li,
        .page-ph-spin-6__feature-card { /* Using feature-card as it's a grid item acting like a list */
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding: 15px !important; /* Adjust padding to prevent overflow */
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
        }

        .page-ph-spin-6__steps-list,
        .page-ph-spin-6__content-grid {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            padding: 0 !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }
    }

    @media (max-width: 480px) {
        .page-ph-spin-6__hero-title {
            font-size: 1.8em;
        }
        .page-ph-spin-6__cta-button {
            padding: 12px 20px;
            font-size: 1em;
        }
        .page-ph-spin-6__promo-title {
            font-size: 1.5em;
        }
    }
  