.company-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.company-info__logo {
    max-width: 150px;
    height: auto;
}

.company-info__content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.company-info__section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.company-info__section-title {
    color: #6b7280;
    font-size: 1.25rem;
    font-weight: bold;
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: normal;
    margin-bottom: 0;
}

.company-info__section-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.company-info__item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.company-info__item-icon {
    width: 1.25rem;
    height: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0080ea;
    font-size: 1.25rem;
}

.company-info__item-icon--default {
    color: #0080ea;
}

.company-info__item-text {
    color: #6b7280;
    font-weight: normal;
    font-family: Inter, Helvetica Neue, Arial, sans-serif;
    line-height: 1.25;
    flex: 1;
}

.company-info__item-text--primary {
    color: #0080ea;
    font-weight: 500;
    font-family: 'Plus Jakarta Display', sans-serif;
}

.company-info__item-text--link {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.2s ease;
}

.company-info__item-text--link:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.company-info__cta {
    #start_free_buttons,
    .buttons {
        justify-content: flex-start;
    }
}

.company-info__cta .buttons.blue .trial {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.875rem 2rem 1rem 2rem;
    background-color: #0080ea;
    color: white;
    font-size: 1rem;
    font-weight: bold;
    font-family: 'Plus Jakarta Display', sans-serif;
    line-height: 1.25;
    border-radius: 0.25rem;
    text-decoration: none;
    width: 12rem;
    transition: background-color 0.2s ease;
}

.company-info__cta .buttons.blue .trial:hover {
    background-color: #0284c7;
}
