#custom-container-sales-playbook {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    #custom-container-sales-playbook .cms-container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 1.5rem;
    }

    /* Hero Section */
    #custom-container-sales-playbook .hero-section {
        background: linear-gradient(135deg, var(--brand-primary), var(--brand-dark));
        padding: 140px 0 80px 0;
        position: relative;
        overflow: hidden;
    }

    #custom-container-sales-playbook .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        opacity: 0.3;
    }

    #custom-container-sales-playbook .hero-content {
        position: relative;
        z-index: 1;
        text-align: center;
        color: white;
    }

    #custom-container-sales-playbook .hero-badge {
        display: inline-block;
        padding: 0.5rem 1rem;
        background: rgba(255, 255, 255, 0.15);
        border-radius: 2rem;
        font-size: var(--text-sm);
        font-weight: 600;
        margin-bottom: 1rem;
    }

    #custom-container-sales-playbook .hero-title {
        font-size: var(--text-5xl);
        font-weight: 800;
        margin-bottom: 1.5rem;
        line-height: 1.1;
        color: white !important;
    }

    #custom-container-sales-playbook .hero-subtitle {
        font-size: var(--text-xl);
        opacity: 0.95;
        margin-bottom: 2.5rem;
        line-height: 1.6;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    #custom-container-sales-playbook .hero-cta {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    #custom-container-sales-playbook .btn-primary {
        padding: 0.75rem 1.5rem;
        background: var(--brand-accent);
        color: white;
        text-decoration: none;
        border-radius: 0.5rem;
        font-weight: 600;
        font-size: var(--text-base);
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }

    #custom-container-sales-playbook .btn-primary:hover {
        background: #ff5722;
        transform: translateY(-2px);
    }

    /* Introduction Section */
    #custom-container-sales-playbook .intro-section {
        padding: 5rem 0;
        background: white;
    }

    #custom-container-sales-playbook .intro-content {
        max-width: 900px;
        margin: 0 auto;
        text-align: center;
    }

    #custom-container-sales-playbook .intro-text {
        font-size: var(--text-lg);
        color: var(--brand-neutral);
        line-height: 1.8;
        margin-bottom: 2rem;
    }

    #custom-container-sales-playbook .intro-highlight {
        background: linear-gradient(135deg, #f8f9fb, #f5f5f8);
        padding: 2rem;
        border-left: 4px solid var(--brand-accent);
        border-radius: 0.5rem;
        margin: 2rem 0;
    }

    #custom-container-sales-playbook .intro-highlight p {
        color: var(--brand-dark);
        font-weight: 600;
        font-size: var(--text-lg);
        margin: 0;
        line-height: 1.7;
    }

    /* Components Section */
    #custom-container-sales-playbook .components-section {
        padding: 5rem 0;
        background: linear-gradient(135deg, #f8f9fb, #f5f5f8);
    }

    #custom-container-sales-playbook .section-header {
        text-align: center;
        max-width: 800px;
        margin: 0 auto 4rem;
    }

    #custom-container-sales-playbook .section-title {
        font-size: var(--text-4xl);
        font-weight: 700;
        color: var(--brand-dark);
        margin-bottom: 1rem;
    }

    #custom-container-sales-playbook .section-subtitle {
        font-size: var(--text-lg);
        color: var(--brand-neutral);
        line-height: 1.6;
    }

    #custom-container-sales-playbook .components-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    #custom-container-sales-playbook .component-card {
        background: linear-gradient(135deg, #f8f9fb, #f5f5f8);
        padding: 2rem;
        border-radius: 1rem;
        text-align: center;
        transition: all 0.3s ease;
        position: relative;
    }

    #custom-container-sales-playbook .component-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(30, 58, 95, 0.15);
    }

    #custom-container-sales-playbook .component-number {
        position: absolute;
        top: -20px;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 40px;
        background: var(--brand-primary);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: var(--text-lg);
        z-index: 10;
        box-shadow: 0 4px 10px rgba(30, 58, 95, 0.2);
    }

    #custom-container-sales-playbook .component-icon {
        width: 60px;
        height: 60px;
        background: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--brand-primary);
        font-size: 1.5rem;
        margin: 1rem auto 1.5rem;
    }

    #custom-container-sales-playbook .component-title {
        font-size: var(--text-xl);
        font-weight: 600;
        color: var(--brand-dark);
        margin-bottom: 1rem;
    }

    #custom-container-sales-playbook .component-description {
        color: var(--brand-neutral);
        line-height: 1.6;
        font-size: var(--text-xs);
    }

    /* Transition Section */
    #custom-container-sales-playbook .transition-section {
        padding: 3rem 0;
        background: white;
    }

    #custom-container-sales-playbook .transition-box {
        max-width: 900px;
        margin: 0 auto;
        background: linear-gradient(135deg, var(--brand-primary), var(--brand-dark));
        padding: 2.5rem;
        border-radius: 1rem;
        text-align: center;
        color: white;
    }

    #custom-container-sales-playbook .transition-box p {
        font-size: var(--text-lg);
        line-height: 1.7;
        margin: 0;
        font-weight: 500;
    }

    /* Process Section */
    #custom-container-sales-playbook .process-section {
        padding: 5rem 0;
        background: linear-gradient(135deg, #f8f9fb, #f5f5f8);
    }

    #custom-container-sales-playbook .process-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    #custom-container-sales-playbook .process-text h2 {
        font-size: var(--text-3xl);
        font-weight: 700;
        color: var(--brand-dark);
        margin-bottom: 1.5rem;
    }

    #custom-container-sales-playbook .process-text p {
        font-size: var(--text-lg);
        color: var(--brand-neutral);
        line-height: 1.7;
        margin-bottom: 2rem;
    }

    #custom-container-sales-playbook .process-steps {
        list-style: none;
        padding: 0;
    }

    #custom-container-sales-playbook .process-step {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 1.5rem;
        padding: 1.5rem;
        background: white;
        border-radius: 0.75rem;
        transition: all 0.3s ease;
    }

    #custom-container-sales-playbook .process-step:hover {
        transform: translateX(10px);
        box-shadow: 0 5px 15px rgba(30, 58, 95, 0.1);
    }

    #custom-container-sales-playbook .step-icon {
        width: 40px;
        height: 40px;
        background: linear-gradient(135deg, var(--brand-primary), var(--brand-dark));
        border-radius: 0.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        flex-shrink: 0;
    }

    #custom-container-sales-playbook .step-content {
        flex: 1;
    }

    #custom-container-sales-playbook .step-title {
        font-size: var(--text-lg);
        font-weight: 600;
        color: var(--brand-dark);
        margin-bottom: 0.25rem;
    }

    #custom-container-sales-playbook .step-description {
        font-size: var(--text-sm);
        color: var(--brand-neutral);
    }

    #custom-container-sales-playbook .process-image {
        position: relative;
    }

    #custom-container-sales-playbook .process-img {
        width: 100%;
        border-radius: 1rem;
        box-shadow: 0 20px 40px rgba(30, 58, 95, 0.15);
    }

    /* Templates Section */
    #custom-container-sales-playbook .templates-section {
        padding: 5rem 0;
        background: white;
    }

    #custom-container-sales-playbook .templates-showcase {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
        margin-top: 3rem;
    }

    #custom-container-sales-playbook .template-category {
        background: linear-gradient(135deg, #f8f9fb, #f5f5f8);
        padding: 2.5rem;
        border-radius: 1rem;
    }

    #custom-container-sales-playbook .category-header {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    #custom-container-sales-playbook .category-icon {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, var(--brand-primary), var(--brand-dark));
        border-radius: 0.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.5rem;
    }

    #custom-container-sales-playbook .category-title {
        font-size: var(--text-2xl);
        font-weight: 600;
        color: var(--brand-dark);
    }

    #custom-container-sales-playbook .template-list {
        list-style: none;
        padding: 0;
    }

    #custom-container-sales-playbook .template-item {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(30, 58, 95, 0.1);
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    #custom-container-sales-playbook .template-item:last-child {
        border-bottom: none;
    }

    #custom-container-sales-playbook .template-name {
        color: var(--brand-dark);
        font-weight: 500;
        font-size: var(--text-sm);
    }

    #custom-container-sales-playbook .template-badge {
        background: var(--brand-primary);
        color: white;
        padding: 0.25rem 0.75rem;
        border-radius: 1rem;
        font-size: var(--text-xs);
        font-weight: 600;
    }

    /* Benefits Section */
    #custom-container-sales-playbook .benefits-section {
        padding: 5rem 0;
        background: white;
    }

    #custom-container-sales-playbook .benefits-content {
        max-width: 1100px;
        margin: 0 auto;
    }

    #custom-container-sales-playbook .benefits-header {
        text-align: center;
        margin-bottom: 3rem;
    }

    #custom-container-sales-playbook .benefits-title {
        font-size: var(--text-4xl);
        font-weight: 700;
        color: var(--brand-dark);
        margin-bottom: 1rem;
    }

    #custom-container-sales-playbook .benefits-subtitle {
        font-size: var(--text-lg);
        color: var(--brand-neutral);
        line-height: 1.6;
    }

    #custom-container-sales-playbook .benefits-image {
        text-align: center;
        margin-top: 2rem;
    }

    #custom-container-sales-playbook .benefits-image img {
        width: 100%;
        max-width: 1000px;
        height: auto;
        border-radius: 1rem;
        box-shadow: 0 20px 40px rgba(30, 58, 95, 0.15);
    }

    #custom-container-sales-playbook .benefits-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        margin-top: 3rem;
        align-items: start;
    }

    #custom-container-sales-playbook .benefits-list {
        list-style: none;
        padding: 0;
    }

    #custom-container-sales-playbook .benefit-item {
        margin-bottom: 2.5rem;
    }

    #custom-container-sales-playbook .benefit-item:last-child {
        margin-bottom: 0;
    }

    #custom-container-sales-playbook .benefit-icon-wrapper {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
    }

    #custom-container-sales-playbook .benefit-check {
        width: 40px;
        height: 40px;
        background: var(--brand-primary);
        border-radius: 0.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.25rem;
        flex-shrink: 0;
    }

    #custom-container-sales-playbook .benefit-content h3 {
        font-size: var(--text-xl);
        font-weight: 700;
        color: var(--brand-dark);
        margin-bottom: 0.5rem;
    }

    #custom-container-sales-playbook .benefit-content p {
        font-size: var(--text-base);
        color: var(--brand-neutral);
        line-height: 1.7;
        margin: 0;
    }

    #custom-container-sales-playbook .toc-column {
        background: linear-gradient(135deg, #f8f9fb, #f5f5f8);
        padding: 2.5rem;
        border-radius: 1rem;
    }

    #custom-container-sales-playbook .toc-title {
        font-size: var(--text-2xl);
        font-weight: 700;
        color: var(--brand-dark);
        margin-bottom: 2rem;
        text-align: center;
    }

    #custom-container-sales-playbook .toc-section {
        margin-bottom: 2rem;
    }

    #custom-container-sales-playbook .toc-section:last-child {
        margin-bottom: 0;
    }

    #custom-container-sales-playbook .toc-section-title {
        background: var(--brand-primary);
        color: white;
        padding: 0.75rem 1.5rem;
        border-radius: 0.5rem;
        font-size: var(--text-base);
        font-weight: 700;
        margin-bottom: 1rem;
        text-align: center;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    #custom-container-sales-playbook .toc-items {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
        padding: 0 0.5rem;
    }

    #custom-container-sales-playbook .toc-item {
        font-size: var(--text-sm);
        color: var(--brand-neutral);
        padding-left: 1.25rem;
        position: relative;
        line-height: 1.5;
    }

    #custom-container-sales-playbook .toc-item::before {
        content: "•";
        position: absolute;
        left: 0;
        color: var(--brand-primary);
        font-weight: 700;
    }

    #custom-container-sales-playbook .toc-note {
        font-size: var(--text-xs);
        color: var(--brand-neutral);
        font-style: italic;
        margin-top: 1rem;
        text-align: center;
    }

    /* Sample Section */
    #custom-container-sales-playbook .sample-section {
        padding: 5rem 0;
        background: white;
    }

    #custom-container-sales-playbook .sample-content {
        background: linear-gradient(135deg, #f8f9fb, #f5f5f8);
        padding: 3rem;
        border-radius: 1rem;
        max-width: 900px;
        margin: 0 auto;
        text-align: center;
    }

    #custom-container-sales-playbook .sample-title {
        font-size: var(--text-3xl);
        font-weight: 700;
        color: var(--brand-dark);
        margin-bottom: 1rem;
    }

    #custom-container-sales-playbook .sample-description {
        font-size: var(--text-lg);
        color: var(--brand-neutral);
        margin-bottom: 2rem;
        line-height: 1.6;
    }

    /* Responsive */
    @media (max-width: 1024px) {
        #custom-container-sales-playbook .components-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 768px) {
        #custom-container-sales-playbook .hero-title {
            font-size: var(--text-4xl);
        }

        #custom-container-sales-playbook .components-grid {
            grid-template-columns: 1fr;
        }

        #custom-container-sales-playbook .process-content {
            grid-template-columns: 1fr;
        }

        #custom-container-sales-playbook .templates-showcase {
            grid-template-columns: 1fr;
        }

        #custom-container-sales-playbook .benefits-grid {
            grid-template-columns: 1fr;
        }

        #custom-container-sales-playbook .toc-items {
            grid-template-columns: 1fr;
        }
    }
