 .case-study-container {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(180deg, #040A27 0%, #010A27 12%, #EC004F 75%, #FFFFFF 100%);
    border-radius: 40px;
}
  .case-study {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    position: relative;
    justify-content: center;
    align-items: center;
}

.case-study-background {
 padding: 64px 64px;
 height: 100%;
 display: flex;
 flex-direction: column;
 position: relative;
 justify-content: center;
 align-items: center;
 margin-top: 0px;
 margin-bottom: 40px;
}

.button-group {
 flex-direction: row;
 position: relative;
 justify-content: center;
 align-items: center;
 text-align: center;
 gap: 32px;
}

.case-study-image {
  width: 60%;
  height: auto;
  margin-top: -100px;
}

.cs-title {
  position: relative;
  text-align: center;
  color: #FFF;
  font-size: 32px;
  font-family: 'Tomorrow';
  font-weight: 600;
  padding-bottom: 12px;
}

.cs-desc {
    position: relative; 
    font-family: 'TT Commons';
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5;
    text-align: center;
    color: #FFF;
    padding-bottom: 32px;
}

.cs-button {
  font-family: 'arial bold';
  font-style: normal;
  font-weight: 400;
  text-align: center;
  color: #FFFFFF;
  font-size: 16px;
  box-sizing: border-box;
  border: 2px solid #fff;
  border-radius: 60px;
  padding: 10px 20px;
  background: transparent;
  transition: transform 0.3s ease-in-out;
  margin: 8px;
}

.cs-button:hover {
  transform: translateY(-5px);
}

.cs-button-secondary {
  font-family: 'arial bold';
  font-style: normal;
  font-weight: 400;
  text-align: center;
  color: #ffffff;!important;
  font-size: 16px;
  box-sizing: border-box;
  border-radius: 100px;
  padding: 10px 20px;
  border: 1px solid #fff;
  background: rgba(255,255,255, 0.2);
  transition: transform 0.3s ease-in-out;
  margin: 8px;
}

.cs-button-secondary:hover {
  transform: translateY(-5px);
}
 
  @media only screen and (max-width: 480px) {
    .cs-title {
      font-size: 24px; /* Adjust font size for smaller screens */
      line-height: 140%
    }
    .cs-desc {
      font-size: 16px; /* Adjust font size for smaller screens */
    }
  }

@media (max-width: 900px) {
   .case-study-container {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #E6E9F1;
  }
  
.case-study-background {
  padding: 32px 44px;
}
  
.case-study-image {
  width: 76%;
  }
  
  
.case-study {
  width: 92%;
  height: auto;
}
  
   .cs-title {
      font-size: 24px; /* Adjust font size for smaller screens */
      line-height: 140%;
    }
    .cs-desc {
      font-size: 16px; /* Adjust font size for smaller screens */
      padding-bottom: 24px;
    }
}

.white-text {
  color: white;
}