/* Global Dark Theme */
body {
    background: #0f0f0f;
    color: #fff;
    font-family: Arial, sans-serif;
}

/* Page Wrapper */
.page-area {
    padding: 100px 0;
    background-image: url('../img/bg/donation_bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.page-container {
    background-color: rgba(20, 20, 20, 0.9);
    border-radius: 10px;
    padding: 40px;
    border: 1px solid #ff0000;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.1);
}

/* Headings */
.page-header {
    text-align: center;
    margin-bottom: 40px;
}

.page-header .sub-title {
    color: #ff0000;
    font-size: 18px;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.page-header h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #fff;
}

.page-header p {
    color: #ccc;
}

/* Content Styling */
.page-content {
    color: #ccc;
    line-height: 1.8;
    font-size: 16px;
}

.page-content h3 {
    color: #fff;
    margin-top: 20px;
    margin-bottom: 10px;
}

.page-content a {
    color: #ff0000;
    text-decoration: underline;
}

/* Back Button */
.back-btn {
    display: inline-block;
    margin-top: 25px;
    background: transparent;
    color: #ff0000;
    border: 1px solid #ff0000;
    padding: 10px 20px;
    border-radius: 5px;
    transition: 0.3s;
    text-decoration: none !important;
    /* removes underline */
}

.back-btn:hover {
    background: #ff0000;
    color: #fff;
    text-decoration: none;
    /* ensures no underline on hover */
}


/* Responsive */
@media (max-width: 767px) {
    .page-area {
        padding: 60px 15px;
    }

    .page-container {
        padding: 25px;
    }

    .page-header h2 {
        font-size: 28px;
    }
}