
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f5f5f5;
  color: #222;
  overflow-x: hidden;
}
header {
  background: #222;
  color: #fff;
  padding: 1em;
  position: relative;
}
.logo {
  color: #fff;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
}
.menu-toggle {
  font-size: 1.5em;
  cursor: pointer;
  float: right;
}
.sidebar {
  height: 100%;
  width: 0;
  position: fixed;
  top: 0;
  right: 0;
  background: #333;
  overflow-x: hidden;
  transition: 0.3s;
  padding-top: 60px;
  z-index: 1000;
}
.sidebar a {
  display: block;
  padding: 12px 20px;
  text-decoration: none;
  color: #fff;
}
.sidebar a:hover {
  background: #444;
}
.sidebar .closebtn {
  position: absolute;
  top: 10px;
  left: 15px;
  font-size: 2em;
  text-decoration: none;
  color: #fff;
}
main {
  padding: 2em;
  min-height: 70vh;
  text-align: center;
}
.contact-section {
  margin-top: 2em;
}
.contact-form {
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1em;
}
.contact-form button {
  background: #222;
  color: #fff;
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.contact-form button:hover {
  background: #444;
}
.site-footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 1em;
}

.donate-hero a {
  display: inline-block;
  background: #FFD700;
  color: #000;
  width: 200px;           
  height: 60px;           
  line-height: 60px;      
  text-align: center;     
  border-radius: 0;       
  font-size: 1.2em;
  font-weight: bold;
  text-decoration: none;

  /* Neon Glow Effect */
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.8), 
              0 0 30px rgba(255, 215, 0, 0.6), 
              0 0 45px rgba(255, 215, 0, 0.4);

  transition: transform 0.2s, background 0.3s, box-shadow 0.3s;
}

.donate-hero a:hover {
  background: #ffc107;
  transform: translateY(-3px);

  /* Stronger neon glow on hover */
  box-shadow: 0 0 20px rgba(255, 215, 0, 1), 
              0 0 40px rgba(255, 215, 0, 0.9), 
              0 0 60px rgba(255, 215, 0, 0.8);
}
/* Hide the Google Translate top banner */
.goog-te-banner-frame.skiptranslate,
.goog-te-gadget-icon {
  display: none !important;
}

body {
  top: 0px !important;
}

/* Remove space Google Translate sometimes adds */
.goog-te-banner-frame {
  display: none !important;
}
