.contact-section {
    display: flex;
    align-items: center;
    bottom: 20px;
    right: 20px;
    padding: 10px;
  }

  .contact-image {
    width: 150px;
    margin-right: 20px;
  }

  .contact-text {
    text-align: center;
    font-size: 25px;
    color: black;
  }

  .contact-button {
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    display: block;
    background-color: #FBF7ED;
    border-radius: 10px;
    box-shadow: 0px 3px 7px 5px rgba(128, 128, 128, 0.3);
  }

  .contact-button a{
    color: black;
  }

  .contact-button a:hover{
    color: #F2CF7F;
  }

  @media (max-width: 768px) {
    .contact-image {
        width: 90px;
        margin-right: 5px;
    }
    .contact-text {
        font-size: 18px; 
    }
    .contact-button {
        padding: 6px 12px;
    }
}