/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
  }
  
  .btn-donate {
    background-color: #ffc107;
    padding: 5px 10px;
    border-radius: 5px;
    color: #fff;
  }
  
h3{
    text-decoration: underline;
}
  /* Places Section */
  .places-section {
    text-align: center;
    padding: 30px 20px;
    margin: 5%;
  }
  
  .places-section h1 {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
  }
  
  .places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
  }
  
  /* Place Card */
  a{
    text-decoration: none;
  }

  .place-card {
    background-color: #fff8e1; /* Light golden background */
    border: 1px solid #ffd700; /* Gold border */
    border-radius: 12px; /* Rounded corners */
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    align-items: center;
  }
  
  /* Circle Inside Card */
  .place-card::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background-color: #ffd700; /* Gold */
    border-radius: 50%; /* Circle */
    z-index: 1;
    opacity: 0.2; /* Subtle background */
  }
  
  .place-card h2 {
    font-size: 18px;
    color: #333;
    position: relative;
    z-index: 2; /* Above the circle */
    margin-bottom: 10px;
  }
  
  .place-card p {
    font-size: 14px;
    color: #666;
    position: relative;
    z-index: 2; /* Above the circle */
    margin: 5px 0;
  }
  
  /* Footer */
  footer {
    background-color: #222;
    color: #fff;
    text-align: center;
    padding: 20px 10px;
    margin-top: 50px;
  }
  
  .footer {
    background-color: #f8f8f8;
    padding: 20px;
    text-align: center;
    border-top: 1px solid #ddd;
  }
  
  .footer .contact-section {
    margin-bottom: 15px;
  }
  
  .footer .footer-bottom {
    font-size: 0.9rem;
    color: #666;
  }
  