/* Container */
.donate-main{
    margin: 0px 40px 0px 40px;
}

.donate-main-test {
    margin: 0;
    padding: 0;
    background-size: cover;
    min-height: 100vh;
  }

.donate-container {
    min-height: 100vh;
}

/* Hero Section */
.donate-hero {
    height: 700px;
    overflow: hidden;
    position: relative;
}

.donate-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Main Content */
.donate-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.donate-mission {
    width: 75% !important;
    margin-bottom: 3rem;
    padding-top: 2rem;
  }

.donate-intro {
    font-size: 1.125rem;
    color: #000000;
    margin-bottom: 2rem;
}

.donate-goals {
    list-style: none;
    margin-bottom: 2rem;
}

.donate-goals li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.donate-dot {
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    margin: 0.5rem 0.75rem 0 0;
    flex-shrink: 0;
}

.donate-goals strong {
    font-weight: 600;
}

.donate-tax-note {
    font-size: 0.875rem;
    color: #666;
    font-style: italic;
}

/* Grid Layout */
.donate-grid {
    display: grid;
    gap: 3rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .donate-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Image Container */
.donate-image-container {
    height: 800px;
    overflow: hidden;
    padding-bottom: 2rem;
}

.donate-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Donation Options */
.donate-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.donate-button2 {
    display: block;
    background: #0A4B6C;
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    text-align: center;
    font-weight: 600;
    transition: background-color 0.2s;
}

.donate-button2:hover {
    background: #0A3B5C;
}

/* Accordion */
.donate-accordion details {
    border-bottom: 1px solid #e2e8f0;
}

.donate-accordion summary {
    padding: 1rem 0;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.donate-accordion summary::after {
    content: '+';
    font-size: 1.25rem;
}

.donate-accordion details[open] summary::after {
    content: '−';
}

.donate-content {
    padding: 0 0 1rem;
}

.donate-accordion address {
    margin-top: 0.5rem;
    font-style: normal;
}

.donate-accordion ul {
    list-style-position: inside;
    margin: 1rem 0;
}

.donate-accordion a {
    color: #2563eb;
    text-decoration: none;
}

.donate-accordion a:hover {
    text-decoration: underline;
}

/* Spacing and Typography Adjustments */
.donate-content > p + p {
    margin-top: 1rem;
}

.donate-content > *:first-child {
    margin-top: 0;
}

.donate-content > *:last-child {
    margin-bottom: 0;
}

.donate-wrapper {
    display: flex;
    flex-direction: row;
    /* align-items: flex-start; */
    align-items: stretch; /* <- this is the change */

    justify-content: space-between;
    gap: 2rem;
    width: 100%;
    margin-top: 2rem;
    flex-wrap: nowrap; /* prevent stacking */
  }
  
  .donate-button-wrapper {
    width: 25%;
    max-width: 200px; /* Prevent it from growing too wide */
    display: flex;
    justify-content: center;
    align-items: center;
    /* height: 100%;    */
  }
  
  .donate-img-now {
    max-width: 100%;
    height: auto;
    cursor: pointer;
  }

  @media (max-width: 768px) {
  .donate-mission-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .donate-mission,
  .donate-button-wrapper {
    width: 100%;
  }

  .donate-button-wrapper {
    margin-top: 2rem;
  }
}

.donate-main-content {
width: 100%;
padding: 2rem 0;
}

.donate-goals li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    line-height: 1.6;
  }

  li {
    display: flex;
    align-items: flex-start;
  }
  
  .donate-dot {
    width: 10px;
    height: 10px;
    background-color: red;
    border-radius: 50%;
    margin-right: 10px;
    margin-top: 7px; /* vertically align dot */
    flex-shrink: 0;
  }
  
  .donate-text {
    white-space: normal;
    word-break: break-word;
    font-size: 1rem;
    line-height: 1.4;
  }