/*.page-content {*/
/*    background-color: #F8F8F8;*/
/*}*/

.gzp-page {
    padding-top: 75px;
}

.gzp-container {
    width: 100%;
}

/* ---------- Header ---------- */

.gzp-page-header {
    margin-bottom: 40px;
    margin-top: 40px;
}

.gzp-page-title {
    color: #000;
    font-weight: bold;
    font-size: 36px;
}

.gzp-page-title:after {
    content: '';
    display: block;
    width: 70px;
    height: 2px;
    background: #05141f;
    margin-top: 18px;
}

/* ---------- Accordion shell ---------- */

.gzp-accordion {
    background: white;
    border: 1px solid #E3E6ED;
    border-radius: 6px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ---------- Item ---------- */

.gzp-item {
    background: #FFFFFF;
    border: 1px solid #E3E6ED;
    border-radius: 6px;
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.gzp-item:hover {
    border-color: #CBD2E0;
}

.gzp-item.is-open {
    border-color: #071f41;
    box-shadow: 0 6px 20px rgba(20, 33, 61, 0.08);
}

.gzp-item-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    padding: 20px 22px;
}

.gzp-item-arrow {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #071f41;
    transition: transform 0.3s ease;
}

.gzp-item.is-open .gzp-item-arrow {
    transform: rotate(180deg);
}

@media (prefers-reduced-motion: reduce) {
    .gzp-item-arrow {
        transition: none;
    }
}

.gzp-item-number {
    font-size: 13px;
    font-weight: 700;
    color: #071f41;
    border: 1px solid #071f41;
    border-radius: 6px;
    padding: 5px 8px;
    letter-spacing: 0.02em;
    flex-shrink: 0;
}

.gzp-item.is-open .gzp-item-number {
    background: #071f41;
    color: #FFFFFF;
}

.gzp-item-label {
    flex: 1;
    font-size: 16px;
    font-weight: 700;
    color: #000E26;
    line-height: 1.4;
}

/* ---------- Panel ---------- */

.gzp-item-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.gzp-item-panel-inner {
    padding-bottom: 22px;
    border-top: 1px solid #E3E6ED;
    margin: 0 22px;
}

.gzp-item-panel-inner p {
    padding-top: 16px;
    font-size: 16px;
    font-weight: normal;
    color: #05141f;
    margin: 0 !important;
}

.gzp-item-panel-inner h3 {
    margin-top: 10px;
    font-size: 21px !important;
}

.gzp-item-panel-inner ul {
    margin-top: 10px;
}

.gzp-item-panel-inner tbody,
.gzp-item-panel-inner tr,
.gzp-item-panel-inner th,
.gzp-item-panel-inner td {
    border: 1px solid;
}

/* ---------- Responsive ---------- */

@media (max-width: 767px) {
    .gzp-page-title {
        font-size: 25px;
    }

    .gzp-item-trigger {
        padding: 16px 16px;
        gap: 12px;
    }

    .gzp-item-label {
        font-size: 15px;
    }

    .gzp-item-panel-inner {
        margin: 0 16px;
    }

    .gzp-page {
        padding-top: 0px;
    }

    .gzp-page-header {
        margin-bottom: 20px;
        margin-top: 20px;
    }

    .gzp-item-panel-inner p {
        font-size: 14px;
    }

    .gzp-item-panel-inner h3 {
        font-size: 18px !important;
    }

    .gzp-item-label {
        font-size: 14px;
    }
}

@media (min-width: 768px) and (max-width: 1366px) {
    .gzp-page-header {
        margin-bottom: 25px;
    }

    .gzp-page-title {
        font-size: 28px;
    }

    .gzp-page {
        padding-top: 0; !important;
    }

    .gzp-page-header {
        margin-top: 100px;
    }
}

/* ---------- Accessibility ---------- */

.gzp-item-trigger:focus-visible {
    outline: 2px solid #094394;
    outline-offset: -2px;
}

@media (prefers-reduced-motion: reduce) {
    .gzp-item-panel,
    .gzp-item {
        transition: none;
    }
}

@media (max-width: 767px) {

    .gzp-page-header {
        margin-top: 80px;
    }

}