.company-container {
    max-width: 900px;
    margin: 100px auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.company-container h2 {
    text-align: center;
    color: rgb(117, 56, 122);
}

.company-box {
    flex-direction: column;
    background-color: #e0e0e0;
    padding: 20px;
    margin-top: 20px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.company-box img {
    margin-bottom: 20px;
    background-color: #e0e0e0;
    padding: 10px;
    border-radius: 5px;
}

.company-box::before {
    content: "";
    background: var(--company_scylla_icon_circle) no-repeat center;
    background-size: contain;
    background-blend-mode: multiply;
    opacity: 0.1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.company-text {
    flex: 1;
    font-size: 16px;
    color: #333;
    position: relative;
    z-index: 1;
}

.company-image {
  width: 150px;
  height: auto;
  margin-left: 0px;
  mix-blend-mode: multiply;
}

.custom-list {
    list-style: none;
    padding-left: 0;
}

.custom-list li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.custom-list li::before {
    content: var(--company_scylla_icon_circle_small);
    width: 1em;
    height: 1em;
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 10px;
}

.highlight-box {
    background-color: rgba(117, 56, 122, 0.1);
    border-left: 5px solid rgb(117, 56, 122);
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
}