/* Donation Modal Styles */
    .donation-modal {
      display: none;
      position: fixed;
      z-index: 2000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.6);
      animation: fadeIn 0.3s ease-in-out;
    }

    .donation-modal-content {
      background-color: white;
      margin: 10% auto;
      padding: 30px;
      border-radius: 15px;
      width: 90%;
      max-width: 450px;
      text-align: center;
      position: relative;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
      animation: slideIn 0.4s ease-out;
    }

    .donation-close {
      color: #aaa;
      float: right;
      font-size: 28px;
      font-weight: bold;
      position: absolute;
      right: 15px;
      top: 10px;
      cursor: pointer;
      transition: color 0.3s ease;
    }

    .donation-close:hover,
    .donation-close:focus {
      color: #024162;
      text-decoration: none;
    }

    .donation-header {
      color: #024162;
      font-size: 20px;
      font-weight: bold;
      margin: 0 0 20px 0;
      text-align: center;
    }

    .donation-logo-container {
      margin: 20px 0;
    }

    .donation-logo {
      max-width: 200px;
      height: auto;
      cursor: pointer;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border-radius: 8px;
    }

    .donation-logo:hover {
      transform: scale(1.05);
      box-shadow: 0 4px 16px rgba(2, 65, 98, 0.2);
    }

    .donation-message {
      color: #024162;
      font-size: 16px;
      margin: 20px 0 10px 0;
      line-height: 1.4;
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    @keyframes slideIn {
      from {
        transform: translateY(-50px);
        opacity: 0;
      }
      to {
        transform: translateY(0);
        opacity: 1;
      }
    }

    /* Responsive adjustments for donation modal */
    @media (max-width: 600px) {
      .donation-modal-content {
        margin: 20% auto;
        width: 95%;
        padding: 20px;
      }
      
      .donation-header {
        font-size: 18px;
      }
      
      .donation-logo {
        max-width: 150px;
      }
      
      .donation-message {
        font-size: 14px;
      }
    }

    /* Modal Styles for Gallery */
    .modal {
      display: none;
      position: fixed;
      z-index: 1000;
      padding-top: 60px;
      left: 0; 
      top: 0; 
      width: 100%; 
      height: 100%;
      overflow: auto;
      background-color: rgba(0,0,0,0.9);
    }

    .modal-content {
      display: block;
      margin: auto;
      max-width: 80%;
      max-height: 80vh;
    }

    .close {
      position: absolute;
      top: 30px; 
      right: 40px;
      color: #fff;
      font-size: 40px;
      font-weight: bold;
      cursor: pointer;
    }

    .prev, .next {
      cursor: pointer;
      position: absolute;
      top: 50%;
      width: auto;
      padding: 16px;
      color: #fff;
      font-weight: bold;
      font-size: 40px;
      user-select: none;
      transition: 0.3s;
    }

    .prev { left: 20px; }
    .next { right: 20px; }
    .prev:hover, .next:hover { color: #024162; }

    /* Gallery Styles for Home Page */
    .gallery-section {
      text-align: center;
      margin: 40px 0;
      padding: 20px;
    }

    .gallery-section h2 {
      color: #024162;
      margin-bottom: 30px;
      font-size: 1.8em;
    }

    .gallery-row {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin: 30px 0;
    }

    .gallery-thumb {
      width: 300px;
      height: 200px;
      object-fit: cover;
      cursor: pointer;
      border: 2px solid #024162;
      border-radius: 6px;
      transition: transform 0.2s;
    }

    .gallery-thumb:hover {
      transform: scale(1.05);
    }

    /* Block Quote Style */
    .block-quote {
      font-size: larger;
      align-content: center;
      color: black;
      margin: 2rem auto;
      padding: 1rem 1.5rem;
      background: #37d0ff; 
      border-radius: 20px;
      display: inline-block; /* Center the block quote and hug the text*/
      box-shadow: 0 4px 16px rgba(10,10,10,10.10); /* Drop shadow */
      text-align: center; /* Ensure text is center-aligned within the quote */
      max-width: fit-content; /* Ensure it only takes up the width it needs */
    }

    /* Section2 Style */
    .section2 {
      font-size: larger;
      padding: 2rem;
      margin: 0 0 0;
      align-content: center;
      text-align: center;
    }


    /* Contact Form Styles */
    .contact-form {
      margin: 0px auto 50px;
      width: 50%;
      padding: 24px;
      color: #003e5a;
      background: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }

    .contact-form label {
      color: black;
      text-align: left;
      line-height: normal;
      margin-bottom: 4px;
      font-weight: 500;
      height: auto;
    }

    .contact-form input,
    .contact-form textarea {
      width: 100%;
      padding: 8px 10px;
      border: 1px solid #ccc;
      border-radius: 4px;
      font-size: 1rem;
      box-sizing: border-box;
    }

    .contact-form button[type="submit"] {
      background: #003e5a;
      color: #fff;
      border: none;
      border-radius: 6px;
      padding: 12px 0;
      font-size: 1.1rem;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.2s, box-shadow 0.2s;
      box-shadow: 0 2px 8px rgba(44,95,45,0.08);
      margin-top: 10px;
      width: 100%;
    }

    .contact-form button[type="submit"]:hover,
    .contact-form button[type="submit"]:focus {
      background: rgb(214, 112, 28);
      color: #fff;
      box-shadow: 0 4px 16px rgba(224,122,95,0.15);
      outline: none;
    }
