* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

body {
    background-color: #f5f7fb;
    min-height: 100vh;
    font-family: 'Heebo',sans-serif;
    overflow-x: hidden;
    direction: rtl
}

.main-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 337px;
    max-width: 100%;
    flex: 1;
    margin: 0 auto;
    padding-bottom: 60px
}

.hero-banner {
    width: 375px;
    min-height: 365px;
    background: #1E3C98;
    border-bottom-right-radius: 24px;
    border-bottom-left-radius: 24px;
    padding: 32px 20px 40px 20px;
    box-shadow: 0 4px 6px 0 #0000001A,0 2px 4px 0 #0000001A;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    max-width: 100%;
    margin-bottom: 40px;
    width: 100%;
}

.hero-banner__header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
    max-width: 335px;
}

.hero-banner__title {
    font-weight: 500;
    font-size: 30px;
    line-height: 36px;
    letter-spacing: 0;
    text-align: center;
    color: #FFF;
    margin: 20px
}

.hero-banner__subtitle {
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
    letter-spacing: 0;
    text-align: center;
    color: rgba(255,255,255,.9);
    max-width: 335px;
    margin-top: -8px;
    margin-bottom: 20px
}

.card {
    width: 375px;
    min-height: 365px;
    background: #1E3C98;
    border-bottom-right-radius: 24px;
    border-bottom-left-radius: 24px;
    padding: 32px 20px 40px 20px;
    box-shadow: 0 4px 6px 0 #0000001A,0 2px 4px 0 #0000001A;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    max-width: 100%;
    margin-bottom: 40px
}

.card-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px
}

.account-btn {
    width: 40px;
    height: 40px;
    border-radius: 9999px;
    background: rgba(255,255,255,.15);
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease
}

.account-btn:hover {
    background: rgba(255,255,255,.25)
}

.account-btn img {
    width: 15px;
    height: 15px
}

.logo-container {
    width: 57px;
    height: 57px;
    border-radius: 50%;
    background: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden
}

.logo-container img {
    width: 100%;
    height: auto
}

.card-title {
    font-weight: 500;
    font-size: 30px;
    line-height: 36px;
    letter-spacing: 0;
    text-align: center;
    color: #FFF;
    margin: 20px
}

.card-subtitle {
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
    letter-spacing: 0;
    text-align: center;
    color: rgba(255,255,255,.9);
    max-width: 335px;
    margin-top: -8px;
    margin-bottom: 20px
}

.join-text {
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
    color: #FFF;
    text-align: center;
    margin-top: -4px
}

.button-group {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 7px;
    margin: 12px;
    max-width: 335px;
}

.btn-blue {
    width: 164px;
    height: 34px;
    padding: 8px 12px;
    gap: 6px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.2);
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: #FFF;
    font-family: 'Heebo',sans-serif;
    font-size: 14px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease,border-color 0.2s ease
}

.btn-blue:hover {
    background: rgba(255,255,255,.18);
    border-color: rgba(255,255,255,.35)
}

.btn-orange {
    height: 40px;
    padding: 10px 16px;
    gap: 8px;
    border-radius: 12px;
    border: none;
    background: #F27121;
    color: #FFF;
    font-family: 'Heebo',sans-serif;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease,transform 0.1s ease;
    width: 100%;
    max-width: 335px;
    margin-top: 10px;
    margin: 0 auto;
}

.btn-orange:hover {
    background: #e06011
}

.btn-orange:active {
    transform: scale(.99)
}

.btn-icon {
    display: inline-flex;
    align-items: center
}

.accordion-container {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.accordion-item {
    background: #FFF;
    border: 1px solid #F9FAFB;
    border-radius: 16px;
    box-shadow: 0 4px 6px 0 #0000000D,0 2px 4px 0 #00000008;
    overflow: hidden;
    transition: all 0.25s ease
}

.accordion-item[open] {
    height: auto
}

.accordion-header {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    cursor: pointer;
    user-select: none
}

.accordion-header::-webkit-details-marker {
    display: none
}

.header-right {
    display: flex;
    align-items: center;
    gap: 12px
}

.icon-wrapper {
    width: 32px;
    height: 32px;
    background: #E6F0F7;
    border: 1px solid #E5E7EB;
    border-radius: 9999px;
    display: flex;
    justify-content: center;
    align-items: center
}


.icon-blue {
    background: #E6F0F7;
    border: 1px solid #E6F0F7
}

.icon-red {
    background: #FEF2F2;
    border: 1px solid #FEF2F2
}

.icon-green {
    background: #F0FDF4;
    border: 1px solid #F0FDF4
}

.accordion-title {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: right;
    color: #1E293B
}

.arrow-wrapper {
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center
}

.arrow-icon {
    width: 14px;
    height: 14px;
    transition: transform 0.25s cubic-bezier(.4,0,.2,1);
    /*transform: rotate(0deg)*/
    transform: rotate(-180deg)
}

.accordion-item[open] .arrow-icon {
    transform: rotate(0deg);
    /*transform: rotate(-180deg)*/
}

.accordion-content {
    padding: 0 16px 20px 16px
}

.content-list {
    list-style-position: inside;
    padding-top: 12px
}

.content-list li {
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
    text-align: right;
    color: #000;
    margin-bottom: 6px
}

.content-list li:last-child {
    margin-bottom: 0
}

.content-list,
.content-text {
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
    text-align: right;
    color: #334155;
    padding-top: 12px
}

.category-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0 auto
}

