/* Author: Abdul Rafay 
  CSS FILE: This file will css the contant of every package in the services page
*/

.green-button {
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    background-color: #4CAF50;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 10px;
  }
.green-button:hover {
    background-color: #45a049;
  }
.button-container {
    margin-top: 20px;
    display: flex;
    justify-content: center;
  }
.button-container .green-button:last-child {
    margin-right: 0;
  }
.button-container .green-button {
    width: 100%;
  }