
/* Style the container */
.container {
    max-width: 600px; /* Adjust the width as needed */
    margin: 0 auto;
    padding: 20px;
  }
  
  /* Style the card */
  .card {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
  }
  
  /* Style the card header */
  .card-header {
    background-color: #0e3a20; /* Change the header background color as needed */
    color: #fff; /* Text color for the header */
    text-align: center;
    padding: 10px;
    border-radius: 10px 10px 0 0;
  }
  
  /* Style the card title */
  .card-title {
    font-size: 1.2rem; /* Adjust the font size as needed */
    color: #0e3a20; /* Text color for the title */
    margin-bottom: 10px;
  }
  
  /* Style the card text */
  .card-text {
    font-size: 1rem; /* Adjust the font size as needed */
    line-height: 1.5;
    padding: 15px;
  }
  
  /* Style the "Read more" button */
  .btn-primary {
    background-color: #0e3a20; /* Button background color */
    color: #fff; /* Text color for the button */
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    text-decoration: none;
    display: inline-block;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  /* Hover effect for the button */
  .btn-primary:hover {
    background-color: #0056b3; /* Adjust the hover background color as needed */
  }
  