.section-1 {
    margin-bottom: 10px !important;
}

.ein-services-demo,
.edit-company-services-demo,
.annual-reports-demo {
    width: 100%;
    max-width: 1130px;
    margin: 0 auto;
    padding: 0 10px;
    min-height: calc(100dvh - 85px);
}
@media(max-width: 993px) {
  .ein-services-demo,
  .edit-company-services-demo,
  .annual-reports-demo {
    min-height: calc(100dvh - 75px);
  }
}
@media(max-width: 768px) {
  .ein-services-demo,
  .edit-company-services-demo,
  .annual-reports-demo {
    min-height: calc(100dvh - 59px);
  }
}

.ein-services-demo-banner,
.edit-company-services-demo-banner {
    background-color: #EAF3FF;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    margin-bottom: 10px;
}

.ein-services-demo-banner > span,
.edit-company-services-demo-banner > span {
    font-weight: 700;
}

.ein-services-demo-banner > a,
.edit-company-services-demo-banner > a {
    color: #4684F7;
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.popup-wrapper {
  background: #fff;
  border-radius: 19px;
  max-width: 388px;
  width: 100%;
  padding: 24px 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  animation: popup-fade 0.3s ease-out;
  text-align: center;
}

.popup-title {
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 600;
  color: #333;
}

.popup-description {
  font-size: 15px;
  margin-bottom: 20px;
  color: #555;
}

.popup-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.btn-back,
.btn-next {
  padding: 10px 18px !important;
  border-radius: 8px;
  border: none;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-back {
  background: #e5e5e5;
  color: #333;
}

.btn-back:hover {
  background: #d4d4d4;
}

.btn-next {
  background: #4f46e5;
  color: #fff;
}

.btn-next:hover {
  background: #4338ca;
}

@keyframes popup-fade {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.contact-person-sent-modal .popup-title,
.contact-person-sent-modal .popup-description{
    display: none;
}

.contact-person-sent-modal svg {
  color: rgba(25, 135, 84);
}

.contact-person-sent-modal .popup-ok-button {
  margin: 0 auto;
}
