.notification div {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 1rem 0;
  border-radius: 0;
  text-align: center;
  display: block;
}

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%;
}

.col-feature-card {
  display: flex;
  justify-content: center;
  margin-bottom: 0.5rem;
}

@media (min-width: 992px) {
  .col-feature-card {
    margin-bottom: 0;
  }
}

.feature-card {
  border-radius: var(--border-radius-medium);
  background: var(--color-light);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-size: var(--font-size-small);
  width: 90%;
  height: 100%;
  padding: 0.25rem 0.6rem;
}

.feature-card div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-bottom: 0.75rem;
}

@media (min-width: 992px) {
  .feature-card div {
    flex-direction: row;
    text-align: center;
    margin-bottom: 1rem;
  }
}

.feature-card h3 {
  font-weight: var(--font-bold);
}

@media (min-width: 992px) {
  .feature-card h3 {
    margin-right: 1rem;
  }
}

.feature-card svg,
.contact-card svg {
  width: var(--icon-size);
  height: var(--icon-size);
  color: var(--icon-color-secondary);
  flex-shrink: 0;
  margin-bottom: 0.5rem;
}

.feature-card p {
  text-wrap: wrap;
  text-align: center;
}

.feature-card a {
  color: var(--color-black);
  text-decoration: none;
}

.feature-card a:hover {
  color: var(--color-primary-orange);
}

.feature-card:hover {
  transform: translateY(-5px);
}

.contact-card {
  background: var(--color-white);
  border-radius: 0;
  box-shadow: none;
  padding: 0.5rem;
  margin-bottom: 0.5rem;
}

@media (min-width: 992px) {
  .contact-card {
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    height: 100%;
    transition: transform 0.2s ease;
  }

  .contact-card:hover {
    transform: translateY(-5px);
  }
}

.contact-card-title {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: start;
  margin-bottom: 1rem;
}

.contact-card-title h4 {
  margin-right: 1rem;
}

.contact-card h3 {
  font-weight: var(--font-bold);
  margin-bottom: 1.5rem;
}

.contact-form .form-control {
  border-radius: 8px;
  padding: 0.75rem 1rem;
}

.contact-form button {
  background-color: var(--color-primary-orange);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: bold;
  color: var(--color-white);
  transition: background-color 0.2s ease;
}

@media (min-width: 992px) {
  .contact-form button {
    padding: 0.75rem 1rem;
  }
}

.contact-form button:hover {
  background-color: var(--color-light-orange);
  color: var(--color-white);
}

#contactForm .contactForm-input-item {
  margin-bottom: 1rem;
}

.captcha-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.recaptcha-scale-wrapper {
  width: 100%;
  max-width: 340px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform-origin: left top;
  min-height: 60px;
}

.recaptcha-scale-wrapper .g-recaptcha {
  display: inline-block;
}

@media (min-width: 992px) {
  .map-container {
    height: 50%;
  }
}

#map-iframe {
  border: none;
  border-radius: 12px;
  width: 100%;
  height: 200px;
}

@media (min-width: 576px) {
  #map-iframe {
    width: 80%;
    height: 250px;
  }
}

@media (min-width: 768px) {
  #map-iframe {
    width: 70%;
  }
}

@media (min-width: 992px) {
  #map-iframe {
    height: 350px;
    width: 100%;
  }
}
