.orders-content {
    padding: 24px;
    margin-top: 8px;
    margin-bottom: 52px;
    width: 100%;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid #E0E0E0;
    color: #000000;
    transition: max-height 0.3s ease-in-out;
}

.orders-title {
    text-align: left;
    margin-bottom: 1rem;
    font-weight: 800;
    font-size: 40px;
    line-height: 120%;
    font-family: var(--font-secondary);
    vertical-align: middle;
}

.orders-returns-section {
    margin-top: 40px;
}

.orders-returns-accordion {
    border-top: 1px solid #000000;
    margin-bottom: 40px;
}

.orders-returns-item {
    border-bottom: 1px solid #000000;
}

.orders-returns-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    cursor: pointer;
}

.orders-returns-header h3 {
    margin: 0;
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 28px;
    line-height: 120%;
    letter-spacing: 0px;
    vertical-align: middle;

}

.orders-returns-toggle {
    width: 32px;
    height: auto;
    transition: transform 0.3s ease;
}

.orders-returns-content {
    display: none;
    padding: 0px 24px 24px 24px;
    margin-top: -8px;
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: 0px;
    vertical-align: middle;
}

.orders-returns-item.active .orders-returns-content {
    display: block;
    max-height: none;
}

.orders-returns-item.active .orders-returns-toggle {
    transform: rotate(180deg);
}

.orders-returns-address {
    margin-bottom: 24px;
}

.orders-returns-address strong {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 22px;
    line-height: 150%;
    letter-spacing: 0px;
}

.orders-returns-address p {
    margin: 0;
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: 0px;
    vertical-align: middle;
}

.orders-returns-contact-notice {
    background-color: #E9FEA7;
    border-radius: 10px;
    font-weight: 500;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: 0px;
    vertical-align: middle;

    width: fit-content;
    padding: 8px 16px;
    margin-bottom: 40px;
}

.orders-returns-info-blocks {
    display: flex;
    flex-direction: column;
    gap: 40px;
    flex-wrap: wrap;
}

.orders-returns-info-block h3 {
    margin-top: 0;
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 24px;
    line-height: 150%;
    letter-spacing: 0px;
    vertical-align: middle;

}

.orders-returns-info-block p {
    margin-top: 8px;
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: 0px;
    vertical-align: middle;
}

@media (min-width: 769px) {


    .orders-returns-content {
        font-size: 20px;
    }

    .orders-returns-info-block p {
        font-size: 20px;
    }
}