.banner {
    width: 100%;
    height: 46.875rem;
}
.container {
    box-sizing: border-box;
    background: #F9F9F9;
    padding: 5rem 18.75rem;
    display: flex;
    flex-direction: column;
    gap: 2.625rem;
}
.country-policies {
    box-sizing: border-box;
    padding: 2.625rem;
    width: 100%;
   background: #FFF;
    border-radius: 1.25rem;
    display: flex;
    gap: 2.625rem;
}
.policies-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}
.policies-nav {
    width: 19.5rem;
    height: 15.75rem;
}
.country-policies-title {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-weight: bold;
    font-size: 1.5rem;
    color: #333333;
}
.policies-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.policies-icon {
    width: 2.25rem;
    height: 2.25rem;
}
.policies-item {
    font-size: 1.125rem;
    color: #333333;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition-duration: 300ms;
    font-weight: bold;
    cursor: pointer;
}
.policies-item:hover {
    color: #006FFF;
    transform: translateX(0.625rem);
    transition-duration: 300ms;

}
.item-title {
    max-width: 43.75rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
