/* General Section Styling */
.recipes-section, .news-section {
    width: 75%;
    margin: 0 auto;
    padding: 40px 0;
  }
  
  .recipes-section h2, .news-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #34495e;
  }
  
  /* Card Container */
  .card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  /* Card Styling */
  .card {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s, box-shadow 0.2s;
  }
  
  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  }
  
  .card img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
  }
  
  .card h3 {
    font-size: 1.4rem;
    margin: 10px 0;
  }
  
  .card p {
    font-size: 1rem;
    color: #2c3e50;
  }
  
  .card a {
    display: inline-block;
    margin-top: 10px;
    text-decoration: none;
    color: #007bff;
    font-weight: bold;
  }
  
  .card a:hover {
    text-decoration: underline;
  }
  