section {
  background-color: var(--color-white);
  color: var(--color-black);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 2rem;
}

.container-header-titles {
  height: 65%;
}

.container-header-titles h1 {
  font-weight: var(--font-bold);
  text-wrap: balance;
}

@media (min-width: 992px) {
  .container-header-titles h1 {
    text-wrap: nowrap;
  }
}

.container-header-titles p {
  font-size: var(--font-size);
  width: 80%;
}

.container-logo-cbm {
  width: 100%;
  height: 35%;
}

.container-logo-cbm img {
  width: auto;
  height: 60%;
}

.pacs-header-images {
  padding: 1rem;
}

@media (min-width: 992px) {
  .pacs-header-images {
    padding: 2rem;
  }
}

.pacs-header-images img {
  width: 100%;
  height: auto;
  object-fit: contain;
  margin: 0;
  padding: 0;
}

@media (min-width: 992px) {
  .pacs-header-images img {
    width: auto;
    height: 100%;
  }
}

.pacs-header-letters {
  padding-bottom: 2.5%;
}

.pacs-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 992px) {
  .pacs-cards-grid {
    grid-template-columns: 1fr 1fr;
    column-gap: 4rem;
    row-gap: 2rem;
  }
}

.pacs-cards-grid .big-card {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: flex-start;
  border-radius: var(--border-radius-big);
  background: var(--color-less-light-grey);
  padding: 1.25rem 1rem;
  height: auto;
}

.pacs-cards-grid .card-header {
  margin-bottom: 1rem;
  justify-content: center;
  align-items: center;
}

.pacs-cards-grid .card-header h2 {
  margin-bottom: 1rem;
  justify-content: center;
  align-items: center;
}

.pacs-cards-grid .card-text {
  text-align: justify;
  padding: 0 5%;
  margin-top: 0.5rem;
}

.about-us-cards-text-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0;
  width: 80%;
  height: 100%;
  margin-bottom: 0.5rem;
}

@media (min-width: 576px) {
  .about-us-cards-text-right {
    margin-right: auto;
    width: 60%;
    margin-bottom: 0;
  }
}

.about-us-cards-text-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0;
  width: 80%;
  height: 100%;
  margin-bottom: 0.5rem;
}

@media (min-width: 576px) {
  .about-us-cards-text-left {
    margin-left: auto;
    width: 60%;
    margin-bottom: 0;
  }
}

.feature-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  justify-self: flex-end;
  border-radius: var(--border-radius-medium);
  background: var(--color-light);
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
  font-size: var(--font-size-small);
  width: 80%;
  padding: 0.8rem 0.6rem;
  text-decoration: none;
  color: inherit;
  margin-bottom: 0.5rem;
}

@media (min-width: 576px) {
  .feature-card {
    width: 30%;
    margin-bottom: 0;
  }
}

.feature-card-title {
  margin-bottom: 1rem;
}

.feature-card h5 {
  font-weight: var(--font-bold);
}

.feature-card svg {
  width: var(--icon-size-big);
  height: var(--icon-size-big);
  color: var(--icon-color);
  flex-shrink: 0;
  margin-bottom: 0.8rem;
  transition: color 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card-center:hover svg {
  color: var(--color-primary-orange);
}

.container-about-us-demo {
  height: auto;
  margin-right: 0.75rem;
}

.container-img-demo {
  width: 100%;
  border-radius: var(--border-radius-small);
  overflow: hidden;
}

.container-img-demo img {
  width: auto;
  max-height: 300px;
  object-fit: contain;
}

.last-cta a {
  color: var(--color-primary-orange);
  transition: color 0.2s ease;
  text-decoration: underline;
}

.last-cta a:hover {
  color: var(--color-link-orange);
}
