body {
  font-family: 'DM Sans', sans-serif;
  background: #fefef3;
  margin: 0;
  padding: 0;
}
.resources-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 1rem 3rem 0rem 3rem;
  gap: 0rem;
}

.resources-section {
  width: 45%;
  margin: 1rem 0;
  padding: 0rem 1rem 1rem 1rem;
  border: 0.5px solid #8e5dda;
  border-radius: 30px;
  background-color: #fefef3;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.5s ease, box-shadow 0.3s ease;
 }

 .resources-section:hover {
  transform: scale(1.02); /* slightly zoom in */
  border: 0.5px solid #5e2ea4;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.10); /* optional shadow */
  z-index: 1;
}

.resources-section.no-hover:hover {
  transform: none;
  box-shadow: none;
}
 
 .resources-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  align-items: flex-start;
 }
 
 
 .resources-text {
  flex: 2;
  min-width: 300px;
  margin-left: 1rem;
 }
 
 
 .resources-image-container {
  flex: 1.5;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 30px;
 }
 
 
 .resources-title {
  font-size: 2.1rem;
  color: #444444;
  font-weight: bold;
  font-family: 'DM Sans', sans-serif;
  margin-bottom: 1rem;
 }
 
 .resources-subtitle {
  font-family: 'DM Sans', sans-serif;
  margin-top: 0rem;
  margin-bottom: -0.5rem;
  font-size: 1.5rem;
  color: #444444;
  font-weight: bold;
 }
 
 .resources-detailed {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  margin: 0;
  padding-left: 1rem;
  background-color: #fefef3;
  color: #555B6E;
 }
 
 .resources-logo {
  width: 100px;
  height: auto;
  margin-left: 10px; 
  margin-top: 1rem;
 }

 .survey-button{
  font-family: 'DM Sans', sans-serif;
  background-color: #ffd46c;
  color: #fefef3;
  border:none;
  border-radius: 30px;
  width: 35%;
  padding: 0.7rem 0rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 1.1rem;
  cursor: pointer;
 }

 .survey-button:hover {
  background-color: #fbbd05;
 }
 
 .icon-yellow {
  color: #f8e187;
 }

 .icon-green{
  color: #9ac54f
 }

 .icon-blue{
  color: #41c3db
 }

 .icon-lightPurple{
  color: #b98cf6
 }

 .icon-purple{
  color: #8e5dda
 }

 .icon-darkPurple{
  color: #5e2ea4 
 }


 .icon-style{
  font-size: 1.1rem;
}
 
@media (max-width: 768px) {
  .resources-container {
    padding: 0rem 1rem 0rem 1rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }

  .resources-section {
    width: 100%;
    margin: 1rem 0;
  }

  .resources-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .resources-text {
    margin-left: 0;
    width: 100%;
  }

  .resources-title {
    font-size: 1.6rem;
  }

  .resources-subtitle {
    font-size: 1.2rem;
  }

  .resources-detailed {
    font-size: 1rem;
  }

  .survey-button{
    width: 70%;
  }

  .icon-style {
    font-size: 1rem;
  }
}
