header {
    background: linear-gradient(to right, rgba(72, 87, 127, 0.8)); /* Gradient background with transparency */
    color: #fff; /* Text color */
    padding: 20px; /* Add padding for spacing */
    text-align: center; /* Center-align the text */
    font-size: 24px; /* Increase font size */
    font-weight: bold; /* Use bold font */
  }  

body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    background-color: #f2f2f2; /* Neutral background color */
    color: #333; /* Dark text color */
    background-image: url('background-img.avif'); /* Replace 'background.jpg' with the path to your image file */
    background-size: cover; /* Ensure the background image covers the entire viewport */
    background-position: center; /* Center the background image */
    background-repeat: no-repeat; /* Prevent the background image from repeating */
  }
  
  .content {
    flex: 1;
  }
  
  .price-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive grid */
    gap: 20px;
    padding: 20px; /* Add padding around the grid */
  }
  
  .service {
    background-color: #fff; /* White background color for service boxes */
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Add shadow for depth */
  }

  .service:hover {
    transform: translateY(-5px);
  }
  
  .service h2 {
    margin-bottom: 15px;
    font-size: 20px;
    color: #333; /* Dark text color */
  }
  
  .service ul {
    list-style-type: none;
    padding: 0;
  }
  
  .service li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #666; /* Medium gray text color */
    display: flex; /* Use flexbox for layout */
    justify-content: space-between; /* Space items evenly */
  }
  
  .service li:last-child {
    margin-bottom: 0;
  }
  
  .service li span.price {
    font-weight: bold; /* Make the prices bold */
    color: #6e3667; /* Use a contrasting color for the prices */
    font-size: 18px; /* Increase the font size */
  }
  
  footer {
    background: linear-gradient(to right, rgba(72, 87, 127, 0), rgba(110, 54, 103, 0)); /* Transparent gradient background */
    color: #fff; /* White text color */
    padding: 20px; /* Add some padding for spacing */
    text-align: center; /* Center-align the text */
  }
  
  footer p {
    margin: 10px 0; /* Add some margin for spacing between paragraphs */
  }
  
  footer a {
    color: #fff; /* White color for the link */
    text-decoration: none; /* Remove underline */
  }

  header, footer {
    color: #333; /* Medium gray text color */
  }
  