.category-header {
    width: 100%;
    padding: 4px 0;
    display: flex;
    justify-content: flex-start
}

.category-title {
    font-family: 'Heebo',sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0;
    text-align: right;
    color: #005B9A;
    margin: 0
}

.accordion-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%
}

.digital-services-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0 auto
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2,162px);
    gap: 13px;
    width: 100%
}

.service-card {
    width: 162px;
    height: 102px;
    padding: 16px;
    background: #FFF;
    border: 1px solid #F3F4F6;
    border-radius: 16px;
    box-shadow: 0 1px 2px 0 rgba(0,0,0,.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    transition: transform 0.2s ease,box-shadow 0.2s ease;
    cursor: pointer
}

.service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px 0 rgba(0,0,0,.05)
}

.service-icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 9999px;
    border: 1px solid #E5E7EB;
    display: flex;
    justify-content: center;
    align-items: center
}

.service-icon-circle.bg-green {
    background: #F0FDF4;
    border: 1px solid #F0FDF4
}

.service-icon-circle.bg-blue {
    background: #EFF6FF;
    border: 1px solid #EFF6FF
}

.service-label {
    font-family: 'Heebo',sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0;
    text-align: center;
    color: #1E293B;
    white-space: nowrap
}

.contact-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0 auto;
    width: 100%
}

.contact-wrapper {
    width: 100%;
    background: #FFF;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px 0 rgba(0,0,0,.03)
}

.contact-item {
    width: 100%;
    height: 72px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    background: #FFF;
    transition: background-color 0.2s ease;
    cursor: pointer;
    flex-direction: row-reverse
}

.contact-item:not(:last-child) {
    border-bottom: 1px solid #F1F5F9
}

.contact-item:hover {
    background-color: #F8FAFC
}

.item-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px
}

.item-text-group {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: right;
    padding-right: 12px
}

.item-title {
    font-family: 'Heebo',sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #1E293B
}

.item-subtitle {
    font-family: 'Heebo',sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: #64748B
}

.item-icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 9999px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0
}

.item-icon-circle.bg-blue {
    background: #EFF6FF;
    border: 1px solid #EFF6FF
}

.item-icon-circle.bg-green {
    background: #F0FDF4;
    border: 1px solid #F0FDF4
}

.color-blue-dark {
    color: #0369A1
}

.city-footer {
    width: 100%;
    margin-top: auto;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background: transparent;
    pointer-events: none;
    width: 399px;
    height: 110px;
    margin: 0 auto;
    max-width: 100%;
    margin-bottom: 120px;
    width: 100%
}

.footer-skyline-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain
}

.fixed-action-bar {
    position: fixed;
    bottom: 0;
    left: 50%;
    width: 100%;
    max-width: 100%;
    height: 120px;
    padding: 16px;
    background: #1E3C98;
    box-shadow: 0 -4px 6px 0 rgba(0,0,0,.13);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 9;
    box-sizing: border-box;
    left: 0;
    right: 0;
    margin: 0 auto;
    flex-flow: column;
    justify-content: space-around
}

.bar-promo-text {
    font-family: 'Heebo',sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
    text-align: center;
    color: #FFF;
    margin: 0;
    white-space: nowrap
}

.bar-buttons-group {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 7px;
    max-width: 335px;
}

.bar-btn {
    width: 168px;
    height: 39px;
    padding: 10px 12px;
    gap: 6px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-sizing: border-box;
    box-shadow: 0 1px 2px 0 rgba(0,0,0,.13);
    transition: transform 0.1s ease,opacity 0.2s ease;
    margin: 0
}

.bar-btn:active {
    transform: scale(.98)
}

.btn-white {
    background: #FFF;
    border: 1px solid #FFF
}

.btn-white .bar-btn-text {
    font-family: 'Heebo',sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 16px;
    color: #005B9A
}

.btn-orange {
    background: #F27121;
    border: none
}

.btn-orange:hover {
    background: #e06011
}

.btn-orange .bar-btn-text {
    font-family: 'Heebo',sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 16px;
    color: #FFF
}

.bar-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center
}


.main-accordions{
  display: flex;
  flex-flow: column;
  gap: 20px;
}

.main-contact {
    display: flex;
    flex-flow: column;
    gap: 20px;
}