/*--------------------------------------------------------------
# Partnerships Page - Value Exchange Section
--------------------------------------------------------------*/
.partnerships-value-exchange-section {
    width: 100%;
    background-color: #FFFFFF;
    padding: 120px 0 80px; 
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

.value-exchange-container {
    display: grid;
    grid-template-columns: minmax(320px, 1fr) minmax(0, 1.4fr);
    align-items: start;
    padding: 0 1rem;
    gap: 80px;
    max-width: 1280px;
    width: 100%;
    box-sizing: border-box;
}

.value-exchange-intro {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 20px;
    width: 100%;
}

.value-exchange-label {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(34, 140, 34, 0.6);
}

.value-exchange-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: #1E2939;
    margin: 0;
}

.value-exchange-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.6;
    color: #0A1837;
    margin: 0;
}

/* ---------- CTA Button ---------- */
.value-exchange-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 14px 24px;
    background: #0A1837;
    color: #FFFFFF;
    border-radius: 999px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: -0.3125px;
    text-decoration: none;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.value-exchange-cta:hover {
    background: #111f42;
    transform: translateY(-1px);
    color: #FFFFFF;
}

.value-exchange-cta-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease;
}

.value-exchange-cta:hover .value-exchange-cta-arrow {
    transform: translateX(3px);
}

/* ---------- List ---------- */
.value-exchange-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.value-exchange-item {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 24px;
    padding: 28px 32px;
    border-radius: 24px;
    overflow: hidden;
    box-sizing: border-box;
}

/* Color variants — mirrored from Workflow Integration Simple */
.value-exchange-item--dark-green { background: #87B485; }
.value-exchange-item--green      { background: #B2CEB0; }
.value-exchange-item--pale       { background: #E8F5DB; }

/* ---------- Icon / Number ---------- */
.value-exchange-item-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(26, 26, 26, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.value-exchange-item-icon-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.value-exchange-item-icon-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1;
    color: #0A1837;
}

/* ---------- Content ---------- */
.value-exchange-item-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    z-index: 1;
    flex: 1;
    min-width: 0;
}

.value-exchange-item-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 1.3;
    letter-spacing: -0.01em;
    color: #0A1837;
    margin: 0;
}

.value-exchange-item-desc {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.55;
    color: #0A1837;
    margin: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .value-exchange-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .value-exchange-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .partnerships-value-exchange-section {
        padding: 80px 0 60px;
    }
    .value-exchange-title {
        font-size: 32px;
    }
    .value-exchange-description {
        font-size: 18px;
    }
    .value-exchange-item {
        padding: 24px;
        gap: 16px;
    }
    .value-exchange-item-title {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .value-exchange-item {
        flex-direction: column;
        align-items: flex-start;
    }
}

/*--------------------------------------------------------------
# Partnerships Page - Trust Center Section
--------------------------------------------------------------*/
.trust-center-section {
    width: 100%;
    background-color: #FFFFFF;
    padding: 120px 0 80px;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

.trust-center-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 80px;
    max-width: 1280px;
    width: 100%;
    padding: 0 1rem;
    box-sizing: border-box;
}

/* Left Column: Heading Block */
.trust-center-heading {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 600px;
}

.trust-center-label {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(34, 140, 34, 0.6);
}

.trust-center-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: #1E2939;
    margin: 0;
}

.trust-center-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.6;
    color: #0A1837;
    margin: 0;
}

/* Right Column: Accordion */
.trust-center-accordion {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 600px;
}

.trust-center-accordion-item {
    border-bottom: 1px solid rgba(10, 24, 55, 0.1);
    overflow: hidden;
}

/* The last item gets a rounded background when open */
.trust-center-accordion-item.is-last {
    border-bottom: none;
}

/* Trigger (the clickable header row) */
.trust-center-accordion-trigger {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 16px;
    transition: background-color 0.2s ease;
}

.trust-center-accordion-item.is-last .trust-center-accordion-trigger {
    border-radius: 16px;
    background-color: #FFFFFF;
}

.trust-center-accordion-item.is-open.is-last .trust-center-accordion-trigger {
    border-radius: 16px 16px 0 0;
}

.trust-center-accordion-title {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #364153;
    flex: 1;
}

/* Icon Container (the green circle) */
.trust-center-accordion-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background-color: #228C22;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, background-color 0.2s ease;
}

/* Single arrow that rotates on open */
.accordion-arrow {
    width: 20px;
    height: 20px;
    display: block;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.trust-center-accordion-item.is-open .accordion-arrow {
    transform: rotate(180deg);
}

/* Accordion Body (expanded content) */
.trust-center-accordion-body {
    height: 0;
    overflow: hidden;
    background-color: #FFFFFF;
    transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.trust-center-accordion-body-inner {
    padding: 0 24px 16px;
}

.trust-center-accordion-item.is-last .trust-center-accordion-body {
    border-radius: 0 0 16px 16px;
}

.trust-center-accordion-content {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(54, 65, 83, 0.6);
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .trust-center-container {
        flex-direction: column;
    }
    .trust-center-heading,
    .trust-center-accordion {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .trust-center-title {
        font-size: 32px;
    }
    .trust-center-description {
        font-size: 18px;
    }
}
