.procom-square-logo-wrapper .ds-column.logo-containers {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}
@media (min-width: 768px) {
  .procom-square-logo-wrapper .ds-column.text-content {
    padding-right: 25px;
  }
}
@media (max-width: 768px) {
  .procom-square-logo-wrapper .ds-column.logo-containers {
    display: flex;
    align-items: center;
  }
  .procom-square-logo-section .logo-container {
    width: auto !important;
    padding: 30px;
  }
  .procom-square-logo-section .container-inner .download-btn {
    width: 100%;
  }
}
.procom-square-logo-section .logo-container {
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  margin-bottom: 10px;
}
.procom-square-logo-section.white-square .logo-container {
  background: #005cb9;
  border: 3px solid #ffffff;
}
.procom-square-logo-section.black-square .logo-container {
  background: #ffffff;
  border: 3px solid #19315b;
}
.procom-square-logo-section.color-square .logo-container {
  background: #ffffff;
  border: 3px solid #19315b;
}
.procom-square-logo-section .container-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 300px;
  width: 100%;
}
.procom-square-logo-section .logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90%;
  aspect-ratio: 1;
  padding: 25px;
}
.procom-square-logo-section .logo {
  font-size: 120px;
  font-weight: 900;
  color: #000;
  font-family: Arial, sans-serif;
  line-height: 0.8;
  font-style: italic;
}
.procom-square-logo-section .logo svg {
  width: 100%;
}
.procom-square-logo-section .download-btn {
  width: 90%;
  padding: 14px 20px;
  background-color: #0066cc;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-align: center;
  text-decoration: none;
  display: block;
  transition:
    transform var(--dst--base-transition),
    border var(--dst--base-transition),
    background var(--dst--base-transition);
}
.procom-square-logo-section .download-btn:hover {
  background-color: var(--dst--btn-primary-bg-hover);
  color: var(--dst--btn-primary-color-hover);
  border-color: var(--dst--btn-primary-border-color-hover);
  text-decoration: none;
}
.procom-square-logo-section .download-btn:active {
  background-color: #004080;
}