/*--------------------------------------------------------------
# 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: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 1rem;
    gap: 80px;
    max-width: 1280px;
    width: 100%;
    box-sizing: border-box;
}

.value-exchange-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    max-width: 893px;
    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;
}

.value-exchange-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 24px;
    width: 100%;
}

.value-exchange-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.value-exchange-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 414.33 / 400;
    background: rgba(74, 85, 101, 0.05); /* empty background placeholder style */
    border-radius: 16px;
    overflow: hidden;
}

.value-exchange-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.value-exchange-card-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

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

@media (max-width: 1024px) {
    .value-exchange-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 24px;
    }
    .value-exchange-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .value-exchange-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 500px;
        margin: 0 auto;
    }
    .value-exchange-card {
        align-items: center;
        text-align: center;
    }
    .value-exchange-card-content {
        align-items: center;
    }
    .value-exchange-title {
        font-size: 32px;
    }
    .value-exchange-description {
        font-size: 18px;
    }
    .value-exchange-card-title {
        font-size: 24px;
    }
}

/*--------------------------------------------------------------
# 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;
    }
}
