body main {
  border: none ; /* Remove the black border */
  padding: 20px; /* Keep padding */
  background: #ffffff; /* White background */
  box-shadow: none ;
}

/* Additional styles for tool boxes */
.tool-container {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping for responsiveness */
    gap: 20px; /* Space between boxes */
    margin: 20px 0;
  }
  .tool-card {
    flex: 1 1 calc(33.333% - 20px); /* 3 boxes in a row with space */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    padding: 15px;
    border: 1px solid #000; /* Border for the boxes */
    border-radius: 5px; /* Slightly rounded corners */
    background-color: #fff; /* White background */
    text-align: center; /* Center text */
  }
  .tool-card h3 {
    margin: 0 0 10px; /* Margin for the title */
    font-size: 18px; /* Font size for the title */
  }
  .tool-card p {
    margin: 0; /* No margin for the description */
    font-size: 14px; /* Font size for the description */
  }
  .tool-link {
    display: inline-block; /* Make the link a block for better click area */
    margin-top: 10px; /* Space above the link */
    padding: 10px 15px; /* Padding for the button */
    background-color: #000; /* Black background for the button */
    color: #fff; /* White text */
    text-decoration: none; /* Remove underline */
    border-radius: 5px; /* Rounded corners for the button */
  }
  .tool-link:hover {
    background-color: #E60023; /* Darker background on hover */
  }
  /* Responsive Design */
  @media (max-width: 768px) {
    .tool-card {
      flex: 1 1 calc(50% - 20px); /* 2 boxes in a row on smaller screens */
    }
  }
  @media (max-width: 480px) {
    .tool-card {
      flex: 1 1 100%; /* 1 box in a row on very small screens */
    }
  }