body {
    background-image: none; /* Adjust path if needed */
    background-size: cover;         /* or 'contain', depending on your design */
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;   /* Optional: keeps the background still on scroll */
  }

.container {
    margin: 0 auto;
    padding: 2rem 0rem;
    height: 100%;
}

.content {
    display: flex;
    gap: 2rem;
    height: 100%;
    padding: 3rem 0rem 3rem 0rem;
}

.column {
    flex: 1;
    width: 33.333%;
}

.left-column, .right-column {
    display: flex;
    align-items: center;
}

.center-column {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: justify;
    padding: 6rem 3rem 1rem 3rem;;
}

.preservation-image {
    width: 100%;
    height: auto;
}

.logo-container {
    text-align: center;
    margin-bottom: 2rem;
    max-width: 35%;
}

.logo {
    max-width: 100%;
    height: auto;
}

.info-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.announcement {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.highlight {
    color: #005B8C;
    font-weight: bold;
}

.info-text p {
    font-size: 1rem;
    line-height: 1.8;
}

.cta-text {
    font-weight: bold;
    color: #005B8C;
    font-size: 1.1rem;
    text-align: center;
    margin: 2rem 0;
}

.button-container {
    text-align: center;
    margin-top: auto;
}

.donate-button {
    display: inline-block;
    transition: transform 0.2s ease;
}

.donate-button:hover {
    transform: scale(1.05);
}

.button-logo {
    max-width: 100%;
    height: auto;
}

@media (max-width: 968px) {
    .content {
        flex-direction: column;
    }

    .column {
        width: 100%;
    }

    .left-column, .right-column {
        order: 2;
    }

    .center-column {
        order: 1;
    }

    .preservation-image {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 1rem;
    }

    .preservation-image {
        width: 100%;
    }

    .button-logo {
        max-width: 100%;
    }
}