/* Add this CSS in a separate file named styles.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    background-color: #fff;
  }
  
h2 {
  font-size: 2.5rem;
}

  header.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://cdn.pixabay.com/photo/2023/06/22/04/19/rye-8080482_1280.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 100px 20px;
  }
  
  header h1 {
    font-size: 3rem;
  }
  
  header p {
    margin-top: 10px;
    font-size: 1.2rem;
  }
  
  .cta-button {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 30px;
    background-color: #FFC107;
    color: #333;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
  }
  
  section {
    padding: 5px 20px;
    text-align: center;
  }
  
  h2 {
    color: #388E3C;
  }
  
  .product-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }
  
  .product-card {
    background: #f0f0f0;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .product-card img {
    width: 100%;
    border-radius: 8px;
  }
  
  .product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.2);
  }
  
  .contact-container {
    height: 500px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    margin-top: 20px;
  }
  
  .procurement {
    text-align: center;
    padding: 0px 10%;
  }
  
  .procurement h2 {
    margin-bottom: 0px;
  }
  
  .procurement p {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    color: #555;
  }

  .procurement-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  }  

  address {
    background-color: #f1f1f1;
    padding: 20px;
    border-radius: 15px;
    width: 40%;

    font-size: 1.2rem;
    line-height: 1.5;
  }
  
  #map {
    width: 50%;
    height: 500px;
    background-color: #ccc;
  }

  @media screen and (max-width: 768px) {
    .contact-container {
      flex-direction: column;
  }    

    #map {
      width: 100%;
      height: 300px;
    }
    address {
      width: 100%;
    }
  }