html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.page-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.give-page {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

footer {
    margin-top: auto; /* Push the footer to the bottom if content is short */
}

.give-section {
    height: calc(100vh - 100px); /* Adjust height to exclude footer */
    padding: 20px;
    width: 100%;
    background-image: url('/images/give.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Heading Styling */
.give-heading {
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

/* Description Styling */
.give-description {
    font-size: 1.4rem;
    color: #f1f1f1;
    margin-bottom: 30px;
    line-height: 1.8;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

/* Button Styling */
.give-btn {
    background-color: #ff6600;
    color: #fff;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.give-btn:hover {
    background-color: #e65a00;
    transform: scale(1.1); /* Slight hover effect */
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .give-section {
        padding: 60px 15px;
    }

    .give-heading {
        font-size: 2.2rem;
    }

    .give-description {
        font-size: 1.1rem;
    }

    .give-btn {
        font-size: 1rem;
        padding: 12px 30px;
    }
}