.header-banner {
    width: 100%;
    height: auto;
    display: block;
}

/* CSS for the footer banner */
.footer-banner {
    width: 100%;
    height: auto;
    display: block;
}

/* Optional: Add some padding or margin to separate the header and footer from the rest of the content */
header {
    padding-bottom: 12px;
}

footer {
    margin-top: 32px !important;
    padding-top: 10px;
}

  :root {
            --primary-color: #2c5aa0;
            --secondary-color: #28a745;
            --accent-color: #ffc107;
            --text-primary: #2c3e50;
            --text-secondary: #6c757d;
            --border-color: #dee2e6;
            --bg-light: #f8f9fa;
            --success-color: #28a745;
            --error-color: #dc3545;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: linear-gradient(135deg, #667eea 0%, #e1e4e5 100%); */
            min-height: 100vh;
            padding: 20px 0;
        }

        .main-container {
            max-width: 700px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .donation-card {
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            overflow: hidden;
            animation: fadeIn 0.6s ease-in;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .card-header {
            background: linear-gradient(135deg, var(--primary-color) 0%, #1e3a8a 100%);
            color: white;
            padding: 40px 30px;
            text-align: center;
        }

        .card-header h1 {
            font-size: 2rem;
            font-weight: 700;
            margin: 0 0 10px 0;
        }

        .card-header p {
            font-size: 1.1rem;
            opacity: 0.95;
            margin: 0;
        }

        .card-body {
            padding: 40px 30px;
        }

        .impact-section {
            background: var(--bg-light);
            border-radius: 15px;
            padding: 25px;
            margin-bottom: 30px;
            border-left: 5px solid var(--secondary-color);
        }

        .impact-section h3 {
            color: var(--primary-color);
            font-size: 1.3rem;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .impact-section p {
            color: var(--text-primary);
            line-height: 1.6;
            margin: 0;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-label {
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 8px;
            display: block;
        }

        .form-control {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid var(--border-color);
            border-radius: 10px;
            font-size: 1rem;
            transition: all 0.3s ease;
            box-sizing: border-box;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
        }

        .donation-amount {
            position: relative;
        }

        .donation-amount input {
            padding-left: 45px;
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--primary-color);
        }

        .currency-symbol {
            position: absolute;
            left: 18px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--primary-color);
        }

        .fee-info {
            background: #fff3cd;
            border: 1px solid #ffc107;
            border-radius: 10px;
            padding: 15px;
            margin-top: 15px;
        }

        .fee-info p {
            margin: 0;
            color: #856404;
            font-size: 0.9rem;
        }

        .gdpr-section {
            background: #e3f2fd;
            border: 2px solid #2196f3;
            border-radius: 12px;
            padding: 20px;
            margin: 30px 0;
        }

        .gdpr-section h4 {
            color: var(--primary-color);
            font-size: 1.1rem;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .gdpr-section ul {
            margin: 12px 0;
            padding-left: 25px;
            color: var(--text-primary);
            line-height: 1.8;
        }

        .gdpr-section ul li {
            margin-bottom: 8px;
        }

        .checkbox-wrapper {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-top: 15px;
        }

        .checkbox-wrapper input[type="checkbox"] {
            width: 20px;
            height: 20px;
            margin-top: 2px;
            cursor: pointer;
            flex-shrink: 0;
        }

        .checkbox-wrapper label {
            font-size: 0.95rem;
            color: var(--text-primary);
            cursor: pointer;
            line-height: 1.5;
        }

        .submit-btn {
            width: 100%;
            padding: 18px;
            background: linear-gradient(135deg, var(--secondary-color) 0%, #20c997 100%);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 1.2rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
        }

        .submit-btn:disabled {
            background: #6c757d;
            cursor: not-allowed;
            transform: none;
        }

        .security-note {
            text-align: center;
            margin-top: 20px;
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        .security-note p {
            margin: 8px 0;
        }

        @media (max-width: 768px) {
            .card-header {
                padding: 30px 20px;
            }

            .card-header h1 {
                font-size: 1.5rem;
            }

            .card-body {
                padding: 30px 20px;
            }

            .donation-amount input {
                font-size: 1.1rem;
            }
        }
		
		
		.card-header {
    padding: 2rem 1.5rem;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.logo-section {
    flex-shrink: 0;
    margin-left: auto;
}

.university-logo {
    width: 80px;
    height: auto;
    object-fit: contain;
}

.title-section {
    flex: 1;
    min-width: 250px;
}

.title-section h1 {
    margin: 0 0 0.5rem 0;
    font-size: 1.75rem;
    font-weight: 700;    
    line-height: 1.3;
}

.title-section p {
    margin: 0;
    font-size: 1rem;
      font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .logo-section {
        margin-left: 0;
    }
    
    .university-logo {
        width: 70px;
    }
    
    .title-section h1 {
        font-size: 1.5rem;
    }
    
    .title-section p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .university-logo {
        width: 60px;
    }
    
    .title-section h1 {
        font-size: 1.25rem;
    }
    
    .card-header {
        padding: 1.5rem 1rem;
    }
}