body {
    margin: 0;
    font-family: Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

header {
    background: #1c1c1c;
    color: white;
}

header h1 {
    margin: 0;
    padding: 15px 0 5px;
}

nav {
    padding-bottom: 15px;
}

nav a {
    color: #ffd700;
    text-decoration: none;
    margin-right: 15px;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

main {
    flex: 1;
    padding: 30px 20px;
}

footer {
    background: #1c1c1c;
    color: #ccc;
    text-align: center;
    padding: 15px 10px;
    font-size: 14px;
}

footer a {
    color: #ffd700;
    text-decoration: none;
}
.social-links i {
    font-size: 20px;
	gap: 18px;  
}
.donate-section {
  text-align: center;
  padding: 30px 15px;
}

.donate-section h2 {
  font-size: 28px;
  margin-bottom: 5px;
}

.scan-text {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 500;
}

.qr-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.qr-box {
  text-align: center;
}

.qr-box img {
  width: 180px;
  height: auto;
  border: 1px solid #ddd;
  padding: 10px;
  background: #fff;
}

.qr-box span {
  display: block;
  margin-top: 10px;
  font-weight: 600;
}
.map-section {
  text-align: center;
  padding: 30px 15px;
}

.map-section h2 {
  margin-bottom: 15px;
  font-size: 26px;
}
.zeffy-wrapper {
  margin-top: 30px;              /* space on top */
  padding: 0 40px;               /* space on left & right */
}

.zeffy-container {
  max-width: 1100px;             /* center + control width */
  margin: 0 auto;
}

.zeffy-embed {
  position: relative;
  overflow: hidden;
  padding-top: 650px;            /* height control */
}

.zeffy-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.donation-section {
  max-width: 1200px;
  margin: 60px auto;
  text-align: center;
  padding: 0 20px;
}

.donation-section h2 {
  margin-bottom: 30px;
  font-size: 28px;
}

.donation-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 columns */
  gap: 20px;
}

.donation-card {
  background: #faf7f2;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.donor-name {
  display: block;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.donation-amount {
  font-size: 20px;
  font-weight: bold;
  color: #b22222; /* devotional red */
}

/* Responsive */
@media (max-width: 900px) {
  .donation-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .donation-grid {
    grid-template-columns: 1fr;
  }
}

.expense-section {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
}

.section-title {
  text-align: center;
  margin-bottom: 25px;
  font-size: 28px;
}

.table-wrapper {
  overflow-x: auto;
}

.expense-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  border-radius: 10px;
  overflow: hidden;
}

.expense-table th,
.expense-table td {
  padding: 14px 18px;
  text-align: left;
}

.expense-table thead {
  background: #f3f3f3;
}

.expense-table th {
  font-weight: 600;
}

.expense-table tbody tr {
  border-bottom: 1px solid #e0e0e0;
}

.expense-table tbody tr:last-child {
  border-bottom: none;
}

.expense-table tbody tr:hover {
  background: #fafafa;
}

.amount {
  text-align: right;
  font-weight: 600;
  color: #8b0000; /* devotional red */
}

.expense-item {
  display: flex;
  gap: 10px;
  padding: 6px 0;
  align-items: center;
}

.expense-item button {
  margin-left: 10px;
  padding: 3px 8px;
  cursor: pointer;
}