.so-responsive-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1390px;
  margin: 0 auto;
  border: 2px solid #2a4d69;
  background-color: #f0f4f8;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  font-family: Arial, sans-serif;
  color: #333;
}

.so-responsive-image {
  width: 200px;
  height: auto;
  max-width: 100%;
  flex-shrink: 0;
  margin-right: 20px;
}

.so-responsive-text {
  flex: 1 1 300px;
  min-width: 0;
  margin: 0;
  text-align: left;
  line-height: 1.4;
  font-size: 16px;
}

/* Mobile: stack image above text */
@media (max-width: 768px) {
  .so-responsive-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .so-responsive-image {
    margin: 0 0 15px;
  }

  .so-responsive-text {
    text-align: left;
  }
}
