body {
    font-family: 'Montserrat', sans-serif;
   width:414px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin: 0;
    
}

.header {
    display: flex; 
    align-items: center; 
    justify-content: center;
    width: 360px; 
    padding: 10px; 
font-weight: 700;
    font-size:20px;
    margin-left:10px;
   
}

.header p {
    margin-left: 20px; 
}

.back-button {   
color: black;;
    margin-left: 20px
}

#searchBox {
    padding: 10px;
    width: 280px;
    border: none;
    border-radius: 20px;
    font-size: 16px;
    box-shadow: none;
    outline: none;
    background-color: #f0f0f0;
    margin: 20px;
  }
  
  #searchBox::placeholder {
    color: #aaa;
  }

  .search-input {
    font-family: 'Font Awesome 5 Free',  'Montserrat';
    font-weight: 700;
    font-size: 13px;
  }

  .text-row {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    width: 300px;
}

.text-row p {
    margin: 0;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent; 
}

.text-row .foryou {
    margin-right:20px;
}


.text-row .highlighted {
    margin-left:20px; 
    border-bottom-width: 4px;
    border-bottom-color: #FFBF00; 
    
}

.image-container2 {
    display: flex;
    justify-content: space-around; 
    align-items: flex-start; 
    margin-top: 20px;
    margin-left:10px;
     margin-right:10px;

}
  
  .column {
    flex: 1; 
    display: flex;
    flex-direction: column;
    align-items: center; 
  }
  
  .image-with-text2 {
    position: relative;
    text-align: center;
    padding: 10px;
    margin-top: -10px;
  }
  
  .image-overlay2 {
    position: relative;
    overflow: hidden;
    display: inline-block;
  }
  
  .image-overlay2::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.9) 60%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
  }
  
  .image-overlay2 img {
    width: 200px; 
    height: 280px; 
    z-index: 2; /* Ensure it's above the pseudo-element */
  }
  
  .overlay-text2 {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    z-index: 3; /* Place it above the pseudo-element */
  }
  
  .overlay-text2 p {
    margin: 0;
    padding: 10px;
    color: black; 
    font-weight:normal;
  }
  
  .learn-more-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: black;
  border-radius: 20px;
  background-color:#FFDEAD ;
  font-size: 10px;
  width: 80px;
  height: 15px;
  margin-bottom: 12px;
}

.footer-nav{
    width: 370px;
    font-size: 30px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-top: 5px solid #FFAA33; 
    margin-top: 20px;
    padding: 15px;
    

  }
  .footer-nav a {
    text-decoration: none;
    color: grey; 
   
  }