/* Full-bleed wrapper */
.pc-outer-wrapper-64a80c0f {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background-color: #ffffff;
    padding: 80px 40px;
    box-sizing: border-box;
}

/* Main Layout */
.pc-wrapper-64a80c0f {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
}

/* Left Column (40%) */
.pc-left-col-64a80c0f {
    flex: 0 0 calc(40% - 30px);
    max-width: calc(40% - 30px);
}

.pc-left-inner-64a80c0f {
    position: sticky;
    top: 100px; /* Sticky behavior for scrolling alongside the list */
}

/* Right Column (60%) */
.pc-right-col-64a80c0f {
    flex: 0 0 calc(60% - 30px);
    max-width: calc(60% - 30px);
}

/* Left Content Styles */
.pc-eyebrow-64a80c0f {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #b89d70; /* Default accent, overridable */
    margin-bottom: 15px;
}

.pc-divider-64a80c0f {
    width: 50px;
    height: 2px;
    background-color: #b89d70; /* Default accent, overridable */
    margin-bottom: 30px;
}

.pc-title-64a80c0f {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0 0 25px 0;
}

.pc-paragraph-64a80c0f {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 20px;
}

.pc-paragraph-secondary-64a80c0f {
    font-style: italic;
    color: #777777;
}

/* Right Content Styles (List) */
.pc-questions-list-64a80c0f {
    display: flex;
    flex-direction: column;
}

.pc-question-item-64a80c0f {
    display: flex;
    align-items: flex-start;
    padding: 30px 0;
    border-bottom: 1px solid #e0e0e0;
}

.pc-question-item-64a80c0f:first-child {
    padding-top: 0;
}

.pc-question-item-64a80c0f:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.pc-question-arrow-64a80c0f {
    font-size: 1.5rem;
    line-height: 1;
    margin-right: 20px;
    color: #b89d70; /* Default accent, overridable */
    flex-shrink: 0;
    padding-top: 2px;
}

.pc-question-text-64a80c0f {
    font-size: 1.35rem;
    line-height: 1.4;
    font-weight: 400;
    color: #222222;
    margin: 0;
    padding: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .pc-wrapper-64a80c0f {
        flex-direction: column;
        gap: 40px;
    }
    
    .pc-outer-wrapper-64a80c0f {
        padding: 60px 20px;
    }
    
    .pc-left-col-64a80c0f,
    .pc-right-col-64a80c0f {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .pc-left-inner-64a80c0f {
        position: static;
    }
    
    .pc-title-64a80c0f {
        font-size: 2rem;
    }
    
    .pc-question-text-64a80c0f {
        font-size: 1.2rem;
    }
}
