.resource-marketsection-container{
  border-radius: 30px;
  background: linear-gradient(to right, #f68d2e, #da291c); 
  text-align: center;
  padding: 25px;
  box-sizing: border-box;
}

.resource-content-section{
  display: flex;
  justify-content: center;
}
.resource-marketsection-info-container h4{
  color: white;
  font-size: 48px;
  padding-top: 50px;
  margin: 5px;
  font-weight: bold;
}

.resource-marketsection-image-container{

}

form{
 color: white;
 padding: 20px;
 margin: 20px;
 height: 100%;
 transform: translateY(20%);
}

.resource-marketsection-form-container .hs-form input[type="text"],
.resource-marketsection-form-container .hs-form input[type="email"],
.resource-marketsection-form-container .hs-form textarea,
.resource-marketsection-form-container .hs-form select {
  width: 150px;
  padding: 8px 12px;  /* reduce to fit nicely */
  margin: 10px 10px 10px 0;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  line-height: 1.4;
  box-sizing: border-box;
  height: auto; /* let padding control the height */
  appearance: none; /* removes default dropdown styles (optional) */
}

.hs-form label {
  font-weight: 600 !important;
  margin-bottom: 2px !important;
  display: block !important;
  text-align: left !important;
}

.hs-form input[type="submit"] {
  background: black;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.resource-marketsection-image-container{
  height: 400px;
  width: 300px;
  overflow: hidden;
  position: relative;
}

.resource-marketsection-image-container img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}


@media (max-width: 990px){
  .resource-content-section{
    flex-direction: column;
}